Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

10 Commits

Repository files navigation

Apper

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.

Mini-Framework Mini-Example

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/.

hello.py

fromapperimportget@get("<name>")defhello(req, resp, name):
return"Hello, %s!"%name@getdefhello_world(req, resp):
returnhello_name(req, resp, "world")

app.py

fromapperimportApperimporthelloapp=Apper({
'/hello': hello
})

Serve app with your favorite WSGI server, then go to /hello/insert_name_here for a pleasant greeting.

About

Yet another Python mini-framework (pending a real name)

Resources

Stars

2 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages