matheuspoleza / hurry

Python micro web framework with template engines support

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

hurry

A flexible and quickly Python Micro Web Framework

Status

Work in progress

What is different?

  • Request and response manipulation
  • Flexible template engine, with many supports
  • Asynchronous requests support

Getting started

pip install hurry
from hurry.app import Hurry

app = Hurry()

@app.get('/hello')
def hello(req, res):
  res.send('hello, world!')
  
if __name__ == '__main__':
  app.run()

License

MIT

About

Python micro web framework with template engines support

License:Other


Languages

Language:Python 100.0%