Skip to content
This repository has been archived by the owner on Oct 25, 2019. It is now read-only.

Latest commit

 

History

History
27 lines (17 loc) · 550 Bytes

README.rst

File metadata and controls

27 lines (17 loc) · 550 Bytes

Shake

A web framework mixed from the best ingredients (Werkzeug, Jinja2 and maybe SQLAlchemy, Babel, etc.)

It can be minimal like this:

from shake import Shake

app = Shake(__file__)

app.route('/', hello)
def hello(request):
    return 'Hello World!'

if __name__ == "__main__":
    app.run()

Or a full featured (yet configurable if needed) framework.


copyright:Lúcuma labs S.A.C.
license:MIT, see LICENSE for more details.