Metadata-Version: 2.1
Name: pyrotel
Version: 0.1
Summary: pyrotel is a library for telegram bots.
Home-page: https://github.com/Erfan-Bafandeh/tele-py
Author: Erfan Bafandeh
Author-email: user.enbh@gmail.com
Keywords: Bot,Robot,pyrotel
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: License :: OSI Approved :: MIT License
Requires-Python: ~=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests

#pyrotel

<h3 align="center">tele-py is a library for telegram bots.</h3>

> ## Install and Update:
```python
pip install pyrotel
```

> ## START:
```python
from pyrotel import Client, Message

bot = Client("TOKEN")

last_update = 0

while True:
	update = bot.get_last_update()
	if update != last_update:
		msg = Message(update)
		if msg.text() == "/start":
			bot.send_message(msg.chat_id(), "wellcome to my bot.")
```

> ## Social Media:
<a href="https://t.me/pyrotel">TELEGRAM</a><br>
<a href="https://github.com/Erfan-Bafandeh/pyrotel">GITHUB</a>
