Metadata-Version: 2.1
Name: malib
Version: 0.1.1
Summary: 
Author: Louis Abraham
Author-email: louis.abraham@yahoo.fr
Requires-Python: >=3.8,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Description-Content-Type: text/markdown

# malib

A few utilities that I find useful.


## RateLimiter

```py
# call a function at most 10 times per minute
rl = RateLimiter(max_calls=10, period=60) 
# call .wait() every time before calling the function
rl.wait()
```


## Testing

`pytest`


