Metadata-Version: 2.1
Name: telepy
Version: 0.0.23
Summary: Telegram bot library
Home-page: https://gitlab.com/2411eliko/tele
Author: eliko
Author-email: eliko2411@hi2.in
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: requests

#### Tele
Telegram bot library.  

view [readthedocs](https://tele.readthedocs.io)  
[GitLab](https://gitlab.com/2411eliko/tele)  
[pypi](https://pypi.org/project/telepy/)  
##### Installation

requires python 3 + to run.

`pip3 install telepy`

```python 
from Tele import *


@bot('text')
def echo(update):
    message_reply(update, update.text)


account('TOKEN')
bot_run()

```


