├── .gitignore ├── README.md ├── cli.py ├── config.py ├── qqrobot ├── __init__.py └── core │ ├── __init__.py │ ├── log │ └── QQRobot.log │ ├── qsession.py │ ├── show_qrcode.py │ └── utils.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/QQRobot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/QQRobot/HEAD/README.md -------------------------------------------------------------------------------- /cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/QQRobot/HEAD/cli.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/QQRobot/HEAD/config.py -------------------------------------------------------------------------------- /qqrobot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/QQRobot/HEAD/qqrobot/__init__.py -------------------------------------------------------------------------------- /qqrobot/core/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # coding: utf-8 3 | 4 | """这个包负责所有Web QQ协议解析,接口封装,以及提供基本的命令行界面 5 | """ 6 | 7 | -------------------------------------------------------------------------------- /qqrobot/core/log/QQRobot.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qqrobot/core/qsession.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/QQRobot/HEAD/qqrobot/core/qsession.py -------------------------------------------------------------------------------- /qqrobot/core/show_qrcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/QQRobot/HEAD/qqrobot/core/show_qrcode.py -------------------------------------------------------------------------------- /qqrobot/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/QQRobot/HEAD/qqrobot/core/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ah/QQRobot/HEAD/requirements.txt --------------------------------------------------------------------------------