Metadata-Version: 2.1
Name: aryth
Version: 0.0.6
Summary: numerical & statistics functions
Home-page: https://github.com/hoyeungw/aryth.git
License: MIT
Keywords: aryth,numerical,math,statistics,stat,max,min,bound,list,array,vector,matrix,1d-list,2d-list
Author: Hoyeung Wong
Author-email: hoyeungw@outlook.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: intype (>=0.0.2)
Requires-Dist: texting (>=0.0.2)
Requires-Dist: veho (>=0.0.4)
Project-URL: Repository, https://github.com/hoyeungw/aryth.git
Description-Content-Type: text/markdown

## aryth
##### numerical & statistics functions

### Usage
```python
from aryth.bound_vector import max_by, min_by

cities = [
    'jakarta',
    'bern',
    'san fransisco',
    '',
    'paris',
]
print(max_by(cities, len))
print(min_by(cities, len))
```
