Metadata-Version: 2.1
Name: telebotbuilder
Version: 0.0.2
Summary: An aggregate of packages I frequently install when building Telegram bots
Home-page: https://github.com/zeph1997/telebotbuilder
Author: Zeph Ng
Author-email: zephngdev@gmail.com
License: MIT
Download-URL: https://github.com/zeph1997/telebotbuilder/archive/refs/tags/v0.0.2.tar.gz
Keywords: telebot,telegram,bot,chat,chatbot,firebase
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# telebotbuilder

# <p align="center">telebotbuilder</p>

<p align="center">An aggregate of my frequently used packages when building a Telegram bot</p>

## 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.py

import telebot

bot = telebot.TeleBot(secrets.get_telebot_token())

bot.polling()
```

```python
# database.py

from firebase import Firebase

firebase = Firebase(secrets.get_firebase_config())
auth = firebase.auth()
db = firebase.database()
```

All's good, easier pip installs in the future!

