├── .gitignore ├── README.md ├── common ├── __init__.py └── func.py ├── font └── DroidSansFallbackFull.ttf ├── helper.py ├── image └── .gitignore ├── info.py ├── logo.py ├── logo └── .gitignore ├── msg.py ├── temp └── .gitignore ├── wechat ├── .gitignore └── wechat.jpg └── wordCloud.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | itchat.pkl 3 | *.log 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z1px/itchat/HEAD/README.md -------------------------------------------------------------------------------- /common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z1px/itchat/HEAD/common/__init__.py -------------------------------------------------------------------------------- /common/func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z1px/itchat/HEAD/common/func.py -------------------------------------------------------------------------------- /font/DroidSansFallbackFull.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z1px/itchat/HEAD/font/DroidSansFallbackFull.ttf -------------------------------------------------------------------------------- /helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z1px/itchat/HEAD/helper.py -------------------------------------------------------------------------------- /image/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z1px/itchat/HEAD/info.py -------------------------------------------------------------------------------- /logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z1px/itchat/HEAD/logo.py -------------------------------------------------------------------------------- /logo/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /msg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z1px/itchat/HEAD/msg.py -------------------------------------------------------------------------------- /temp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /wechat/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !wechat.jpg 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /wechat/wechat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z1px/itchat/HEAD/wechat/wechat.jpg -------------------------------------------------------------------------------- /wordCloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z1px/itchat/HEAD/wordCloud.py --------------------------------------------------------------------------------