Skip to content

matheuspoleza/hurry

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Resources

License

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages