Persistent cache implementation for httpx and httpcore
Project description
Hishel - An elegant HTTP Cache implementation for httpx and httpcore.
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 httpx while also enabling web cache.
- 🧠 Smart: Attempts to clearly implement RFC 9111, understands
Vary,Etag,Last-Modified,Cache-Control, andExpiresheaders, and handles response re-validation automatically. - ⚙️ Configurable: You have complete control over how the responses are stored and serialized.
- 📦 From the package:
- 🚀 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://hishel.com") # 0.4749558370003797s
client.get("https://hishel.com") # 0.002873589000046195s (~250x faster!)
or in asynchronous context
import hishel
async with hishel.AsyncCacheClient() as client:
await client.get("https://hishel.com")
await client.get("https://hishel.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://hishel.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://hishel.com")
pool.request("GET", "https://hishel.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
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.17 (6/11/2023)
- Fix
Last-Modifiedvalidation.
0.0.16 (25/10/2023)
- Add
install_cachefunction. (#95) - Add sqlite support. (#92)
- Move
ttlargument toBaseStorageclass. (#94)
0.0.14 (23/10/2023)
- Replace
AsyncResponseStreamwithAsyncCacheStream. (#86) - Add
must-understandresponse directive support. (#90)
0.0.13 (5/10/2023)
- Add support for Python 3.12. (#71)
- Fix connections releasing from the connection pool. (#83)
0.0.12 (8/9/2023)
- Add metadata into the response extensions. (#56)
0.0.11 (15/8/2023)
- Add support for request
cache-controldirectives. (#42) - Drop httpcore dependency. (#40)
- Support HTTP methods only if they are defined as cacheable. (#37)
0.0.10 (7/8/2023)
- Add Response metadata. (#33)
- Add API Reference documentation. (#30)
- Use stale responses only if the client is disconnected. (#28)
0.0.9 (1/8/2023)
- Expose Controller API. (#23)
0.0.8 (31/7/2023)
- Skip redis tests if the server was not found. (#16)
- Decrease sleep time for the storage ttl tests. (#18)
- Fail coverage under 100. (#19)
0.0.7 (30/7/2023)
- Add support for
Heuristic Freshness. (#11) - Change
Controller.cache_heuristicallytoController.allow_heuristics. (#12) - Handle import errors. (#13)
0.0.6 (29/7/2023)
- Fix
Varyheader validation. (#8) - Dump original requests with the responses. (#7)
0.0.5 (29/7/2023)
- Fix httpx response streaming.
0.0.4 (29/7/2023)
- Change
YamlSerializername toYAMLSerializer.
0.0.3 (28/7/2023)
- Add
from_cacheresponse extension. - Add
typing_extensionsinto the requirements.
0.0.2 (25/7/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
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 hishel-0.0.17.tar.gz.
File metadata
- Download URL: hishel-0.0.17.tar.gz
- Upload date:
- Size: 22.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.25.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d1e74e6530de4faf2e04b3a8783183f2be8b3d428607859681b7b92659f1d6c
|
|
| MD5 |
1f4ffb0d2788a91669d9a1b8c0a01514
|
|
| BLAKE2b-256 |
49c7b2ca6fb18c43ad214edb122d24d5f2478c80f1597176a7a6984b1a59e3f3
|
File details
Details for the file hishel-0.0.17-py3-none-any.whl.
File metadata
- Download URL: hishel-0.0.17-py3-none-any.whl
- Upload date:
- Size: 30.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.25.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ceb886e8f4bebc68b514350e9e32d22822ee1e487073508fb64489a898b8c11
|
|
| MD5 |
f488a4e49dcf8aa03832fb9d2a2b5410
|
|
| BLAKE2b-256 |
8d378c18ebd9c1971a90560ecd97863ae3e5b62f500379ce5807a4ac59baf2c8
|