├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── mugen ├── __init__.py ├── adapters.py ├── api.py ├── connect.py ├── connection_pool.py ├── cookies.py ├── exceptions.py ├── models.py ├── proxy.py ├── session.py ├── structures.py └── utils.py ├── pyproject.toml ├── setup.py └── tests ├── __init__.py └── tests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterDing/mugen/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterDing/mugen/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterDing/mugen/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterDing/mugen/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterDing/mugen/HEAD/README.md -------------------------------------------------------------------------------- /mugen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterDing/mugen/HEAD/mugen/__init__.py -------------------------------------------------------------------------------- /mugen/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterDing/mugen/HEAD/mugen/adapters.py -------------------------------------------------------------------------------- /mugen/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterDing/mugen/HEAD/mugen/api.py -------------------------------------------------------------------------------- /mugen/connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterDing/mugen/HEAD/mugen/connect.py -------------------------------------------------------------------------------- /mugen/connection_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterDing/mugen/HEAD/mugen/connection_pool.py -------------------------------------------------------------------------------- /mugen/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterDing/mugen/HEAD/mugen/cookies.py -------------------------------------------------------------------------------- /mugen/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterDing/mugen/HEAD/mugen/exceptions.py -------------------------------------------------------------------------------- /mugen/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterDing/mugen/HEAD/mugen/models.py -------------------------------------------------------------------------------- /mugen/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterDing/mugen/HEAD/mugen/proxy.py -------------------------------------------------------------------------------- /mugen/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterDing/mugen/HEAD/mugen/session.py -------------------------------------------------------------------------------- /mugen/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterDing/mugen/HEAD/mugen/structures.py -------------------------------------------------------------------------------- /mugen/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterDing/mugen/HEAD/mugen/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterDing/mugen/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterDing/mugen/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterDing/mugen/HEAD/tests/tests.py --------------------------------------------------------------------------------