├── .dockerignore ├── .gitattributes ├── .gitignore ├── .netlify ├── Makefile ├── requirements.txt ├── runtime.txt └── website ├── .travis.yml ├── AUTHORS ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.md ├── botogram ├── __init__.py ├── api.py ├── bot.py ├── callbacks.py ├── commands.py ├── components.py ├── context.py ├── converters.py ├── crypto.py ├── decorators.py ├── defaults.py ├── exceptions.py ├── frozenbot.py ├── hooks.py ├── inline.py ├── messages.py ├── objects │ ├── __init__.py │ ├── base.py │ ├── callbacks.py │ ├── chats.py │ ├── inline.py │ ├── markup.py │ ├── media.py │ ├── messages.py │ ├── mixins.py │ ├── polls.py │ └── updates.py ├── runner │ ├── __init__.py │ ├── ipc.py │ ├── jobs.py │ ├── processes.py │ └── shared.py ├── shared.py ├── syntaxes.py ├── tasks.py ├── updates.py └── utils │ ├── __init__.py │ ├── calls.py │ ├── deprecations.py │ ├── startup.py │ └── strings.py ├── docs ├── _ext │ └── botogramext.py ├── _templates │ └── links.html ├── _themes │ └── botogram │ │ ├── layout.html │ │ ├── static │ │ ├── botogram.css │ │ ├── font-awesome.css │ │ └── fonts │ │ │ └── bitter.ttf │ │ └── theme.conf ├── api │ ├── bot.rst │ ├── buttons.rst │ ├── channels.rst │ ├── components.rst │ ├── index.rst │ ├── inline.rst │ ├── telegram.rst │ └── utility.rst ├── bot-creation.rst ├── bot-structure.rst ├── buildthedocs.yml ├── buttons.rst ├── changelog │ ├── 0.1.rst │ ├── 0.2.rst │ ├── 0.3.rst │ ├── 0.4.rst │ ├── 0.5.rst │ ├── 0.6.rst │ ├── 0.7.rst │ └── index.rst ├── channels.rst ├── conf.py ├── custom-components.rst ├── deploy │ ├── common.rst │ ├── gnu-screen.rst │ ├── index.rst │ └── supervisord.rst ├── groups-management.rst ├── i18n.rst ├── index.rst ├── inline.rst ├── install.rst ├── license.rst ├── quickstart │ ├── api-key.rst │ ├── better-help.rst │ ├── chat-messages.rst │ ├── hello-world.rst │ ├── index.rst │ └── skeleton.rst ├── shared-memory.rst ├── tasks.rst ├── tricks.rst └── unavailable-chats.rst ├── i18n ├── botogram.pot └── langs │ ├── br.po │ ├── en.po │ ├── it.po │ └── pt.po ├── nginx-doc.conf ├── requirements-build.in ├── requirements-build.txt ├── requirements-docs.in ├── requirements-docs.txt ├── requirements-lint.in ├── requirements-lint.txt ├── requirements-test.in ├── requirements-test.txt ├── requirements-tools.in ├── requirements-tools.txt ├── setup.py ├── tasks.py ├── tests ├── conftest.py ├── test_api.py ├── test_bot.py ├── test_callbacks.py ├── test_commands.py ├── test_components.py ├── test_crypto.py ├── test_decorators.py ├── test_frozenbot.py ├── test_inline.py ├── test_objects.py ├── test_objects_base.py ├── test_objects_messages.py ├── test_shared.py ├── test_syntaxes.py ├── test_tasks.py ├── test_utils_calls.py └── test_utils_strings.py └── website ├── 404.html ├── _static └── style.css ├── favicon.ico ├── fonts ├── bitter │ ├── bitter-400.ttf │ ├── bitter-700.ttf │ └── include.min.css ├── dejavu-sans │ ├── dejavu-sans-400.ttf │ └── include.min.css └── hack │ ├── hack-400.ttf │ ├── hack-700.ttf │ └── include.min.css └── index.html /.dockerignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/.gitignore -------------------------------------------------------------------------------- /.netlify/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/.netlify/Makefile -------------------------------------------------------------------------------- /.netlify/requirements.txt: -------------------------------------------------------------------------------- 1 | invoke==0.11.1 2 | -------------------------------------------------------------------------------- /.netlify/runtime.txt: -------------------------------------------------------------------------------- 1 | 3.6 2 | -------------------------------------------------------------------------------- /.netlify/website: -------------------------------------------------------------------------------- 1 | ../website -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/AUTHORS -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/README.md -------------------------------------------------------------------------------- /botogram/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/__init__.py -------------------------------------------------------------------------------- /botogram/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/api.py -------------------------------------------------------------------------------- /botogram/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/bot.py -------------------------------------------------------------------------------- /botogram/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/callbacks.py -------------------------------------------------------------------------------- /botogram/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/commands.py -------------------------------------------------------------------------------- /botogram/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/components.py -------------------------------------------------------------------------------- /botogram/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/context.py -------------------------------------------------------------------------------- /botogram/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/converters.py -------------------------------------------------------------------------------- /botogram/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/crypto.py -------------------------------------------------------------------------------- /botogram/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/decorators.py -------------------------------------------------------------------------------- /botogram/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/defaults.py -------------------------------------------------------------------------------- /botogram/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/exceptions.py -------------------------------------------------------------------------------- /botogram/frozenbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/frozenbot.py -------------------------------------------------------------------------------- /botogram/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/hooks.py -------------------------------------------------------------------------------- /botogram/inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/inline.py -------------------------------------------------------------------------------- /botogram/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/messages.py -------------------------------------------------------------------------------- /botogram/objects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/objects/__init__.py -------------------------------------------------------------------------------- /botogram/objects/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/objects/base.py -------------------------------------------------------------------------------- /botogram/objects/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/objects/callbacks.py -------------------------------------------------------------------------------- /botogram/objects/chats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/objects/chats.py -------------------------------------------------------------------------------- /botogram/objects/inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/objects/inline.py -------------------------------------------------------------------------------- /botogram/objects/markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/objects/markup.py -------------------------------------------------------------------------------- /botogram/objects/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/objects/media.py -------------------------------------------------------------------------------- /botogram/objects/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/objects/messages.py -------------------------------------------------------------------------------- /botogram/objects/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/objects/mixins.py -------------------------------------------------------------------------------- /botogram/objects/polls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/objects/polls.py -------------------------------------------------------------------------------- /botogram/objects/updates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/objects/updates.py -------------------------------------------------------------------------------- /botogram/runner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/runner/__init__.py -------------------------------------------------------------------------------- /botogram/runner/ipc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/runner/ipc.py -------------------------------------------------------------------------------- /botogram/runner/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/runner/jobs.py -------------------------------------------------------------------------------- /botogram/runner/processes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/runner/processes.py -------------------------------------------------------------------------------- /botogram/runner/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/runner/shared.py -------------------------------------------------------------------------------- /botogram/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/shared.py -------------------------------------------------------------------------------- /botogram/syntaxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/syntaxes.py -------------------------------------------------------------------------------- /botogram/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/tasks.py -------------------------------------------------------------------------------- /botogram/updates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/updates.py -------------------------------------------------------------------------------- /botogram/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/utils/__init__.py -------------------------------------------------------------------------------- /botogram/utils/calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/utils/calls.py -------------------------------------------------------------------------------- /botogram/utils/deprecations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/utils/deprecations.py -------------------------------------------------------------------------------- /botogram/utils/startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/utils/startup.py -------------------------------------------------------------------------------- /botogram/utils/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/botogram/utils/strings.py -------------------------------------------------------------------------------- /docs/_ext/botogramext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/_ext/botogramext.py -------------------------------------------------------------------------------- /docs/_templates/links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/_templates/links.html -------------------------------------------------------------------------------- /docs/_themes/botogram/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/_themes/botogram/layout.html -------------------------------------------------------------------------------- /docs/_themes/botogram/static/botogram.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/_themes/botogram/static/botogram.css -------------------------------------------------------------------------------- /docs/_themes/botogram/static/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/_themes/botogram/static/font-awesome.css -------------------------------------------------------------------------------- /docs/_themes/botogram/static/fonts/bitter.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/_themes/botogram/static/fonts/bitter.ttf -------------------------------------------------------------------------------- /docs/_themes/botogram/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/_themes/botogram/theme.conf -------------------------------------------------------------------------------- /docs/api/bot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/api/bot.rst -------------------------------------------------------------------------------- /docs/api/buttons.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/api/buttons.rst -------------------------------------------------------------------------------- /docs/api/channels.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/api/channels.rst -------------------------------------------------------------------------------- /docs/api/components.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/api/components.rst -------------------------------------------------------------------------------- /docs/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/api/index.rst -------------------------------------------------------------------------------- /docs/api/inline.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/api/inline.rst -------------------------------------------------------------------------------- /docs/api/telegram.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/api/telegram.rst -------------------------------------------------------------------------------- /docs/api/utility.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/api/utility.rst -------------------------------------------------------------------------------- /docs/bot-creation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/bot-creation.rst -------------------------------------------------------------------------------- /docs/bot-structure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/bot-structure.rst -------------------------------------------------------------------------------- /docs/buildthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/buildthedocs.yml -------------------------------------------------------------------------------- /docs/buttons.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/buttons.rst -------------------------------------------------------------------------------- /docs/changelog/0.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/changelog/0.1.rst -------------------------------------------------------------------------------- /docs/changelog/0.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/changelog/0.2.rst -------------------------------------------------------------------------------- /docs/changelog/0.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/changelog/0.3.rst -------------------------------------------------------------------------------- /docs/changelog/0.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/changelog/0.4.rst -------------------------------------------------------------------------------- /docs/changelog/0.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/changelog/0.5.rst -------------------------------------------------------------------------------- /docs/changelog/0.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/changelog/0.6.rst -------------------------------------------------------------------------------- /docs/changelog/0.7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/changelog/0.7.rst -------------------------------------------------------------------------------- /docs/changelog/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/changelog/index.rst -------------------------------------------------------------------------------- /docs/channels.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/channels.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/custom-components.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/custom-components.rst -------------------------------------------------------------------------------- /docs/deploy/common.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/deploy/common.rst -------------------------------------------------------------------------------- /docs/deploy/gnu-screen.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/deploy/gnu-screen.rst -------------------------------------------------------------------------------- /docs/deploy/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/deploy/index.rst -------------------------------------------------------------------------------- /docs/deploy/supervisord.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/deploy/supervisord.rst -------------------------------------------------------------------------------- /docs/groups-management.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/groups-management.rst -------------------------------------------------------------------------------- /docs/i18n.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/i18n.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/inline.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/inline.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/license.rst -------------------------------------------------------------------------------- /docs/quickstart/api-key.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/quickstart/api-key.rst -------------------------------------------------------------------------------- /docs/quickstart/better-help.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/quickstart/better-help.rst -------------------------------------------------------------------------------- /docs/quickstart/chat-messages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/quickstart/chat-messages.rst -------------------------------------------------------------------------------- /docs/quickstart/hello-world.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/quickstart/hello-world.rst -------------------------------------------------------------------------------- /docs/quickstart/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/quickstart/index.rst -------------------------------------------------------------------------------- /docs/quickstart/skeleton.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/quickstart/skeleton.rst -------------------------------------------------------------------------------- /docs/shared-memory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/shared-memory.rst -------------------------------------------------------------------------------- /docs/tasks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/tasks.rst -------------------------------------------------------------------------------- /docs/tricks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/tricks.rst -------------------------------------------------------------------------------- /docs/unavailable-chats.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/docs/unavailable-chats.rst -------------------------------------------------------------------------------- /i18n/botogram.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/i18n/botogram.pot -------------------------------------------------------------------------------- /i18n/langs/br.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/i18n/langs/br.po -------------------------------------------------------------------------------- /i18n/langs/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/i18n/langs/en.po -------------------------------------------------------------------------------- /i18n/langs/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/i18n/langs/it.po -------------------------------------------------------------------------------- /i18n/langs/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/i18n/langs/pt.po -------------------------------------------------------------------------------- /nginx-doc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/nginx-doc.conf -------------------------------------------------------------------------------- /requirements-build.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/requirements-build.in -------------------------------------------------------------------------------- /requirements-build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/requirements-build.txt -------------------------------------------------------------------------------- /requirements-docs.in: -------------------------------------------------------------------------------- 1 | buildthedocs 2 | pietroalbini-sphinx-themes 3 | -------------------------------------------------------------------------------- /requirements-docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/requirements-docs.txt -------------------------------------------------------------------------------- /requirements-lint.in: -------------------------------------------------------------------------------- 1 | flake8 2 | -------------------------------------------------------------------------------- /requirements-lint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/requirements-lint.txt -------------------------------------------------------------------------------- /requirements-test.in: -------------------------------------------------------------------------------- 1 | pytest 2 | responses 3 | typing 4 | -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /requirements-tools.in: -------------------------------------------------------------------------------- 1 | pip-tools 2 | -------------------------------------------------------------------------------- /requirements-tools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/requirements-tools.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/setup.py -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/tasks.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/tests/test_bot.py -------------------------------------------------------------------------------- /tests/test_callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/tests/test_callbacks.py -------------------------------------------------------------------------------- /tests/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/tests/test_commands.py -------------------------------------------------------------------------------- /tests/test_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/tests/test_components.py -------------------------------------------------------------------------------- /tests/test_crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/tests/test_crypto.py -------------------------------------------------------------------------------- /tests/test_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/tests/test_decorators.py -------------------------------------------------------------------------------- /tests/test_frozenbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/tests/test_frozenbot.py -------------------------------------------------------------------------------- /tests/test_inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/tests/test_inline.py -------------------------------------------------------------------------------- /tests/test_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/tests/test_objects.py -------------------------------------------------------------------------------- /tests/test_objects_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/tests/test_objects_base.py -------------------------------------------------------------------------------- /tests/test_objects_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/tests/test_objects_messages.py -------------------------------------------------------------------------------- /tests/test_shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/tests/test_shared.py -------------------------------------------------------------------------------- /tests/test_syntaxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/tests/test_syntaxes.py -------------------------------------------------------------------------------- /tests/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/tests/test_tasks.py -------------------------------------------------------------------------------- /tests/test_utils_calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/tests/test_utils_calls.py -------------------------------------------------------------------------------- /tests/test_utils_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/tests/test_utils_strings.py -------------------------------------------------------------------------------- /website/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/website/404.html -------------------------------------------------------------------------------- /website/_static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/website/_static/style.css -------------------------------------------------------------------------------- /website/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/website/favicon.ico -------------------------------------------------------------------------------- /website/fonts/bitter/bitter-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/website/fonts/bitter/bitter-400.ttf -------------------------------------------------------------------------------- /website/fonts/bitter/bitter-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/website/fonts/bitter/bitter-700.ttf -------------------------------------------------------------------------------- /website/fonts/bitter/include.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/website/fonts/bitter/include.min.css -------------------------------------------------------------------------------- /website/fonts/dejavu-sans/dejavu-sans-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/website/fonts/dejavu-sans/dejavu-sans-400.ttf -------------------------------------------------------------------------------- /website/fonts/dejavu-sans/include.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/website/fonts/dejavu-sans/include.min.css -------------------------------------------------------------------------------- /website/fonts/hack/hack-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/website/fonts/hack/hack-400.ttf -------------------------------------------------------------------------------- /website/fonts/hack/hack-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/website/fonts/hack/hack-700.ttf -------------------------------------------------------------------------------- /website/fonts/hack/include.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/website/fonts/hack/include.min.css -------------------------------------------------------------------------------- /website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-botogram/botogram/HEAD/website/index.html --------------------------------------------------------------------------------