Skip to content

Instantly share code, notes, and snippets.

View Twwy's full-sized avatar
🎈
Focusing

Twwy Twwy

🎈
Focusing
View GitHub Profile
@Twwy
Twwy / shell.md
Created February 26, 2015 08:20
shell命令集合

获取脚本当前执行的路径

path=$(cd "$(dirname "$0")"; pwd)
@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