Skip to main content

SimpleAPI is a minimalistic, unopinionated web framework for Python, inspired by FastAPI & Flask

Project description

SimpleAPI

SimpleAPI is a minimalistic, unopinionated web framework for Python, inspired by FastAPI & Flask.

This is a hobby project made for educational purposes because I want to try learning writing a web server framework.

So, this is obviously not meant for production environments.

Development of SimpleAPI is tracked at this GitHub project.

An example of using SimpleAPI:

from simpleapi import SimpleAPI, Request, JSONResponse

app = SimpleAPI()

@app.get("/hello")
def hello(request: Request):
    """Returns hello world in JSON format"""
    return JSONResponse(message={"hello": "world"})

app.run(port=8000)

More examples can be found in /examples

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

simplestapi-0.0.1.tar.gz (6.3 kB view hashes)

Uploaded Source

Built Distribution

simplestapi-0.0.1-py3-none-any.whl (7.8 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