Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 222 Bytes

README.rst

File metadata and controls

16 lines (11 loc) · 222 Bytes

Shake

::

from shake import Shake, Rule

def hello(request):
return 'Hello World!'

urls = [Rule('/', hello),]

app = Shake(urls)

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