├── .env ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── bot.py ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt ├── src ├── __init__.py ├── plugins │ ├── __init__.py │ ├── chat_history.py │ ├── chat_ui │ │ ├── plugin.go │ │ ├── plugin.py │ │ ├── plugin.ts │ │ └── ui │ │ │ └── index.html │ ├── conv2conv.py │ ├── counter.py │ ├── ding_dong.py │ ├── github_message_forwarder.py │ ├── health_checking.py │ ├── repeater.py │ ├── send_message.py │ ├── uie.py │ └── views │ │ ├── send_message.html │ │ ├── table.jinja2 │ │ └── vue.html ├── schema.py ├── ui_plugin.py └── utils.py ├── start_gateway_docker.sh └── watchtower.py /.env: -------------------------------------------------------------------------------- 1 | token={{your-custom-id}} -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/python-wechaty-template/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/python-wechaty-template/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/python-wechaty-template/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/python-wechaty-template/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/python-wechaty-template/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/python-wechaty-template/HEAD/bot.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/python-wechaty-template/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/python-wechaty-template/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/python-wechaty-template/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/chat_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/python-wechaty-template/HEAD/src/plugins/chat_history.py -------------------------------------------------------------------------------- /src/plugins/chat_ui/plugin.go: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/chat_ui/plugin.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/chat_ui/plugin.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/chat_ui/ui/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/conv2conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/python-wechaty-template/HEAD/src/plugins/conv2conv.py -------------------------------------------------------------------------------- /src/plugins/counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/python-wechaty-template/HEAD/src/plugins/counter.py -------------------------------------------------------------------------------- /src/plugins/ding_dong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/python-wechaty-template/HEAD/src/plugins/ding_dong.py -------------------------------------------------------------------------------- /src/plugins/github_message_forwarder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/python-wechaty-template/HEAD/src/plugins/github_message_forwarder.py -------------------------------------------------------------------------------- /src/plugins/health_checking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/python-wechaty-template/HEAD/src/plugins/health_checking.py -------------------------------------------------------------------------------- /src/plugins/repeater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/python-wechaty-template/HEAD/src/plugins/repeater.py -------------------------------------------------------------------------------- /src/plugins/send_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/python-wechaty-template/HEAD/src/plugins/send_message.py -------------------------------------------------------------------------------- /src/plugins/uie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/python-wechaty-template/HEAD/src/plugins/uie.py -------------------------------------------------------------------------------- /src/plugins/views/send_message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/python-wechaty-template/HEAD/src/plugins/views/send_message.html -------------------------------------------------------------------------------- /src/plugins/views/table.jinja2: -------------------------------------------------------------------------------- 1 |

来自于服务器的数据

2 | 此页面已被浏览:{{count}}次 -------------------------------------------------------------------------------- /src/plugins/views/vue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/python-wechaty-template/HEAD/src/plugins/views/vue.html -------------------------------------------------------------------------------- /src/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/python-wechaty-template/HEAD/src/schema.py -------------------------------------------------------------------------------- /src/ui_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/python-wechaty-template/HEAD/src/ui_plugin.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/python-wechaty-template/HEAD/src/utils.py -------------------------------------------------------------------------------- /start_gateway_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/python-wechaty-template/HEAD/start_gateway_docker.sh -------------------------------------------------------------------------------- /watchtower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/python-wechaty-template/HEAD/watchtower.py --------------------------------------------------------------------------------