Python library for https://karboai.com
Project description
KarboAI
Python library for KarboAI bot development.
Install
pip install karboai
Usage
from karboai import KarboAI, Router, bold
karbo = KarboAI(token="your-token", id="your-bot-id", enable_logging=True)
router = Router()
@router.command("/start")
async def start(ctx):
await karbo.text(ctx.message.chat_id, bold("Welcome!"))
@router.on("message")
async def echo(ctx):
await karbo.text(ctx.message.chat_id, ctx.message.content)
karbo.bind(router)
karbo.attach()
API
| Method | Description |
|---|---|
me() |
Bot info |
text(chat_id, content, reply_message_id?) |
Send text |
image(chat_id, images, reply_message_id?) |
Send images |
upload(buffer, file_name?) |
Upload image, returns URL |
message(chat_id, message_id) |
Get message |
members(chat_id, limit?, offset?) |
Chat members |
user(user_id) |
User info |
leave(chat_id) |
Leave chat |
kick(chat_id, user_id) |
Kick user |
attach(callback?) |
Connect to WebSocket |
bind(*routers) |
Bind routers |
Events
message, join, leave, voiceStart, voiceEnd, sticker
Text formatting
bold(), italic(), centralize(), code(), strikethrough(), underline(), hyperlink(text, url)
Error handling
from karboai import KarboError
try:
await karbo.me()
except KarboError as e:
print(e.status_code, e.name, e)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
karboai-1.0.1.tar.gz
(6.7 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file karboai-1.0.1.tar.gz.
File metadata
- Download URL: karboai-1.0.1.tar.gz
- Upload date:
- Size: 6.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b21e6b41ffedbd56e56efe2e628659221a6fc678b66cac6449cc6794a9cffbd
|
|
| MD5 |
0371b8eb1e942861878f995f398e4a46
|
|
| BLAKE2b-256 |
6597bdcd20bf383ef1aee040b8a4ca0bdaaa8a3316bcc1e10db64adfaf66db3f
|
File details
Details for the file karboai-1.0.1-py3-none-any.whl.
File metadata
- Download URL: karboai-1.0.1-py3-none-any.whl
- Upload date:
- Size: 8.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f9c482f706e8f461ecf9cae176ff0536ee8a67b3307b7b793b68e7c1901b732
|
|
| MD5 |
368194e651c7e47185f9ab1f25c8c614
|
|
| BLAKE2b-256 |
cbe39abb6e945c9965b6fefb257d8d9e288c1ef81fb50d53109de14f1c07d077
|