Functional nano web-framework built on top of WebOb, routr and Jinja
Project description
Functional nano web-framework built on top of WebOb, routr and Jinja2. Works on Python 2.6 and higher (Python 3 supported as well).
Requirements
License
rororo library licensed under the terms of BSD License.
Installation
Sometimes in future rororo will added to PyPI, but for now you can install it from master tarball, like:
# pip install https://github.com/playpauseandstop/rororo/tarball/master#egg=rororo
For what reason?
Just to have little tool to fast creating WSGI applications. Little and easy tool if you know what I mean. Prove?
In [1]: from rororo import GET, create_app In [2]: from rororo.manager import runserver In [3]: view = lambda: 'Hello, world!' In [4]: app = create_app(routes=(GET('/', view), )) In [5]: runserver(app, autoreload=False) Starting server at http://0.0.0.0:8000/
More?
Coming soon…
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
rororo-0.1-alpha.tar.gz
(13.9 kB
view hashes)