A simple web framework built for learning purpose.
Project description
sixi-web 
A simple web framework built for learning purpose.
Installation
pip install sixi-web
Usage
-
Import the Sixi web api instance to route. If you’ve used Flask before, you'll find it easy.
# app.py from sixi_web import API, Middleware app = API(templates_dir="templates", static_dir="static") @app.route("/") @app.route("/home") def index(req, resp): resp.text = "Hello world" @app.route("/about") def about(req, resp): resp.text = "A vegetable dog passing by." @app.route("/hello/{name}") def hello(req, resp, name): resp.text = f"Hello, {name}" @app.route("/add/{a:d}/{b:d}") def add(req, resp, a, b): result = int(a) + int(b) resp.text = f"{a} + {b} = {result}" @app.route("/todo") class TodoResource: def get(self, req, resp): resp.text = "Get a task" def post(self, req, resp): resp.text = "Create a task" @app.route("/html") def html(req, resp): resp.html = app.template("index.html", context=dict(title="hi", name="kada")) @app.route("/text") def text(req, resp): resp.text = "This is plain text" @app.route("/json") def json(req, resp): resp.json = dict(content="this is json") @app.error_handler(AttributeError) def attributeerror_handler(req, resp, e): resp.text = f"I got it, {e}" class PrintingMiddleware(Middleware): def process_request(self, req): print(f"request: {req}\n\n") def process_response(self, req, resp): print(f"response: {resp}\n\n") app.add_middleware(PrintingMiddleware)
-
Run with any WSGI application server such as Gunicorn.
gunicorn app:app
Roadmap
Request handlerRoutingClass based viewUnit testsCITemplate supportCustom exception handlerStatic files servingMiddlewareCustom responsePypiORM- CD
- Authentication
- Demo app
- Cli
- Session and Cookies
Contributing
Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
License
Distributed under the MIT License. See LICENSE
for more information.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
sixi-web-0.1.4.tar.gz
(7.6 kB
view hashes)