├── .gitignore ├── LICENSE ├── README.md ├── ai_actions_stream ├── actions.py └── requirements.txt ├── bot_echo_markdown ├── echo_markdown.py └── requirements.txt ├── bot_echo_text ├── echo_text.py └── requirements.txt └── event_chat_update ├── event_handler.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-dingtalk/dingtalk-tutorial-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-dingtalk/dingtalk-tutorial-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-dingtalk/dingtalk-tutorial-python/HEAD/README.md -------------------------------------------------------------------------------- /ai_actions_stream/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-dingtalk/dingtalk-tutorial-python/HEAD/ai_actions_stream/actions.py -------------------------------------------------------------------------------- /ai_actions_stream/requirements.txt: -------------------------------------------------------------------------------- 1 | dingtalk-stream==0.22.0 2 | -------------------------------------------------------------------------------- /bot_echo_markdown/echo_markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-dingtalk/dingtalk-tutorial-python/HEAD/bot_echo_markdown/echo_markdown.py -------------------------------------------------------------------------------- /bot_echo_markdown/requirements.txt: -------------------------------------------------------------------------------- 1 | dingtalk-stream==0.15.1 2 | -------------------------------------------------------------------------------- /bot_echo_text/echo_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-dingtalk/dingtalk-tutorial-python/HEAD/bot_echo_text/echo_text.py -------------------------------------------------------------------------------- /bot_echo_text/requirements.txt: -------------------------------------------------------------------------------- 1 | dingtalk-stream==0.15.1 2 | -------------------------------------------------------------------------------- /event_chat_update/event_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-dingtalk/dingtalk-tutorial-python/HEAD/event_chat_update/event_handler.py -------------------------------------------------------------------------------- /event_chat_update/requirements.txt: -------------------------------------------------------------------------------- 1 | dingtalk-stream==0.15.1 2 | --------------------------------------------------------------------------------