Skip to main content

A lightweight ASGI framework

Project description

bareASGI

A lightweight Python ASGI web server framework (read the docs).

Overview

This is a bare ASGI web server framework. The goal is to provide a minimal implementation, with other facilities (serving static files, CORS, sessions, etc.) being implemented by optional packages.

The framework is targeted at micro-services which require a light footprint (in a container for example), or as a base for larger frameworks.

Python 3.8+ is required.

Optional Packages

Functionality

The framework provides the basic functionality required for developing a web application, including:

  • Http,
  • WebSockets,
  • Routing,
  • Lifecycle,
  • Middleware

Simple Server

Here is a simple server with a request handler that returns some text.

import uvicorn
from bareasgi import Application, HttpRequest, HttpResponse, text_writer

async def example_handler(request: HttpRequest) -> HttpResponse:
    return HttpResponse(
        200,
        [(b'content-type', b'text/plain')],
        text_writer('This is not a test')
    )

app = Application()
app.http_router.add({'GET'}, '/', example_handler)

uvicorn.run(app, port=9009)

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

bareasgi-4.4.0a1.tar.gz (22.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

bareasgi-4.4.0a1-py3-none-any.whl (30.9 kB view details)

Uploaded Python 3

File details

Details for the file bareasgi-4.4.0a1.tar.gz.

File metadata

  • Download URL: bareasgi-4.4.0a1.tar.gz
  • Upload date:
  • Size: 22.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.3.2 CPython/3.10.6 Linux/5.19.0-41-generic

File hashes

Hashes for bareasgi-4.4.0a1.tar.gz
Algorithm Hash digest
SHA256 cde41a6fb1726ba04f3505e27d3a70b96a5a1f2844f22a12abf3f0a21c15e481
MD5 4f765c3be4e1be1e120b5b423475a7b9
BLAKE2b-256 d7bd665ee4f8bf790bd8f60f45f6191076ae26df81061a8c483e8560496b2f03

See more details on using hashes here.

File details

Details for the file bareasgi-4.4.0a1-py3-none-any.whl.

File metadata

  • Download URL: bareasgi-4.4.0a1-py3-none-any.whl
  • Upload date:
  • Size: 30.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.3.2 CPython/3.10.6 Linux/5.19.0-41-generic

File hashes

Hashes for bareasgi-4.4.0a1-py3-none-any.whl
Algorithm Hash digest
SHA256 da8bfbc5223c8875ce715e92ae1255e21c0d2c1982d617f096dce6c07605b08d
MD5 9f1d42746445436f96b364f1f9b0e5c3
BLAKE2b-256 9ba03a29733d45da20372ecc2a0861d3df7bb4b2115211b871830e8b5b0549dc

See more details on using hashes here.

Supported by

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