We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi! So I was trying to make the bot answer with a shrug
here's my views.py:
views.py
from bottery.message import render async def pong(message): return 'pong' async def shrug(message): return '¯\_(ツ)_/¯'
and my handlers.py:
handlers.py
from bottery import handlers import views msghandlers = [ handlers.message('ping', views.pong), handlers.message('/shrug', views.shrug) ]
it also doesn't work with r'¯\_(ツ)_/¯'
r'¯\_(ツ)_/¯'
any clues?
The text was updated successfully, but these errors were encountered:
Error from Telegram API: Bad Request: can't parse entities: Can't find end of the entity starting at byte offset xxx
Bad Request: can't parse entities: Can't find end of the entity starting at byte offset xxx
Sorry, something went wrong.
No branches or pull requests
Hi! So I was trying to make the bot answer with a shrug
here's my
views.py
:and my
handlers.py
:it also doesn't work with
r'¯\_(ツ)_/¯'
any clues?
The text was updated successfully, but these errors were encountered: