README.md
setup.py
swibots/__init__.py
swibots/app.py
swibots/bot_app.py
swibots/config.py
swibots/error.py
swibots/types.py
swibots.egg-info/PKG-INFO
swibots.egg-info/SOURCES.txt
swibots.egg-info/dependency_links.txt
swibots.egg-info/requires.txt
swibots.egg-info/top_level.txt
swibots/api/__init__.py
swibots/api/api_client.py
swibots/api/auth/__init__.py
swibots/api/auth/auth_client.py
swibots/api/auth/controllers/__init__.py
swibots/api/auth/controllers/user_controller.py
swibots/api/auth/methods/__init__.py
swibots/api/auth/methods/get_me.py
swibots/api/auth/models/__init__.py
swibots/api/auth/models/auth_user.py
swibots/api/bot/__init__.py
swibots/api/bot/bot_client.py
swibots/api/bot/controllers/__init__.py
swibots/api/bot/controllers/bot_controller.py
swibots/api/bot/methods/__init__.py
swibots/api/bot/methods/delete_bot_info.py
swibots/api/bot/methods/get_bot_info.py
swibots/api/bot/methods/update_bot_info.py
swibots/api/bot/models/__init__.py
swibots/api/bot/models/bot_command_info.py
swibots/api/bot/models/bot_info.py
swibots/api/chat/__init__.py
swibots/api/chat/chat_client.py
swibots/api/chat/controllers/__init__.py
swibots/api/chat/controllers/message_controller.py
swibots/api/chat/events/__init__.py
swibots/api/chat/events/callback_query_event.py
swibots/api/chat/events/chat_event.py
swibots/api/chat/events/command_event.py
swibots/api/chat/events/message_event.py
swibots/api/chat/methods/__init__.py
swibots/api/chat/methods/clear_conversation.py
swibots/api/chat/methods/delete_message.py
swibots/api/chat/methods/delete_messages_from_user.py
swibots/api/chat/methods/edit_message.py
swibots/api/chat/methods/flag_message.py
swibots/api/chat/methods/forward_message.py
swibots/api/chat/methods/get_channel_chat_history.py
swibots/api/chat/methods/get_community_media_files.py
swibots/api/chat/methods/get_community_media_files_by_status.py
swibots/api/chat/methods/get_flag_messages.py
swibots/api/chat/methods/get_group_chat_history.py
swibots/api/chat/methods/get_message.py
swibots/api/chat/methods/get_messages.py
swibots/api/chat/methods/get_messages_between_users.py
swibots/api/chat/methods/get_unread_messages_count.py
swibots/api/chat/methods/get_user_media_files.py
swibots/api/chat/methods/send_message.py
swibots/api/chat/models/__init__.py
swibots/api/chat/models/group_chat_history.py
swibots/api/chat/models/inline_keyboard_button.py
swibots/api/chat/models/inline_keyboard_color.py
swibots/api/chat/models/inline_keyboard_size.py
swibots/api/chat/models/inline_markup.py
swibots/api/chat/models/message.py
swibots/api/common/__init__.py
swibots/api/common/events/__init__.py
swibots/api/common/events/event.py
swibots/api/common/models/__init__.py
swibots/api/common/models/user.py
swibots/api/community/__init__.py
swibots/api/community/community_client.py
swibots/api/community/events/__init__.py
swibots/api/community/events/channel_created_event.py
swibots/api/community/events/channel_deleted_event.py
swibots/api/community/events/channel_updated_event.py
swibots/api/community/events/community_event.py
swibots/api/community/events/community_updated_event.py
swibots/api/community/events/group_created_event.py
swibots/api/community/events/group_deleted_event.py
swibots/api/community/events/group_updated_event.py
swibots/api/community/events/member_joined_event.py
swibots/api/community/events/member_left_event.py
swibots/api/community/events/user_banned_event.py
swibots/api/community/methods/__init__.py
swibots/api/community/models/__init__.py
swibots/api/community/models/channel.py
swibots/api/community/models/community.py
swibots/api/community/models/group.py
swibots/base/__init__.py
swibots/base/rest_controller.py
swibots/base/rest_request.py
swibots/base/rest_response.py
swibots/base/switch_client.py
swibots/base/switch_object.py
swibots/base/switch_ws_async_client.py
swibots/bots/__init__.py
swibots/bots/bot.py
swibots/bots/bot_context.py
swibots/bots/constants.py
swibots/bots/register_command.py
swibots/bots/decorators/__init__.py
swibots/bots/decorators/on_callback_query.py
swibots/bots/decorators/on_channel_created.py
swibots/bots/decorators/on_channel_deleted.py
swibots/bots/decorators/on_channel_updated.py
swibots/bots/decorators/on_command.py
swibots/bots/decorators/on_community_updated.py
swibots/bots/decorators/on_group_created.py
swibots/bots/decorators/on_group_deleted.py
swibots/bots/decorators/on_group_updated.py
swibots/bots/decorators/on_member_joined.py
swibots/bots/decorators/on_member_left.py
swibots/bots/decorators/on_message.py
swibots/bots/decorators/on_unknown_command.py
swibots/bots/decorators/on_user_banned.py
swibots/bots/filters/__init__.py
swibots/bots/filters/filter.py
swibots/bots/handlers/__init__.py
swibots/bots/handlers/base_handler.py
swibots/bots/handlers/callback_query_handler.py
swibots/bots/handlers/channel_created_handler.py
swibots/bots/handlers/channel_deleted_handler.py
swibots/bots/handlers/channel_updated_handler.py
swibots/bots/handlers/command_handler.py
swibots/bots/handlers/community_updated_handler.py
swibots/bots/handlers/event_handler.py
swibots/bots/handlers/group_created_handler.py
swibots/bots/handlers/group_deleted_handler.py
swibots/bots/handlers/group_updated_handler.py
swibots/bots/handlers/member_joined_handler.py
swibots/bots/handlers/member_left_handler.py
swibots/bots/handlers/message_handler.py
swibots/bots/handlers/unknown_command_handler.py
swibots/bots/handlers/user_banned_handler.py
swibots/utils/__init__.py
swibots/utils/rest_client.py
swibots/utils/types.py
swibots/utils/ws/__init__.py
swibots/utils/ws/asyncstomp/__init__.py
swibots/utils/ws/asyncstomp/async_ws_client.py
swibots/utils/ws/asyncstomp/async_ws_subscription.py
swibots/utils/ws/common/__init__.py
swibots/utils/ws/common/ws_frame.py
swibots/utils/ws/common/ws_message.py
tests/__init__.py
tests/tests.py