Metadata-Version: 2.1
Name: bonfire-tg
Version: 1.0.9
Summary: Speed telegram api libraly
Home-page: https://github.com/Help-urself/bonfire
Author: Help_urself
Author-email: alexliulev1@gmail.com
License: UNKNOWN
Platform: UNKNOWN
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: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# bonfire




bonfire this framework for [Telegram Bot API](https://core.telegram.org/bots/api) built on [requests](https://requests.readthedocs.io/en/latest/) <br>

**instaling**
```python 
git clone https://github.com/Help-urself/bonfire
```
or

```python 
pip install -i https://test.pypi.org/simple/ bonfire-tg
pip install bonfire-tg


```


## Examples
<details>
  <summary> Click </summary>




### Simple [`send_message`](https://core.telegram.org/method/messages.sendMessage) request

```python
#git clone
import os
import sys
sys.path.append(os.path.abspath('you path to bonfire'))
from bonfire import *
from bonfire.methods import *

token = "TOKEN"
msg = message(token)


@bot.handler(token,command="/start")#command handler
def start():
    send_message(token,chat_id=msg.chat_id,text=f"<b>Hello </b> @{msg.author_username}",parse_mode='HTML')#send message


@bot.handler(token,command="/button")#command handler
def test():
    global button

    button = {
                  "inline_keyboard": [
                  [{"text":f"вћЎпёЏ","callback_data":f"button1"}],    
                  [{"text":f"url button","url" : "https://pypi.org/project/bonfire-tg/" }]
                  ]
                  }#create button
    buttons(token,chat_id=msg.chat_id,button=button,text=f'Hello @{msg.author_username},is test bot')#send button




@bot.event(token)#update handler
def update():
     buttons = {
                  "inline_keyboard": [
                  [{"text":f"в¬…пёЏ","callback_data":f"button5"}]
                  ]
                  } #create button

     callback_edit(bot=token,data="button5",data_json=msg,text=f"Hello @{msg.callback_author_username},is test bot",button=button) #button click handler
     callback_edit(bot=token,data="button1",data_json=msg,text="button clicked !",button=buttons)

if __name__ == '__main__':
 while True:
  if bot.status(token) == "ok": #do not edit everything in startup
       bot.start_command(sys.modules[__name__])    
       bot.end_status(token)
 bot.start(token).start()

```

  
  </details>
  

    
   </details>

