A lightweight async Python web framework with batteries included.
Project description
A light weight Python async framework with batteries included
import dyne
from dyne.ext.auth import authenticate, BasicAuth
from dyne.ext.io.pydantic import input, output, expect
from dyne.ext.openapi import OpenAPI
app = dyne.App()
db = Alchemical(app)
api = OpenAPI(app)
basic_auth = BasicAuth()
@api.route("/book", methods=["POST"])
@authenticate(basic_auth, role="admin")
@input(BookCreateSchema, location="form")
@output(BookSchema, status_code=201)
@expect({401: "Unauthorized", 400: "Invalid file format"})
@db.transaction
async def create_book(req, resp, *, data):
"""
Create a new Book
---
This endpoint allows admins to upload a book cover and metadata.
"""
image = data.pop("image")
await image.asave(f"uploads/{image.filename}") # image is already validated for extension and size.
book = await Book.create(**data, cover=image.filename)
resp.obj = book
Dyne is a modern async framework for APIs and applications, featuring built-in authentication, validation & serialization (Pydantic & Marshmallow), automatic OpenAPI, GraphQL support (Strawberry & Graphene), and async SQLAlchemy integration via Alchemical all with minimal first class configuration.
It delivers a production-ready ASGI foundation out of the box. It features an integrated static file server powered by (WhiteNoise <http://whitenoise.evans.io/en/stable/>_), Jinja2 templating for dynamic rendering, and a high-performance uvloop-based webserver—all optimized with automatic Gzip compression for reduced latency.
Documentation
See the documentation, for more details on features available in dyne.
Installation
Dyne uses optional dependencies (extras) to keep the core package lightweight.
This allows you to install only the features you need for your specific project.
Core Installation
To install the minimal ASGI core:
pip install dyne
Installing Specific Feature Sets
Choose the bundle that fits your technology stack. Note that for most shells (like Zsh on macOS), you should wrap the package name in quotes to handle the brackets correctly.
Note: The use of brackets
[]is required.
1. OpenAPI + (Request Validation & Response Serialization)
Enable automated OpenAPI (Swagger) documentation, request validation and response serialization using your preferred schema library:
With Pydantic
pip install "dyne[openapi_pydantic]"
With Marshmallow
pip install "dyne[openapi_marshmallow]"
2. GraphQL Engines
Integrate a native GraphQL interface and the GraphiQL IDE:
With Strawberry
pip install "dyne[graphql_strawberry]"
With Graphene
pip install "dyne[graphql_graphene]"
3. Database SQLAlchemy with Alchemical
Database SQLAlchemy support with Alchemical
pip install "dyne[sqlalchemy]"
4. Full Installation
To install all available features, including:
- Both GraphQL engines
- SQLAlchemy (Alchemical)
- Both serialization engines
- OpenAPI support
- HTTP client helpers
pip install "dyne[full]"
The Basic Idea
The primary concept here is to bring the niceties that are brought forth from both Flask and Falcon and unify them into a single framework, along with some new ideas I have. I also wanted to take some of the API primitives that are instilled in the Requests library and put them into a web framework. So, you'll find a lot of parallels here with Requests.
- Setting
resp.contentsends back bytes. - Setting
resp.textsends back unicode, while settingresp.htmlsends back HTML. - Setting
resp.mediasends back JSON/YAML (.text/.html/.contentoverride this). - Setting
resp.objdeserializes SQLAlchemy object(s) using Pydantic or Marshmallow schemas - Case-insensitive
req.headersdict (from Requests directly). resp.status_code,req.method,req.url, and other familiar friends.
Ideas
-
A built in testing client that uses the actual Requests you know and love.
-
A Pleasant Application Experience: Designed for developer happiness with a clean, intuitive, and consistent API.
-
Native ASGI Foundation: Built on the
ASGI <https://asgi.readthedocs.io>_ standard for high-performance, fully asynchronous applications. -
Expressive Routing: Declare routes using familiar
f-string syntax <https://docs.python.org/3/whatsnew/3.6.html#pep-498-formatted-string-literals>_, improving readability and maintainability. -
First-Class Configuration: Strongly typed, auto-casted configuration with
.envauto-discovery, environment variable overrides, and validation at startup. -
Database Integration: First-class
SQLAlchemysupport powered byAlchemical, providing clean session management, async-friendly patterns, and declarative configuration. -
Seamless API Documentation: Fully self-generated
OpenAPIdocumentation with an interactive UI and native support for bothPydanticandMarshmallowschemas. -
Flexible View Layer: Support for function-based or class-based views (without mandatory inheritance) and a mutable response object that simplifies response handling.
-
GraphQL Support: Native integration with
StrawberryandGraphene, includingGraphiQLfor interactive schema exploration. -
Webhooks & Async Events: First-class webhook definition and documentation via the
@webhookdecorator, enabling clearly defined outbound callbacks and event-driven workflows. -
Request & Response Lifecycle: Powerful decorators such as
@inputfor validation,@outputfor serialization, and@expectfor enforcing headers, cookies, and request metadata. -
Bidirectional Communication: Built-in support for
WebSocketsalongside traditional HTTP and GraphQL endpoints. -
Background Tasks: Easily offload long-running or blocking work using a built-in
ThreadPoolExecutor. -
Extensible Architecture: Mount any ASGI-compatible application at a subroute and serve single-page applications (SPAs) natively.
-
Integrated Security: First-class authentication support for
BasicAuth,TokenAuth, andDigestAuth. -
Advanced File Uploads: Robust file handling via a configurable
FileField, enabling seamless binary data validation and storage integration for bothPydanticandMarshmallowschemas.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dyne-2.0.2.tar.gz.
File metadata
- Download URL: dyne-2.0.2.tar.gz
- Upload date:
- Size: 9.5 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e0d37727cd3e6d0d9ef441e6425464a383acbcbc83c69ffccdba747733b64752
|
|
| MD5 |
1385ed218cea997b6695d1d4818cad9f
|
|
| BLAKE2b-256 |
2237cfe74b7b3ae686fd3b32a2a437109e73ca36b67f1f550eda70f4279ec10c
|
Provenance
The following attestation bundles were made for dyne-2.0.2.tar.gz:
Publisher:
release.yml on tabotkevin/dyne
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
dyne-2.0.2.tar.gz -
Subject digest:
e0d37727cd3e6d0d9ef441e6425464a383acbcbc83c69ffccdba747733b64752 - Sigstore transparency entry: 845806728
- Sigstore integration time:
-
Permalink:
tabotkevin/dyne@eec8a407de8688325134f83f312ff25f99c6da74 -
Branch / Tag:
refs/tags/v2.0.2 - Owner: https://github.com/tabotkevin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@eec8a407de8688325134f83f312ff25f99c6da74 -
Trigger Event:
release
-
Statement type:
File details
Details for the file dyne-2.0.2-py3-none-any.whl.
File metadata
- Download URL: dyne-2.0.2-py3-none-any.whl
- Upload date:
- Size: 55.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b0c815663c8266d6415997412495bf33987b79c9ea642f22cd661c88aa9ccdb
|
|
| MD5 |
e516f7143ac368be784423b3fcc0ecaf
|
|
| BLAKE2b-256 |
b578905bfed92fa322f1eeb2401da7f5ada97569a714f38cded67bb8fab242ec
|
Provenance
The following attestation bundles were made for dyne-2.0.2-py3-none-any.whl:
Publisher:
release.yml on tabotkevin/dyne
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
dyne-2.0.2-py3-none-any.whl -
Subject digest:
8b0c815663c8266d6415997412495bf33987b79c9ea642f22cd661c88aa9ccdb - Sigstore transparency entry: 845806742
- Sigstore integration time:
-
Permalink:
tabotkevin/dyne@eec8a407de8688325134f83f312ff25f99c6da74 -
Branch / Tag:
refs/tags/v2.0.2 - Owner: https://github.com/tabotkevin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@eec8a407de8688325134f83f312ff25f99c6da74 -
Trigger Event:
release
-
Statement type: