Apper (name temporary) is a Python WSGI mini-framework designed for quick development with minimal magic.
The primary encapsulation unit is a Python module: Create functions using the provided dectorators in a module, then create an Apper instance, passing it a dictionary of the form path_prefix -> module.
Apper's only dependency is WebOb, and can be installed with pip install webob.
For more examples, check out the examples/ dir, or for an insta-demo, run python -m examples.simple.main and go to http://localhost:8080/.
fromapperimportget@get("<name>")defhello(req, resp, name):
return"Hello, %s!"%name@getdefhello_world(req, resp):
returnhello_name(req, resp, "world")fromapperimportApperimporthelloapp=Apper({
'/hello': hello
})Serve app with your favorite WSGI server, then go to /hello/insert_name_here for a pleasant greeting.