Skip to main content

ZipLine

ZipLine is a simple asyncronous ASGI web framework for Python. It is designed to be simple and easy to use, while still being powerful and flexible.

Quick Start

from zipline import ZipLine

app = ZipLine()

@app.route("/")
async def home(request):
    planet = request.query.get("planet")
    return f"Hello, {planet}!"
uvicorn my_awesome_project:app
curl http://localhost:8000/?planet=Earth

Handlers

a ZipLine handler is a simple async function that takes a request object and returns a response, or throws an exception.

A response can be bytes, str, dict, or the ZipeLine Response object.

If a dict is returned, it will be serialized to JSON.

If an Exception is thrown, it will be caught and handled by the framework, returning a basic error response.

Middleware

Zipline middleware is inspired by Express.js. Any number of handler functions can be added to the middleware stack.

Each middleware function is just another ZipLine Handler.

Middleware functions are called in the order they are added to the stack, and pass along their context to the next handler.

The first handler in the stack to return something other than a Request object (including Exception) will short-circuit the stack and return the response.

from zipline import ZipLine, middleware


# middleware functions
def auth_middleware(request):
    if request.headers.get("Authorization") == "Bearer 1234":
        is_authed = True
    else:
        is_authed = False
    return request, { "is_authed": is_authed }

def auth_guard(request, ctx):
    if not ctx.get("is_authed"):
        raise Exception("Unauthorized")


app = ZipLine()

# apply middleware to all routes
app.middleware(auth_middleware)

@app.get("/profile")
@middleware([auth_guard])
async def user_profile(request):
    return "Hello, World!"

Dependency Injection

Like with middeleware, ZipLine supports dependency injection at the route, router, or application level. Dependencies are passed to the handler function as keyword arguments.

from zipline import ZipLine, inject

class LoggingService:
    def log_request(self, request):
        print(f"Request to {request.url}")

class UserService:
    def __init__(self):
        self.connection = "Connected to database"

    def get_user():
        return "User"

app = ZipLine()

# available to all routes
app.inject(LoggingService)

@app.route("/")
@inject(UserService, name="user_service")
async def home(request, user_service: UserService, logger: LoggingService):
    logger.log_request(request)
    return user_service.get_user()

Routing

Like Express.js, ZipLine supports multiple, nested routers.

from zipline import ZipLine, Router

app = ZipLine()

user_router = Router("/user")

@user_router.get("/:id")
async def get_user(request):
    return f"User {request.path_params.get('id')}"

app.router(user_router)

Static Files

ZipLine can serve static files from a directory.

from zipline import ZipLine


app = ZipLine()

# path_prefix is optional; defaults to "/static"
app.static("test/mocks/static", path_prefix="/my_static_url")

HTML Templates

ZipLine can render HTML templates using Jinja2.

The jinja decorator takes a Jinja2 Environment object and a template name to be rendered by the handler. Rather than a regular response, the handler should return a dictionary of context variables to be passed to the template.

from jinja2 import Environment, PackageLoader, select_autoescape
from ziplineio. import ZipLine
from ziplineio.html.jinja import jinja

env = Environment(loader=PackageLoader("myapp"), autoescape=select_autoescape())

app = ZipLine()
app.static("static_files")

@app.get("/")
@jinja(env, "home.html")
def home(req):
    return {"message": "Hello, world!"}

Download files

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

Source Distribution

ziplineio-0.1.9.tar.gz (15.9 kB view details)

Uploaded Source

Built Distribution

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

ziplineio-0.1.9-py3-none-any.whl (14.6 kB view details)

Uploaded Python 3

File details

Details for the file ziplineio-0.1.9.tar.gz.

File metadata

  • Download URL: ziplineio-0.1.9.tar.gz
  • Upload date:
  • Size: 15.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for ziplineio-0.1.9.tar.gz
Algorithm Hash digest
SHA256 ca5e02d19cc7df59769d727c75f1e94c110c22d8d843ae30739166b8f9d75c3d
MD5 f28c8a08b9975f2d8caa18858b29de2b
BLAKE2b-256 979e51179107d13bda798329ce80f631d2e7f839ea777c5d115c790f698b0590

See more details on using hashes here.

File details

Details for the file ziplineio-0.1.9-py3-none-any.whl.

File metadata

  • Download URL: ziplineio-0.1.9-py3-none-any.whl
  • Upload date:
  • Size: 14.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for ziplineio-0.1.9-py3-none-any.whl
Algorithm Hash digest
SHA256 9b41746820ca0e789e9716951f02a3552cb8ef2052d7ca4b2478f28fb621378a
MD5 81d11e7fd58ba51f54bcabd35e4fc50a
BLAKE2b-256 6b47a6af77be7bf218d2e0f6cc19e4fc2eaee6fc23a09c2100eee5103103fbb2

See more details on using hashes here.

Release history Release notifications | RSS feed

0.1.16

2 files

0.1.15

2 files

0.1.14

2 files

0.1.13

2 files

0.1.12

2 files

0.1.11

2 files

0.1.10

2 files

This release

0.1.9 This release

2 files

0.1.8

2 files

0.1.7

2 files

0.1.6

2 files

0.1.5

2 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

1 file

0.1

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page