bot-python icon indicating copy to clipboard operation
bot-python copied to clipboard

Bot API for Python

Results 31 bot-python issues
Sort by recently updated
recently updated
newest added

Flask-style dispatcher look pretty and simple. It reduces entry threshold for beginners. It makes code more clear and readable ``` python @bot.message_handler(filters) def function_name(message): bot.reply_to(message, "This is a message handler")...

Hi team from Russia, I was asking myself, how do I dev a bot like yours, which can ask user some questions, then listen to their answer, then finally prints...

When I send Ctrl+C / SIGTERM to running bot script I got such errors (signal should be send twice to completely exit): ``` Traceback (most recent call last): File "/usr/local/bin/icqbot.py",...

I wonder when will the support of Python version will increase? Python 3.6 is quite for the current libraries that everybody use.

Сценарий такой: 1) пишу функционал колбэка на нажатие кнопки 2) запускаю бота 3) использую кнопку 4) меняю функционал колбэка и перезапускаю бота 5) при использовании кнопки работает функционал пункта 1,...

Подскажите, можно ли как-то вытягивать ссылку на изображение из event. Изображение отправляют боту drag and drop или просто загружают через окно загрузки.

Hey I took an example from documentation: ``` from bot.bot import Bot from bot.handler import MessageHandler TOKEN = "" #your token here bot = Bot(token=TOKEN) def message_cb(bot, event): bot.send_text(chat_id=event.from_chat, text=event.text)...

2020. Where is async?

пробую отправить клавиатуру, как показано в примере: ``` if __name__ == "__main__": bot = Bot(token=TOKEN, name=NAME, version=VERSION, api_url_base=API_URL) bot.send_text(chat_id='746691278', text=U"helo\n\rworldaaa", inline_keyboard_markup="[{}]".format(json.dumps([ {"text": "Action 1", "url": "http://mail.ru"}, {"text": "Action 2", "callbackData":...

Hi, i istalled this library first by git clone and setup, but terminal wrote: no module named steptools. I install pip and go sudo apt install python-pip. There is no...

help wanted