.gitignore
LICENSE
README-PyPI.md
README-ru.md
README.md
mkdocs.yml
pyproject.toml
requirements-docs.txt
requirements.txt
.github/workflows/docs.yml
.github/workflows/release-test.yml
.github/workflows/release.yml
assets/head_en.png
assets/head_ru.png
assets/logo-cyrillic.svg
assets/logo.svg
docs/en/features.md
docs/en/index.md
docs/en/examples/echo_bot.md
docs/en/examples/multibot.md
docs/en/img/head.png
docs/en/learn/enums.md
docs/en/learn/filters.md
docs/en/learn/getting-started.md
docs/en/learn/parse-messages.md
docs/en/learn/types.md
docs/en/reference/Bot.md
docs/en/reference/Dispatcher.md
docs/en/reference/Enums.md
docs/en/reference/Router.md
docs/en/reference/Types.md
docs/en/reference/index.md
docs/img/chatbot.svg
docs/img/favicon.ico
docs/img/logo.svg
docs/ru/features.md
docs/ru/index.md
docs/ru/examples/echo_bot.md
docs/ru/examples/multibot.md
docs/ru/img/head.png
docs/ru/learn/enums.md
docs/ru/learn/filters.md
docs/ru/learn/getting-started.md
docs/ru/learn/parse-messages.md
docs/ru/learn/types.md
docs/stylesheets/extra.css
python_trueconf_bot.egg-info/PKG-INFO
python_trueconf_bot.egg-info/SOURCES.txt
python_trueconf_bot.egg-info/dependency_links.txt
python_trueconf_bot.egg-info/requires.txt
python_trueconf_bot.egg-info/top_level.txt
trueconf/__init__.py
trueconf/_version.py
trueconf/exceptions.py
trueconf/loggers.py
trueconf/py.typed
trueconf/client/__init__.py
trueconf/client/bot.py
trueconf/client/context_controller.py
trueconf/client/session.py
trueconf/dispatcher/__init__.py
trueconf/dispatcher/dispatcher.py
trueconf/dispatcher/router.py
trueconf/enums/__init__.py
trueconf/enums/aouth_error.py
trueconf/enums/chat_participant_role.py
trueconf/enums/chat_type.py
trueconf/enums/envelope_author_type.py
trueconf/enums/file_ready_state.py
trueconf/enums/incoming_update_method.py
trueconf/enums/message_type.py
trueconf/enums/parse_mode.py
trueconf/enums/survey_type.py
trueconf/enums/update_type.py
trueconf/filters/__init__.py
trueconf/filters/base.py
trueconf/filters/command.py
trueconf/filters/instance_of.py
trueconf/filters/message.py
trueconf/filters/method.py
trueconf/methods/__init__.py
trueconf/methods/add_participant_to_chat.py
trueconf/methods/auth.py
trueconf/methods/base.py
trueconf/methods/create_channel.py
trueconf/methods/create_group_chat.py
trueconf/methods/create_p2p_chat.py
trueconf/methods/edit_message.py
trueconf/methods/edit_survey.py
trueconf/methods/forward_message.py
trueconf/methods/get_chat_by_id.py
trueconf/methods/get_chat_history.py
trueconf/methods/get_chat_participants.py
trueconf/methods/get_chats.py
trueconf/methods/get_file_info.py
trueconf/methods/get_message_by_id.py
trueconf/methods/get_user_display_name.py
trueconf/methods/has_chat_participant.py
trueconf/methods/remove_chat.py
trueconf/methods/remove_message.py
trueconf/methods/remove_participant_from_chat.py
trueconf/methods/send_file.py
trueconf/methods/send_message.py
trueconf/methods/send_survey.py
trueconf/methods/subscribe_file_progress.py
trueconf/methods/unsubscribe_file_progress.py
trueconf/methods/upload_file.py
trueconf/types/__init__.py
trueconf/types/author_box.py
trueconf/types/chat_participant.py
trueconf/types/last_message.py
trueconf/types/message.py
trueconf/types/parser.py
trueconf/types/update.py
trueconf/types/content/__init__.py
trueconf/types/content/attachment.py
trueconf/types/content/base.py
trueconf/types/content/chat_created.py
trueconf/types/content/document.py
trueconf/types/content/forward_message.py
trueconf/types/content/photo.py
trueconf/types/content/remove_participant.py
trueconf/types/content/sticker.py
trueconf/types/content/survey.py
trueconf/types/content/text.py
trueconf/types/content/video.py
trueconf/types/requests/__init__.py
trueconf/types/requests/added_chat_participant.py
trueconf/types/requests/created_channel.py
trueconf/types/requests/created_group_chat.py
trueconf/types/requests/created_personal_chat.py
trueconf/types/requests/edited_message.py
trueconf/types/requests/removed_chat.py
trueconf/types/requests/removed_chat_participant.py
trueconf/types/requests/removed_message.py
trueconf/types/requests/uploading_progress.py
trueconf/types/responses/__init__.py
trueconf/types/responses/add_chat_participant_response.py
trueconf/types/responses/api_error.py
trueconf/types/responses/auth_response_payload.py
trueconf/types/responses/create_channel_response.py
trueconf/types/responses/create_group_chat_response.py
trueconf/types/responses/create_p2p_chat_response.py
trueconf/types/responses/edit_message_response.py
trueconf/types/responses/edit_survey_response.py
trueconf/types/responses/forward_message_response.py
trueconf/types/responses/get_chat_by_id_response.py
trueconf/types/responses/get_chat_history_response.py
trueconf/types/responses/get_chat_participants_response.py
trueconf/types/responses/get_chats_response.py
trueconf/types/responses/get_file_info_response.py
trueconf/types/responses/get_message_by_id_response.py
trueconf/types/responses/get_user_display_name_response.py
trueconf/types/responses/has_chat_participant_response.py
trueconf/types/responses/remove_chat_participant_response.py
trueconf/types/responses/remove_chat_response.py
trueconf/types/responses/remove_message_response.py
trueconf/types/responses/send_file_response.py
trueconf/types/responses/send_message_response.py
trueconf/types/responses/send_survey_response.py
trueconf/types/responses/subscribe_file_progress_response.py
trueconf/types/responses/unsubscribe_file_progress_response.py
trueconf/types/responses/upload_file_response.py
trueconf/utils/__init__.py
trueconf/utils/generate_secret_for_survey.py
trueconf/utils/token.py