├── .gitignore ├── LICENSE.md ├── README.md ├── README.rst ├── README_EN.md ├── docs ├── 1.Start.md ├── 2.Login.md ├── 3.Handler.md ├── 4.Message content.md ├── 5.Reply.md ├── 6.Deploy.md ├── 7.FAQ.md ├── Robot │ ├── Home.md │ ├── Plugin.md │ └── Screenshots.md ├── Tutorial │ └── Tutorial1.md └── index.md ├── itchat ├── __init__.py ├── client.py ├── config.py ├── out.py ├── storage.py └── tools.py ├── requirement.txt ├── run.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaz734913414/ItChat/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaz734913414/ItChat/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaz734913414/ItChat/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaz734913414/ItChat/HEAD/README.rst -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaz734913414/ItChat/HEAD/README_EN.md -------------------------------------------------------------------------------- /docs/1.Start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaz734913414/ItChat/HEAD/docs/1.Start.md -------------------------------------------------------------------------------- /docs/2.Login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaz734913414/ItChat/HEAD/docs/2.Login.md -------------------------------------------------------------------------------- /docs/3.Handler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaz734913414/ItChat/HEAD/docs/3.Handler.md -------------------------------------------------------------------------------- /docs/4.Message content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaz734913414/ItChat/HEAD/docs/4.Message content.md -------------------------------------------------------------------------------- /docs/5.Reply.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaz734913414/ItChat/HEAD/docs/5.Reply.md -------------------------------------------------------------------------------- /docs/6.Deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaz734913414/ItChat/HEAD/docs/6.Deploy.md -------------------------------------------------------------------------------- /docs/7.FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaz734913414/ItChat/HEAD/docs/7.FAQ.md -------------------------------------------------------------------------------- /docs/Robot/Home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaz734913414/ItChat/HEAD/docs/Robot/Home.md -------------------------------------------------------------------------------- /docs/Robot/Plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaz734913414/ItChat/HEAD/docs/Robot/Plugin.md -------------------------------------------------------------------------------- /docs/Robot/Screenshots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaz734913414/ItChat/HEAD/docs/Robot/Screenshots.md -------------------------------------------------------------------------------- /docs/Tutorial/Tutorial1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaz734913414/ItChat/HEAD/docs/Tutorial/Tutorial1.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaz734913414/ItChat/HEAD/docs/index.md -------------------------------------------------------------------------------- /itchat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaz734913414/ItChat/HEAD/itchat/__init__.py -------------------------------------------------------------------------------- /itchat/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaz734913414/ItChat/HEAD/itchat/client.py -------------------------------------------------------------------------------- /itchat/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaz734913414/ItChat/HEAD/itchat/config.py -------------------------------------------------------------------------------- /itchat/out.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaz734913414/ItChat/HEAD/itchat/out.py -------------------------------------------------------------------------------- /itchat/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaz734913414/ItChat/HEAD/itchat/storage.py -------------------------------------------------------------------------------- /itchat/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaz734913414/ItChat/HEAD/itchat/tools.py -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- 1 | 2 | requests==2.9.1 3 | -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaz734913414/ItChat/HEAD/run.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaz734913414/ItChat/HEAD/setup.py --------------------------------------------------------------------------------