Metadata-Version: 2.1
Name: botele
Version: 0.1.1
Summary: Python Telegram Bot Factory
Home-page: https://github.com/pedromxavier/botele
Author: Pedro Maciel Xavier
Author-email: pedromxavier@poli.ufrj.br
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/pedromxavier/botele/issues
Project-URL: Source, https://github.com/pedromxavier/botele
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Requires-Python: <4,>=3.7
Description-Content-Type: text/markdown
Requires-Dist: lorem
Requires-Dist: python-telegram-bot
Requires-Dist: pyckage (>=0.1.1)
Requires-Dist: cstream (>=1.0.0)

# botele
### Python Telegram Bot Factory

## Installation
```bash
$ pip install botele
```
## Basic Usage
```bash
$ mkdir mybot
$ cd mybot
$ botele setup .
$ echo "<BOT TOKEN>" > mybot.token
$ vim mybot.py # Write your bot file
...
$ botele make # Checks for bot consistency
$ botele install
$ botele list
Available bots:
         1. mybot
$ botele run mybot # Here we go!
> Started Polling, going idle.
```


