Skip to content

Instantly share code, notes, and snippets.

View mosessoh's full-sized avatar

Moses Soh mosessoh

View GitHub Profile
@mosessoh
mosessoh / server.py
Last active June 20, 2018 10:39
Barebones Flask app for Telegram chatbot
import requests
from flask import Flask, request
app = Flask(__name__)
bot_token = <your-bot-token>
def get_url(method):
return "https://api.telegram.org/bot{}/{}".format(bot_token,method)