Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pedromxavier/botele
https://github.com/pedromxavier/botele
Last synced: 28 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/pedromxavier/botele
- Owner: pedromxavier
- Created: 2021-03-18T04:02:42.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-04-09T05:07:00.000Z (over 3 years ago)
- Last Synced: 2024-10-15T16:54:40.601Z (2 months ago)
- Language: Python
- Size: 1.4 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# botele
### Python Telegram Bot Factory## Installation
```bash
$ pip install botele
```
## Basic Usage
```bash
$ mkdir mybot
$ cd mybot
$ botele setup .
$ echo "" > 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.
```