Skip to content

Instantly share code, notes, and snippets.

View Twwy's full-sized avatar
🎈
Focusing

Twwy Twwy

🎈
Focusing
View GitHub Profile
@Twwy
Twwy / async_flask.py
Created May 26, 2016 05:37 — forked from sergray/async_flask.py
Asynchronous requests in Flask with gevent
"""Asynchronous requests in Flask with gevent"""
from time import time
from flask import Flask, Response
from gevent.pywsgi import WSGIServer
from gevent import monkey
import requests