Skip to main content

Python Lightweight Framework

Project description

A Python lightweight and fast framework for REST APIs

To get started: pip install dorton

With function based handlers

from dorton.app import App

app = App()

@app.route("/home")
def home(request):
    return {"ok": True}

Use gunicorn to get the server started with the command: gunicorn init:app --bind=127.0.0.1:8000 --reload

You can also return a custom response or pass a parameter to the url

app = App()

class CustomResponse:
    def __init__(self, name) -> None:
        self.name = name

@app.get("/get/{name}")
def get_name(request, name):
    return CustomResponse(name)

You can use a class based handlers:

from dorton.app import App
from dorton.http.response import APIResponse
from dorton.http.enums import HttpStatusCode

app = App()

@app.route("/class-based")
class ClassBasedController:
    def get(self, request):
        return APIResponse(content={"ok": "get worked"}, status_code=HttpStatusCode.ACCEPTED)

    def post(self, request):
        return APIResponse(content={"ok": "post worked"}, status_code=HttpStatusCode.OK)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Dorton-0.0.1.1.tar.gz (3.7 kB view hashes)

Uploaded Source

Built Distribution

Dorton-0.0.1.1-py3-none-any.whl (4.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page