gitextract_ckd9lwhg/ ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs/ │ ├── Makefile │ ├── bot.rst │ ├── chats.rst │ ├── conf.py │ ├── console.rst │ ├── faq.rst │ ├── index.rst │ ├── itchat.rst │ ├── logging_with_wechat.rst │ ├── make.bat │ ├── messages.rst │ ├── response_error.rst │ └── utils.rst ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests/ │ ├── __init__.py │ ├── api/ │ │ ├── __init__.py │ │ ├── chats/ │ │ │ ├── __init__.py │ │ │ ├── test_chat.py │ │ │ ├── test_chats.py │ │ │ ├── test_friend.py │ │ │ ├── test_group.py │ │ │ ├── test_groups.py │ │ │ ├── test_member.py │ │ │ ├── test_mp.py │ │ │ └── test_user.py │ │ ├── messages/ │ │ │ ├── __init__.py │ │ │ └── test_message.py │ │ └── test_bot.py │ ├── attachments/ │ │ └── file.txt │ ├── conftest.py │ ├── ext/ │ │ └── __init__.py │ └── utils/ │ └── __init__.py └── wxpy/ ├── __compat__.py ├── __init__.py ├── __main__.py ├── api/ │ ├── __init__.py │ ├── bot.py │ ├── chats/ │ │ ├── __init__.py │ │ ├── chat.py │ │ ├── chats.py │ │ ├── friend.py │ │ ├── group.py │ │ ├── groups.py │ │ ├── member.py │ │ ├── mp.py │ │ └── user.py │ ├── consts.py │ └── messages/ │ ├── __init__.py │ ├── article.py │ ├── message.py │ ├── message_config.py │ ├── messages.py │ ├── registered.py │ └── sent_message.py ├── compatible/ │ ├── __init__.py │ └── utils.py ├── exceptions.py ├── ext/ │ ├── __init__.py │ ├── logging_with_wechat.py │ ├── sync_message_in_groups.py │ ├── talk_bot_utils.py │ ├── tuling.py │ └── xiaoi.py └── utils/ ├── __init__.py ├── base_request.py ├── console.py ├── misc.py ├── puid_map.py └── tools.py