from telegram.ext import Updater, CommandHandler

def start(bot, update):
	update.message.reply_text("Hello ! I'm a Bot\n")

updater = Updater('your-token')

updater.dispatcher.add_handler(CommandHandler('start', start))

updater.start_polling()
updater.idle()
