Gzip compression middleware for Swarmauri
Project description
swarmauri_middleware_gzipcompression
Middleware for adding gzip compression to FastAPI responses.
Purpose
This package provides a middleware that automatically compresses outgoing responses using gzip encoding. It ensures that responses are only compressed when supported by the client and when the content type is appropriate for compression.
Installation
pip
pip install swarmauri_middleware_gzipcompression
Poetry
poetry add swarmauri_middleware_gzipcompression
uv
uv pip install swarmauri_middleware_gzipcompression
How it works
The middleware mirrors FastAPI's BaseHTTPMiddleware contract and can be plugged into an application using the standard @app.middleware("http") hook. Compression is only applied when all of the following are true:
- The downstream component returns a
fastapi.Response(non-Responseresults pass through unchanged). - The response has a compressible media type such as
application/jsonor anytext/*content type. - The client opts into compression by sending an
Accept-Encodingheader that includesgzip. - The response is not already marked as gzip encoded.
Example
The snippet below simulates FastAPI's middleware pipeline and demonstrates how gzip compression is applied when the client opts in to receive gzip-encoded responses.
import asyncio
import gzip
from fastapi import Request, Response
from swarmauri_middleware_gzipcompression import GzipCompressionMiddleware
middleware = GzipCompressionMiddleware()
async def _handle_request() -> None:
scope = {
"type": "http",
"method": "GET",
"headers": [(b"accept-encoding", b"gzip")],
}
async def receive() -> dict:
return {"type": "http.request", "body": b""}
request = Request(scope, receive=receive)
async def call_next(_: Request) -> Response:
return Response(
content='{"message":"Hello, gzip!"}',
media_type="application/json",
)
response = await middleware.dispatch(request, call_next)
assert response.headers.get("Content-Encoding") == "gzip"
body = gzip.decompress(response.body).decode("utf-8")
assert body == '{"message":"Hello, gzip!"}'
def run_example() -> None:
asyncio.run(_handle_request())
if __name__ == "__main__":
run_example()
Want to help?
If you want to contribute to swarmauri-sdk, read up on our guidelines for contributing that will help you get started.
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 swarmauri_middleware_gzipcompression-0.8.0.dev43.tar.gz.
File metadata
- Download URL: swarmauri_middleware_gzipcompression-0.8.0.dev43.tar.gz
- Upload date:
- Size: 7.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39c732c316f7c560c260bd34bae6d70752ba2306a0756614ba71ccb8c61372a3
|
|
| MD5 |
afa91633f2c71c98fd1d8ac6c47cef7a
|
|
| BLAKE2b-256 |
674be48be08cb3e8d4cca81b82ef349bdecbc6c58640a0dfbb1212437ce8d00f
|
File details
Details for the file swarmauri_middleware_gzipcompression-0.8.0.dev43-py3-none-any.whl.
File metadata
- Download URL: swarmauri_middleware_gzipcompression-0.8.0.dev43-py3-none-any.whl
- Upload date:
- Size: 9.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
abeecafcc1cb44d64d2ffe4c7301fbeb131708049d91feba9110cc6e6bca9f79
|
|
| MD5 |
db3a569c5e060029a151d1f2d8529a93
|
|
| BLAKE2b-256 |
7305540d77c2f85c4d66ae10f051a79a78e37dea6dacb16fc19695ac3692b1bf
|