Skip to main content

Middleware for managing HTTP cache headers and client-side caching behavior.

Project description

Swarmauri Logo

PyPI - Downloads Hits PyPI - Python Version PyPI - License PyPI - swarmauri_middleware_cachecontrol


Swarmauri Middleware Cachecontrol

Middleware for managing HTTP cache headers and client-side caching behavior.

Features

  • Configurable max_age that controls how long clients may cache responses.
  • Toggle caching on or off at runtime with the enabled flag.
  • Adds Cache-Control, timestamp-based ETag, and Vary: Accept-Encoding headers to successful responses.
  • Inspects If-Modified-Since and If-None-Match request headers to short-circuit unchanged responses with 304 Not Modified.

Installation

Install the package with your preferred Python packaging tool:

pip install swarmauri_middleware_cachecontrol
poetry add swarmauri_middleware_cachecontrol
uv pip install swarmauri_middleware_cachecontrol

Usage

CacheControlMiddleware accepts two primary configuration options:

  • max_age: Maximum cache lifetime (in seconds) communicated to clients. Defaults to 3600.
  • enabled: When False, the middleware skips all cache headers and lets responses pass through untouched. Defaults to True.

When enabled, the middleware injects cache headers into outgoing responses and mirrors conditional request headers to return 304 Not Modified when the client already has fresh content. Integrate it with FastAPI or Starlette by instantiating the middleware once and delegating to its dispatch method from an @app.middleware("http") handler.

Example

The snippet below shows how to register the middleware with FastAPI and inspect the generated headers using TestClient:

from fastapi import FastAPI, Request
from fastapi.testclient import TestClient

from swarmauri_middleware_cachecontrol import CacheControlMiddleware

app = FastAPI()
cache_control = CacheControlMiddleware(max_age=60)


@app.middleware("http")
async def apply_cache_control(request: Request, call_next):
    return await cache_control.dispatch(request, call_next)


@app.get("/status")
def status() -> dict[str, str]:
    return {"state": "fresh"}


def main() -> None:
    client = TestClient(app)
    response = client.get("/status")
    response.raise_for_status()

    print("Cache-Control:", response.headers["Cache-Control"])
    print("ETag:", response.headers["ETag"])
    print("Vary:", response.headers["Vary"])
    print("Payload:", response.json())


if __name__ == "__main__":
    main()

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


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

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

File details

Details for the file swarmauri_middleware_cachecontrol-0.8.0.dev46.tar.gz.

File metadata

  • Download URL: swarmauri_middleware_cachecontrol-0.8.0.dev46.tar.gz
  • Upload date:
  • Size: 8.1 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

Hashes for swarmauri_middleware_cachecontrol-0.8.0.dev46.tar.gz
Algorithm Hash digest
SHA256 33ed4a7f05a6b3b63ad0b19167a741d4d6d7fb1eda57d77640324defa16dc150
MD5 d3548a024baafb594c8303994f1340e3
BLAKE2b-256 28984de5d2f1683a7ec661f24194a85b428d335acecfe8b1323075bbc8e5eb7b

See more details on using hashes here.

File details

Details for the file swarmauri_middleware_cachecontrol-0.8.0.dev46-py3-none-any.whl.

File metadata

  • Download URL: swarmauri_middleware_cachecontrol-0.8.0.dev46-py3-none-any.whl
  • Upload date:
  • Size: 9.3 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

Hashes for swarmauri_middleware_cachecontrol-0.8.0.dev46-py3-none-any.whl
Algorithm Hash digest
SHA256 ed13afba4becb14fc91067ca15283c403989f4d5cd03a4455e89c1d15d0fe81d
MD5 59e42635b98e933bd57af93d925f5508
BLAKE2b-256 f925ef2b816fea7105fb1f8795083c4a602f0ee1002e96d8dad5b42e0e44fc08

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