├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── cqhttp └── __init__.py ├── cqhttp_helper.py ├── demo.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubotics/python-cqhttp/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubotics/python-cqhttp/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubotics/python-cqhttp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubotics/python-cqhttp/HEAD/README.md -------------------------------------------------------------------------------- /cqhttp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubotics/python-cqhttp/HEAD/cqhttp/__init__.py -------------------------------------------------------------------------------- /cqhttp_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubotics/python-cqhttp/HEAD/cqhttp_helper.py -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubotics/python-cqhttp/HEAD/demo.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubotics/python-cqhttp/HEAD/setup.py --------------------------------------------------------------------------------