Metadata-Version: 2.1
Name: generallibrary
Version: 1.8.3
Summary: Changed from EGG to TAR.
Home-page: https://github.com/Mandera/generallibrary
Author: Rickard "Mandera" Abraham
License: UNKNOWN
Platform: UNKNOWN
Classifier: Operating System :: Microsoft :: Windows :: Windows 7
Classifier: Programming Language :: Python :: 3.8
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
Requires-Dist: wheel

# Package: generallibrary
Random useful code made by me, categorized into modules to be imported seperately.

## Installation
```
pip install generallibrary
```

## Usage example
```python
from generallibrary.values import clamp
print(clamp(-3.2, -1, 1))
# >>> -1
```

