├── Exceptions ├── __init__.py └── exceptions.py ├── README.md ├── examples ├── __init__.py ├── login_weixin.py ├── logout_weixin.py └── wechat_windows.py ├── handle ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── handle.cpython-37.pyc │ └── wechat_handle.cpython-37.pyc ├── handle.py └── wechat_handle.py ├── settings.py └── tools ├── __init__.py └── functions.py /Exceptions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzkzdx/WeChatPC/HEAD/Exceptions/__init__.py -------------------------------------------------------------------------------- /Exceptions/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzkzdx/WeChatPC/HEAD/Exceptions/exceptions.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzkzdx/WeChatPC/HEAD/README.md -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzkzdx/WeChatPC/HEAD/examples/__init__.py -------------------------------------------------------------------------------- /examples/login_weixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzkzdx/WeChatPC/HEAD/examples/login_weixin.py -------------------------------------------------------------------------------- /examples/logout_weixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzkzdx/WeChatPC/HEAD/examples/logout_weixin.py -------------------------------------------------------------------------------- /examples/wechat_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzkzdx/WeChatPC/HEAD/examples/wechat_windows.py -------------------------------------------------------------------------------- /handle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzkzdx/WeChatPC/HEAD/handle/__init__.py -------------------------------------------------------------------------------- /handle/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzkzdx/WeChatPC/HEAD/handle/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /handle/__pycache__/handle.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzkzdx/WeChatPC/HEAD/handle/__pycache__/handle.cpython-37.pyc -------------------------------------------------------------------------------- /handle/__pycache__/wechat_handle.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzkzdx/WeChatPC/HEAD/handle/__pycache__/wechat_handle.cpython-37.pyc -------------------------------------------------------------------------------- /handle/handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzkzdx/WeChatPC/HEAD/handle/handle.py -------------------------------------------------------------------------------- /handle/wechat_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzkzdx/WeChatPC/HEAD/handle/wechat_handle.py -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzkzdx/WeChatPC/HEAD/settings.py -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzkzdx/WeChatPC/HEAD/tools/__init__.py -------------------------------------------------------------------------------- /tools/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzkzdx/WeChatPC/HEAD/tools/functions.py --------------------------------------------------------------------------------