https://github.com/zeph1997/telebotbuilder
An aggregate of my frequently used packages when building a telegram bot
https://github.com/zeph1997/telebotbuilder
Last synced: 2 months ago
JSON representation
An aggregate of my frequently used packages when building a telegram bot
- Host: GitHub
- URL: https://github.com/zeph1997/telebotbuilder
- Owner: zeph1997
- License: mit
- Created: 2022-01-26T13:25:55.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-26T14:22:12.000Z (over 3 years ago)
- Last Synced: 2025-02-28T03:23:43.181Z (3 months ago)
- Language: Python
- Size: 4.88 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# telebotbuilder
#
telebotbuilder
An aggregate of my frequently used packages when building a Telegram bot
## Contents
* [Getting started](#getting-started)
* [Included Packages](#included-packages)
* [Using telebotbuilder](#using-telebotbuilder)
## Getting Started* Installation using pip (Python Package Index):
```
$ pip install telebotbuilder
```## Included Packages
* pip install pyTelegrambotAPI
* pip install firebase
* pip install python_jwt
* pip install gcloud
* pip install sseclient
* pip install pycryptodome
* pip install requests-toolbelt## Using telebotbuilder
You can just use the packages as normal. Here are some examples:
```python
# main.pyimport telebot
bot = telebot.TeleBot(secrets.get_telebot_token())
bot.polling()
``````python
# database.pyfrom firebase import Firebase
firebase = Firebase(secrets.get_firebase_config())
auth = firebase.auth()
db = firebase.database()
```All's good, easier pip installs in the future!