├── .flake8 ├── .gitignore ├── ASF ├── __init__.py ├── models.py └── utils.py ├── LICENSE ├── README.md ├── requirements.txt └── setup.py /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 120 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deluxghost/ASF_IPC/HEAD/.gitignore -------------------------------------------------------------------------------- /ASF/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.2.0' 2 | 3 | from .models import IPC # noqa: F401 4 | -------------------------------------------------------------------------------- /ASF/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deluxghost/ASF_IPC/HEAD/ASF/models.py -------------------------------------------------------------------------------- /ASF/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deluxghost/ASF_IPC/HEAD/ASF/utils.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deluxghost/ASF_IPC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deluxghost/ASF_IPC/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | aiohttp 2 | cchardet 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deluxghost/ASF_IPC/HEAD/setup.py --------------------------------------------------------------------------------