TinyAPI
A fast and lightweight WSGI Framework for Python.
Quick Example
import tinyapi
app = tinyapi.TinyAPI()
@app.rule('/', methods=['GET'])
def index():
return 'Hello World!'
@app.error(404)
def not_found():
return 'Not found f'
if __name__ == "__main__":
app.run()
Todo
- Add Session Support
- Add Docs to the box
- Exception
- Datastructures
- Testing thing