Skip to content

mojurasu/lazybot

develop
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 

lazybot

A simple class that can call arbitrary methods and make a request to Telegrams bot api.

But why ?

While writing my userbot I wanted a easy way to make calls to the bot api without needing a full blown lib with handlers etc..

Where are the docs ?

Use the Telegram Docs and the following example as base.

import lazybot
bot = lazybot.Bot('TOKEN')
# you can use snake case
bot.send_message(chat_id=123456, text='Text')

# or camelCase
bot.sendMessage(chat_id=123456, text='Text')

Installation

pip install lazybot

About

No description or website provided.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages