Skip to main content

Persistant cache implementation for httpx and httpcore

Project description

HTTPX

Hishel - An elegant HTTP Cache implementation for httpx and httpcore.

PyPI - Version PyPI - Python Version PyPI - License Codecov


Hishel (հիշել, remember) is a library that implements HTTP Caching for HTTPX and HTTP Core libraries in accordance with RFC 9111, the most recent caching specification.

Features

  • 💾 Persistence: Responses are cached in the persistent memory for later use.
  • 🤲 Compatibility: It is completely compatible with your existing transports or connection pools, whether they are default, custom, or provided by third-party libraries.
  • 🤗 Easy to use: You continue to use the httpx and httpcore interfaces. Can be integrated with no changes to the code.
  • 🧠 Smart: Attempts to clearly implement RFC 9111, understands Vary, Etag, Last-Modified, Cache-Control, and Expires headers, and handles response re-validation automatically.
  • ⚙️ Configurable: You have complete control over how the responses are stored and serialized, and there is built-in support for filesystem and redis backends.
  • 🚀 Very fast: Your requests will be even faster if there are no IO operations.

Documentation

Go through the Hishel documentation.

QuickStart

Install Hishel using pip:

$ pip install hishel

Let's begin with an example of a httpx client.

import hishel

with hishel.CacheClient() as client:
    client.get("https://www.github.com")
    client.get("https://www.github.com")  # takes from the cache (very fast!)

or in asynchronous context

import hishel

async with hishel.AsyncCacheClient() as client:
    await client.get("https://www.github.com")
    await client.get("https://www.github.com")  # takes from the cache

HTTPX and HTTP Core

Hishel also supports the transports of HTTPX and the connection pools of HTTP Core.

Hishel respects existing transports and connection pools and can therefore work on top of them, making hishel a very compatible and flexible library.

Transports example:

import httpx
import hishel

transport = httpx.HTTPTransport()
cache_transport = hishel.CacheTransport(transport=transport)

req = httpx.Request("GET", "https://www.github.com")

cache_transport.handle_request(req)
cache_transport.handle_request(req)  # takes from the cache

Connection Pool example:

import httpcore
import hishel

pool = hishel.CacheConnectionPool(pool=httpcore.ConnectionPool())

pool.request("GET", "https://www.github.com")
pool.request("GET", "https://www.github.com")  # takes from the cache

How and where are the responses saved?

The responses are stored by Hishel in storages. You have complete control over them; you can change storage or even write your own if necessary.

Contributing

Hishel is a powerful tool, but it is also a new project with potential flaws, so we welcome contributions!

You can open the pull request by following these instructions if you want to improve Hishel. 💓

  • Fork the project.
  • Make change.
  • Open the pull request.

Changelog

0.0.5 (7/29/2023)

  • Fix httpx response streaming.

0.0.4 (7/29/2023)

  • Change YamlSerializer name to YAMLSerializer.

0.0.3 (7/28/2023)

  • Add from_cache response extension.
  • Add typing_extensions into the requirements.

0.0.2 (7/25/2023)

  • Add redis support.
  • Make backends thread and task safe.
  • Add black as a new linter.
  • Add an expire time for cached responses.

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

hishel-0.0.5.tar.gz (15.4 kB view details)

Uploaded Source

Built Distribution

hishel-0.0.5-py3-none-any.whl (22.7 kB view details)

Uploaded Python 3

File details

Details for the file hishel-0.0.5.tar.gz.

File metadata

  • Download URL: hishel-0.0.5.tar.gz
  • Upload date:
  • Size: 15.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-httpx/0.24.1

File hashes

Hashes for hishel-0.0.5.tar.gz
Algorithm Hash digest
SHA256 e12809030691b45aca454ceaae8997bb8db04f98f365e74610f52575830772be
MD5 58919399c5c7ec6f43983a5b4a4569b8
BLAKE2b-256 9eaa444eaad9ac79e926d628257ee445a0f053f1cfdf0fdbcc83ac13f8e95537

See more details on using hashes here.

File details

Details for the file hishel-0.0.5-py3-none-any.whl.

File metadata

  • Download URL: hishel-0.0.5-py3-none-any.whl
  • Upload date:
  • Size: 22.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-httpx/0.24.1

File hashes

Hashes for hishel-0.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 4c0519eefbde1f5ce240a56b377c3a56de461fd7f21e99ac8437b5c85b652a56
MD5 d2cca0f286a3751b323eb96e52630df3
BLAKE2b-256 0b8a25ef74b4da2d6fbadbe529d61f9095aa55e6394beabc9385cf4c3b452bdd

See more details on using hashes here.

Supported by

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