├── .gitignore ├── LICENCE ├── README.md ├── illustration.png ├── setup.py └── tenai ├── __init__.py ├── auths.json └── core.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novitae/Tenai/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novitae/Tenai/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novitae/Tenai/HEAD/README.md -------------------------------------------------------------------------------- /illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novitae/Tenai/HEAD/illustration.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novitae/Tenai/HEAD/setup.py -------------------------------------------------------------------------------- /tenai/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import InstaMutualsChaining -------------------------------------------------------------------------------- /tenai/auths.json: -------------------------------------------------------------------------------- 1 | { 2 | "ssid": "" 3 | } -------------------------------------------------------------------------------- /tenai/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novitae/Tenai/HEAD/tenai/core.py --------------------------------------------------------------------------------