Metadata-Version: 2.1
Name: totob12
Version: 0.2.2
Summary: TotoB12 library
Home-page: https://github.com/TotoB12/totob12-lib#readme/
Author: Antonin
Author-email: antonin@beliard.io
License: MIT
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: numpy

# totob12-lib

i've got no clue what i'm doing

### Installation
```
pip install totob12
```

### Get started
How to multiply one number by another with this lib:

```Python
from totob12 import Multiplication

# Instantiate a Multiplication object
multiplication = Multiplication(2)

# Call the multiply method
result = multiplication.multiply(5)
```
