markup = types.ReplyKeyboardRemove()
tb.send_message(chat_id, message, reply_markup=markup)
from telethon import TelegramClient
client = TelegramClient(name, api_id, api_hash)
async def main():
await client.send_message(<chat>, 'Hello world!')
with client:
client.loop.run_until_complete(main())