Advertisement
Guest User

Untitled

a guest
Jun 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. #send
  2. button=[["text01","text02"],["text03","text04]]
  3. bot.api.call('sendMessage', {
  4. 'chat_id': u.id,
  5. 'text': cm.messageText(),
  6. "disable_web_page_preview": True,
  7. 'parse_mode': 'HTML',
  8. 'reply_markup': json.dumps({"keyboard": button})
  9. })
  10.  
  11. #remove keyboard
  12. bot.api.call('sendMessage', {
  13. 'chat_id': chat.id,
  14. 'text': text,
  15. 'parse_mode': 'HTML',
  16. 'reply_markup':
  17. json.dumps(
  18. {"remove_keyboard": True}
  19. )
  20. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement