Etherll / TinyAPI

🔹 A fast & easy and lightweight WSGI Framework for Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

🔹 A fast & easy and lightweight WSGI Framework for Python

License:MIT License


Languages

Language:Python 100.0%