├── .gitignore ├── LICENSE ├── README.md ├── TelegramBotAPI ├── __init__.py ├── client │ ├── __init__.py │ ├── asyncioclient.py │ ├── baseclient.py │ └── requestsclient.py └── types │ ├── __init__.py │ ├── compound.py │ ├── field.py │ ├── methods.py │ ├── primitive.py │ └── type.py ├── makefile ├── setup.cfg ├── setup.py ├── setup_env.sh └── tests ├── __init__.py ├── env.py-example ├── test.jpg ├── test_asyncioclient.py ├── test_requestsclient.py └── test_types.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcesimian/pyTelegramBotAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcesimian/pyTelegramBotAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcesimian/pyTelegramBotAPI/HEAD/README.md -------------------------------------------------------------------------------- /TelegramBotAPI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcesimian/pyTelegramBotAPI/HEAD/TelegramBotAPI/__init__.py -------------------------------------------------------------------------------- /TelegramBotAPI/client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TelegramBotAPI/client/asyncioclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcesimian/pyTelegramBotAPI/HEAD/TelegramBotAPI/client/asyncioclient.py -------------------------------------------------------------------------------- /TelegramBotAPI/client/baseclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcesimian/pyTelegramBotAPI/HEAD/TelegramBotAPI/client/baseclient.py -------------------------------------------------------------------------------- /TelegramBotAPI/client/requestsclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcesimian/pyTelegramBotAPI/HEAD/TelegramBotAPI/client/requestsclient.py -------------------------------------------------------------------------------- /TelegramBotAPI/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcesimian/pyTelegramBotAPI/HEAD/TelegramBotAPI/types/__init__.py -------------------------------------------------------------------------------- /TelegramBotAPI/types/compound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcesimian/pyTelegramBotAPI/HEAD/TelegramBotAPI/types/compound.py -------------------------------------------------------------------------------- /TelegramBotAPI/types/field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcesimian/pyTelegramBotAPI/HEAD/TelegramBotAPI/types/field.py -------------------------------------------------------------------------------- /TelegramBotAPI/types/methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcesimian/pyTelegramBotAPI/HEAD/TelegramBotAPI/types/methods.py -------------------------------------------------------------------------------- /TelegramBotAPI/types/primitive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcesimian/pyTelegramBotAPI/HEAD/TelegramBotAPI/types/primitive.py -------------------------------------------------------------------------------- /TelegramBotAPI/types/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcesimian/pyTelegramBotAPI/HEAD/TelegramBotAPI/types/type.py -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcesimian/pyTelegramBotAPI/HEAD/makefile -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcesimian/pyTelegramBotAPI/HEAD/setup.py -------------------------------------------------------------------------------- /setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcesimian/pyTelegramBotAPI/HEAD/setup_env.sh -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'lloyd' 2 | -------------------------------------------------------------------------------- /tests/env.py-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcesimian/pyTelegramBotAPI/HEAD/tests/env.py-example -------------------------------------------------------------------------------- /tests/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcesimian/pyTelegramBotAPI/HEAD/tests/test.jpg -------------------------------------------------------------------------------- /tests/test_asyncioclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcesimian/pyTelegramBotAPI/HEAD/tests/test_asyncioclient.py -------------------------------------------------------------------------------- /tests/test_requestsclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcesimian/pyTelegramBotAPI/HEAD/tests/test_requestsclient.py -------------------------------------------------------------------------------- /tests/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcesimian/pyTelegramBotAPI/HEAD/tests/test_types.py --------------------------------------------------------------------------------