Metadata-Version: 2.4
Name: simplefunc
Version: 0.1.0
Summary: Simplifies the name of a few Python functions and attributes (.upper and .lower). print is now say, input is now write, len is now length, .upper() is now .shout(), .lower() is .whisper(), and it made them functions too, shout("text here") and whisper("text here"), thank you for using!
Author-email: Petar <petarshishkov794@gmail.com>
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Simplified Functions

A python package that simplifies the names of common functions and attributes!

## How to use:

```python
from simplefunc import say, write, length, what_is, shout, whisper, LS, WS

say("Hello world!")
