Metadata-Version: 2.1
Name: tgsdk
Version: 1.1.1
Summary: Python Telegram SDK to help make requests to Telegram API
Home-page: https://github.com/evgeniyprivalov/tgsdk
Author: Evgeniy Privalov
Author-email: evgeniyprivalov94@gmail.com
License: GPLv3+
Download-URL: https://pypi.org/project/tgsdk/
Keywords: Python Telegram API Bot SDK
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Communications :: Chat
Classifier: Topic :: Internet
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.5
Requires-Dist: certifi (==2020.12.5)
Requires-Dist: ujson (==3.2.0)
Requires-Dist: urllib3 (==1.26.3)

# Telegram API SDK

## Introduction


## Getting started
To start using package tgsdk you have to know methods of the [Telegram API](https://core.telegram.org/bots/api). This library provides pure  interface to interact with it, but you need to understand what you are doing.

Documentation of methods just contain URL to real [Telegram API](https://core.telegram.org/bots/api) documentation cause all logic is understandable without large texts and you have to know description and signature of most methods. If you want you can add documentation and make a pull request.

## Installation
You can install or upgrade package with:

```bash
pip install tgsdk --upgrade
```

## License
[GPLv3](http://gplv3.fsf.org/)


