Falcon-REST-API-Pattern icon indicating copy to clipboard operation
Falcon-REST-API-Pattern copied to clipboard

Massively scalable RESTFul API design with Falcon and PyPy

Results 1 Falcon-REST-API-Pattern issues
Sort by recently updated
recently updated
newest added

Currently I am doing the following: ``` path = os.environ.get('DATABASE_PATH') if path==None: print "SET DATABASE_PATH, using --env key=value" sys.exit() api = falcon.API(middleware=[cors.middleware]) ``` And when I run, I run as...