├── .gitignore ├── LICENSE ├── README.md ├── examples ├── delete_message.py ├── echo.py ├── edit_message.py ├── print_updates.py ├── send_action.py ├── send_audio.py ├── send_contact.py ├── send_file.py ├── send_image.py ├── send_text.py ├── send_video.py └── send_voice.py ├── gapbot ├── __init__.py ├── client │ ├── __init__.py │ ├── gap.py │ └── methods │ │ ├── __init__.py │ │ ├── callbacks │ │ ├── __init__.py │ │ └── answer_callback.py │ │ ├── decorators │ │ ├── __init__.py │ │ └── on_update.py │ │ ├── extra │ │ ├── __init__.py │ │ └── upload.py │ │ ├── game │ │ ├── __init__.py │ │ ├── get_game_config.py │ │ ├── get_game_data.py │ │ ├── get_top_players.py │ │ ├── set_game_data.py │ │ └── set_game_event.py │ │ ├── messages │ │ ├── __init__.py │ │ ├── delete_message.py │ │ ├── edit_message.py │ │ ├── send_action.py │ │ ├── send_audio.py │ │ ├── send_contact.py │ │ ├── send_file.py │ │ ├── send_image.py │ │ ├── send_text.py │ │ ├── send_video.py │ │ └── send_voice.py │ │ └── payment │ │ ├── __init__.py │ │ ├── get_invoice_status.py │ │ ├── get_payment_status.py │ │ ├── send_invoice.py │ │ ├── verify_invoice.py │ │ └── verify_payment.py └── ext │ ├── __init__.py │ └── base_client.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | .idea 3 | __pycache__ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/README.md -------------------------------------------------------------------------------- /examples/delete_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/examples/delete_message.py -------------------------------------------------------------------------------- /examples/echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/examples/echo.py -------------------------------------------------------------------------------- /examples/edit_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/examples/edit_message.py -------------------------------------------------------------------------------- /examples/print_updates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/examples/print_updates.py -------------------------------------------------------------------------------- /examples/send_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/examples/send_action.py -------------------------------------------------------------------------------- /examples/send_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/examples/send_audio.py -------------------------------------------------------------------------------- /examples/send_contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/examples/send_contact.py -------------------------------------------------------------------------------- /examples/send_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/examples/send_file.py -------------------------------------------------------------------------------- /examples/send_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/examples/send_image.py -------------------------------------------------------------------------------- /examples/send_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/examples/send_text.py -------------------------------------------------------------------------------- /examples/send_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/examples/send_video.py -------------------------------------------------------------------------------- /examples/send_voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/examples/send_voice.py -------------------------------------------------------------------------------- /gapbot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/__init__.py -------------------------------------------------------------------------------- /gapbot/client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/__init__.py -------------------------------------------------------------------------------- /gapbot/client/gap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/gap.py -------------------------------------------------------------------------------- /gapbot/client/methods/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/methods/__init__.py -------------------------------------------------------------------------------- /gapbot/client/methods/callbacks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/methods/callbacks/__init__.py -------------------------------------------------------------------------------- /gapbot/client/methods/callbacks/answer_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/methods/callbacks/answer_callback.py -------------------------------------------------------------------------------- /gapbot/client/methods/decorators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/methods/decorators/__init__.py -------------------------------------------------------------------------------- /gapbot/client/methods/decorators/on_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/methods/decorators/on_update.py -------------------------------------------------------------------------------- /gapbot/client/methods/extra/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/methods/extra/__init__.py -------------------------------------------------------------------------------- /gapbot/client/methods/extra/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/methods/extra/upload.py -------------------------------------------------------------------------------- /gapbot/client/methods/game/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/methods/game/__init__.py -------------------------------------------------------------------------------- /gapbot/client/methods/game/get_game_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/methods/game/get_game_config.py -------------------------------------------------------------------------------- /gapbot/client/methods/game/get_game_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/methods/game/get_game_data.py -------------------------------------------------------------------------------- /gapbot/client/methods/game/get_top_players.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/methods/game/get_top_players.py -------------------------------------------------------------------------------- /gapbot/client/methods/game/set_game_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/methods/game/set_game_data.py -------------------------------------------------------------------------------- /gapbot/client/methods/game/set_game_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/methods/game/set_game_event.py -------------------------------------------------------------------------------- /gapbot/client/methods/messages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/methods/messages/__init__.py -------------------------------------------------------------------------------- /gapbot/client/methods/messages/delete_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/methods/messages/delete_message.py -------------------------------------------------------------------------------- /gapbot/client/methods/messages/edit_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/methods/messages/edit_message.py -------------------------------------------------------------------------------- /gapbot/client/methods/messages/send_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/methods/messages/send_action.py -------------------------------------------------------------------------------- /gapbot/client/methods/messages/send_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/methods/messages/send_audio.py -------------------------------------------------------------------------------- /gapbot/client/methods/messages/send_contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/methods/messages/send_contact.py -------------------------------------------------------------------------------- /gapbot/client/methods/messages/send_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/methods/messages/send_file.py -------------------------------------------------------------------------------- /gapbot/client/methods/messages/send_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/methods/messages/send_image.py -------------------------------------------------------------------------------- /gapbot/client/methods/messages/send_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/methods/messages/send_text.py -------------------------------------------------------------------------------- /gapbot/client/methods/messages/send_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/methods/messages/send_video.py -------------------------------------------------------------------------------- /gapbot/client/methods/messages/send_voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/methods/messages/send_voice.py -------------------------------------------------------------------------------- /gapbot/client/methods/payment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/methods/payment/__init__.py -------------------------------------------------------------------------------- /gapbot/client/methods/payment/get_invoice_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/methods/payment/get_invoice_status.py -------------------------------------------------------------------------------- /gapbot/client/methods/payment/get_payment_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/methods/payment/get_payment_status.py -------------------------------------------------------------------------------- /gapbot/client/methods/payment/send_invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/methods/payment/send_invoice.py -------------------------------------------------------------------------------- /gapbot/client/methods/payment/verify_invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/methods/payment/verify_invoice.py -------------------------------------------------------------------------------- /gapbot/client/methods/payment/verify_payment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/client/methods/payment/verify_payment.py -------------------------------------------------------------------------------- /gapbot/ext/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/ext/__init__.py -------------------------------------------------------------------------------- /gapbot/ext/base_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/gapbot/ext/base_client.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==1.0.3 2 | requests==2.22.0 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-GapBot/GapBot/HEAD/setup.py --------------------------------------------------------------------------------