hishel 0.1.5__py3-none-any.whl → 1.0.0.dev1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. hishel/__init__.py +55 -53
  2. hishel/{beta/_async_cache.py → _async_cache.py} +3 -3
  3. hishel/{beta → _core}/__init__.py +6 -6
  4. hishel/_core/_async/_storages/_sqlite.py +457 -0
  5. hishel/{beta/_core → _core}/_base/_storages/_base.py +1 -1
  6. hishel/{beta/_core → _core}/_base/_storages/_packing.py +5 -5
  7. hishel/{beta/_core → _core}/_spec.py +89 -2
  8. hishel/_core/_sync/_storages/_sqlite.py +457 -0
  9. hishel/{beta/_core → _core}/models.py +1 -1
  10. hishel/{beta/_sync_cache.py → _sync_cache.py} +3 -3
  11. hishel/_utils.py +1 -241
  12. hishel/{beta/httpx.py → httpx.py} +15 -8
  13. hishel/{beta/requests.py → requests.py} +5 -5
  14. hishel-1.0.0.dev1.dist-info/METADATA +298 -0
  15. hishel-1.0.0.dev1.dist-info/RECORD +19 -0
  16. hishel/_async/__init__.py +0 -5
  17. hishel/_async/_client.py +0 -30
  18. hishel/_async/_mock.py +0 -43
  19. hishel/_async/_pool.py +0 -201
  20. hishel/_async/_storages.py +0 -768
  21. hishel/_async/_transports.py +0 -282
  22. hishel/_controller.py +0 -581
  23. hishel/_exceptions.py +0 -10
  24. hishel/_files.py +0 -54
  25. hishel/_headers.py +0 -215
  26. hishel/_lfu_cache.py +0 -71
  27. hishel/_lmdb_types_.pyi +0 -53
  28. hishel/_s3.py +0 -122
  29. hishel/_serializers.py +0 -329
  30. hishel/_sync/__init__.py +0 -5
  31. hishel/_sync/_client.py +0 -30
  32. hishel/_sync/_mock.py +0 -43
  33. hishel/_sync/_pool.py +0 -201
  34. hishel/_sync/_storages.py +0 -768
  35. hishel/_sync/_transports.py +0 -282
  36. hishel/_synchronization.py +0 -37
  37. hishel/beta/_core/__init__.py +0 -0
  38. hishel/beta/_core/_async/_storages/_sqlite.py +0 -411
  39. hishel/beta/_core/_sync/_storages/_sqlite.py +0 -411
  40. hishel-0.1.5.dist-info/METADATA +0 -258
  41. hishel-0.1.5.dist-info/RECORD +0 -41
  42. /hishel/{beta/_core → _core}/_headers.py +0 -0
  43. {hishel-0.1.5.dist-info → hishel-1.0.0.dev1.dist-info}/WHEEL +0 -0
  44. {hishel-0.1.5.dist-info → hishel-1.0.0.dev1.dist-info}/licenses/LICENSE +0 -0
hishel/__init__.py CHANGED
@@ -1,57 +1,59 @@
1
- import httpx
2
-
3
- from ._async import *
4
- from ._controller import *
5
- from ._exceptions import *
6
- from ._headers import *
7
- from ._serializers import *
8
- from ._sync import *
9
- from ._lfu_cache import *
1
+ from hishel._core._async._storages._sqlite import AsyncSqliteStorage
2
+ from hishel._core._base._storages._base import (
3
+ AsyncBaseStorage as AsyncBaseStorage,
4
+ SyncBaseStorage as SyncBaseStorage,
5
+ )
6
+ from hishel._core._headers import Headers as Headers
7
+ from hishel._core._spec import (
8
+ AnyState as AnyState,
9
+ CacheMiss as CacheMiss,
10
+ CacheOptions as CacheOptions,
11
+ CouldNotBeStored as CouldNotBeStored,
12
+ FromCache as FromCache,
13
+ IdleClient as IdleClient,
14
+ NeedRevalidation as NeedRevalidation,
15
+ NeedToBeUpdated as NeedToBeUpdated,
16
+ State as State,
17
+ StoreAndUse as StoreAndUse,
18
+ create_idle_state as create_idle_state,
19
+ )
20
+ from hishel._core._sync._storages._sqlite import SyncSqliteStorage
21
+ from hishel._core.models import (
22
+ CompletePair as CompletePair,
23
+ IncompletePair as IncompletePair,
24
+ Pair as Pair,
25
+ PairMeta as PairMeta,
26
+ Request as Request,
27
+ Response,
28
+ )
10
29
 
11
30
  __all__ = (
12
- # Old API
13
- "AsyncCacheClient",
14
- "MockAsyncConnectionPool",
15
- "MockAsyncTransport",
16
- "AsyncCacheConnectionPool",
31
+ # New API
32
+ ## States
33
+ "AnyState",
34
+ "IdleClient",
35
+ "CacheMiss",
36
+ "FromCache",
37
+ "NeedRevalidation",
38
+ "AnyState",
39
+ "CacheOptions",
40
+ "NeedToBeUpdated",
41
+ "State",
42
+ "StoreAndUse",
43
+ "CouldNotBeStored",
44
+ "create_idle_state",
45
+ ## Models
46
+ "Request",
47
+ "Response",
48
+ "Pair",
49
+ "IncompletePair",
50
+ "CompletePair",
51
+ "PairMeta",
52
+ ## Headers
53
+ "Headers",
54
+ ## Storages
55
+ "SyncBaseStorage",
17
56
  "AsyncBaseStorage",
18
- "AsyncFileStorage",
19
- "AsyncInMemoryStorage",
20
- "AsyncRedisStorage",
21
- "AsyncS3Storage",
22
- "AsyncSQLiteStorage",
23
- "AsyncCacheTransport",
24
- "HEURISTICALLY_CACHEABLE_STATUS_CODES",
25
- "Controller",
26
- "CacheControlError",
27
- "ParseError",
28
- "ValidationError",
29
- "CacheControl",
30
- "Vary",
31
- "BaseSerializer",
32
- "JSONSerializer",
33
- "Metadata",
34
- "PickleSerializer",
35
- "YAMLSerializer",
36
- "clone_model",
37
- "CacheClient",
38
- "MockConnectionPool",
39
- "MockTransport",
40
- "CacheConnectionPool",
41
- "BaseStorage",
42
- "FileStorage",
43
- "InMemoryStorage",
44
- "RedisStorage",
45
- "S3Storage",
46
- "SQLiteStorage",
47
- "CacheTransport",
48
- "LFUCache",
57
+ "SyncSqliteStorage",
58
+ "AsyncSqliteStorage",
49
59
  )
50
-
51
- def install_cache() -> None: # pragma: no cover
52
- httpx.AsyncClient = AsyncCacheClient # type: ignore
53
- httpx.Client = CacheClient # type: ignore
54
-
55
-
56
- __version__ = "0.1.5"
57
-
@@ -8,7 +8,7 @@ from typing import AsyncIterator, Awaitable, Callable
8
8
 
9
9
  from typing_extensions import assert_never
10
10
 
11
- from hishel.beta import (
11
+ from hishel import (
12
12
  AnyState,
13
13
  AsyncBaseStorage,
14
14
  AsyncSqliteStorage,
@@ -24,8 +24,8 @@ from hishel.beta import (
24
24
  StoreAndUse,
25
25
  create_idle_state,
26
26
  )
27
- from hishel.beta._core._spec import InvalidatePairs, vary_headers_match
28
- from hishel.beta._core.models import CompletePair
27
+ from hishel._core._spec import InvalidatePairs, vary_headers_match
28
+ from hishel._core.models import CompletePair
29
29
 
30
30
  logger = logging.getLogger("hishel.integrations.clients")
31
31
 
@@ -1,10 +1,10 @@
1
- from hishel.beta._core._async._storages._sqlite import AsyncSqliteStorage
2
- from hishel.beta._core._base._storages._base import (
1
+ from hishel._core._async._storages._sqlite import AsyncSqliteStorage
2
+ from hishel._core._base._storages._base import (
3
3
  AsyncBaseStorage as AsyncBaseStorage,
4
4
  SyncBaseStorage as SyncBaseStorage,
5
5
  )
6
- from hishel.beta._core._headers import Headers as Headers
7
- from hishel.beta._core._spec import (
6
+ from hishel._core._headers import Headers as Headers
7
+ from hishel._core._spec import (
8
8
  AnyState as AnyState,
9
9
  CacheMiss as CacheMiss,
10
10
  CacheOptions as CacheOptions,
@@ -17,8 +17,8 @@ from hishel.beta._core._spec import (
17
17
  StoreAndUse as StoreAndUse,
18
18
  create_idle_state as create_idle_state,
19
19
  )
20
- from hishel.beta._core._sync._storages._sqlite import SyncSqliteStorage
21
- from hishel.beta._core.models import (
20
+ from hishel._core._sync._storages._sqlite import SyncSqliteStorage
21
+ from hishel._core.models import (
22
22
  CompletePair as CompletePair,
23
23
  IncompletePair as IncompletePair,
24
24
  Pair as Pair,
@@ -0,0 +1,457 @@
1
+ from __future__ import annotations
2
+
3
+ import time
4
+ import uuid
5
+ from dataclasses import replace
6
+ from typing import (
7
+ Any,
8
+ AsyncIterable,
9
+ AsyncIterator,
10
+ Callable,
11
+ List,
12
+ Literal,
13
+ Optional,
14
+ Union,
15
+ )
16
+
17
+ from hishel._core._base._storages._base import AsyncBaseStorage, ensure_cache_dict
18
+ from hishel._core._base._storages._packing import pack, unpack
19
+ from hishel._core.models import (
20
+ CompletePair,
21
+ IncompletePair,
22
+ Pair,
23
+ PairMeta,
24
+ Request,
25
+ Response,
26
+ )
27
+
28
+ # Batch cleanup configuration
29
+ # How often to run cleanup (seconds). Default: 1 hour.
30
+ BATCH_CLEANUP_INTERVAL = 3600
31
+ # How long to wait after storage creation before allowing the first cleanup (seconds)
32
+ BATCH_CLEANUP_START_DELAY = 5 * 60
33
+ # Number of rows to process per chunk when cleaning
34
+ BATCH_CLEANUP_CHUNK_SIZE = 200
35
+
36
+
37
+ try:
38
+ import anysqlite
39
+
40
+ class AsyncSqliteStorage(AsyncBaseStorage):
41
+ _STREAM_KIND = {"request": 0, "response": 1}
42
+ _COMPLETE_CHUNK_NUMBER = -1
43
+
44
+ def __init__(
45
+ self,
46
+ *,
47
+ connection: Optional[anysqlite.Connection] = None,
48
+ database_path: str = "hishel_cache.db",
49
+ default_ttl: Optional[float] = None,
50
+ refresh_ttl_on_access: bool = True,
51
+ ) -> None:
52
+ base_path = ensure_cache_dict()
53
+
54
+ self.connection = connection
55
+ self.database_path = base_path / database_path
56
+ self.default_ttl = default_ttl
57
+ self.refresh_ttl_on_access = refresh_ttl_on_access
58
+ self.last_cleanup = time.time() - BATCH_CLEANUP_INTERVAL + BATCH_CLEANUP_START_DELAY
59
+ # When this storage instance was created. Used to delay the first cleanup.
60
+ self._start_time = time.time()
61
+ self._initialized = False
62
+
63
+ async def _ensure_connection(self) -> anysqlite.Connection:
64
+ """Ensure connection is established and database is initialized."""
65
+ if self.connection is None:
66
+ self.connection = await anysqlite.connect(str(self.database_path))
67
+ if not self._initialized:
68
+ await self._initialize_database()
69
+ self._initialized = True
70
+ return self.connection
71
+
72
+ async def _initialize_database(self) -> None:
73
+ """Initialize the database schema."""
74
+ assert self.connection is not None
75
+ cursor = await self.connection.cursor()
76
+
77
+ # Table for storing request/response pairs
78
+ await cursor.execute("""
79
+ CREATE TABLE IF NOT EXISTS entries (
80
+ id BLOB PRIMARY KEY,
81
+ cache_key BLOB,
82
+ data BLOB NOT NULL,
83
+ created_at REAL NOT NULL,
84
+ deleted_at REAL
85
+ )
86
+ """)
87
+
88
+ # Table for storing stream chunks
89
+ await cursor.execute("""
90
+ CREATE TABLE IF NOT EXISTS streams (
91
+ entry_id BLOB NOT NULL,
92
+ kind INTEGER NOT NULL,
93
+ chunk_number INTEGER NOT NULL,
94
+ chunk_data BLOB NOT NULL,
95
+ PRIMARY KEY (entry_id, kind, chunk_number),
96
+ FOREIGN KEY (entry_id) REFERENCES entries(id) ON DELETE CASCADE
97
+ )
98
+ """)
99
+
100
+ # Indexes for performance
101
+ await cursor.execute("CREATE INDEX IF NOT EXISTS idx_entries_deleted_at ON entries(deleted_at)")
102
+ await cursor.execute("CREATE INDEX IF NOT EXISTS idx_entries_cache_key ON entries(cache_key)")
103
+ # Note: PRIMARY KEY (entry_id, kind, chunk_number) already provides an index
104
+ # for queries like: entry_id = ? AND kind = ? AND chunk_number = ?
105
+
106
+ await self.connection.commit()
107
+
108
+ async def create_pair(
109
+ self,
110
+ request: Request,
111
+ id: uuid.UUID | None = None,
112
+ ) -> IncompletePair:
113
+ pair_id = id if id is not None else uuid.uuid4()
114
+ pair_meta = PairMeta(
115
+ created_at=time.time(),
116
+ )
117
+
118
+ pair = IncompletePair(id=pair_id, request=request, meta=pair_meta)
119
+
120
+ packed_pair = pack(pair, kind="pair")
121
+
122
+ connection = await self._ensure_connection()
123
+ cursor = await connection.cursor()
124
+ await cursor.execute(
125
+ "INSERT INTO entries (id, cache_key, data, created_at, deleted_at) VALUES (?, ?, ?, ?, ?)",
126
+ (pair_id.bytes, None, packed_pair, pair_meta.created_at, None),
127
+ )
128
+ await connection.commit()
129
+
130
+ assert isinstance(request.stream, AsyncIterable), "Request stream must be an AsyncIterable, not Iterable"
131
+
132
+ request = Request(
133
+ method=request.method,
134
+ url=request.url,
135
+ headers=request.headers,
136
+ metadata=request.metadata,
137
+ stream=self._save_stream(request.stream, pair_id.bytes, "request"),
138
+ )
139
+
140
+ return replace(pair, request=request)
141
+
142
+ async def add_response(
143
+ self,
144
+ pair_id: uuid.UUID,
145
+ response: Response,
146
+ key: str | bytes,
147
+ ) -> CompletePair:
148
+ if isinstance(key, str):
149
+ key = key.encode("utf-8")
150
+
151
+ connection = await self._ensure_connection()
152
+ cursor = await connection.cursor()
153
+
154
+ # Get the existing pair
155
+ await cursor.execute("SELECT data FROM entries WHERE id = ?", (pair_id.bytes,))
156
+ result = await cursor.fetchone()
157
+
158
+ if result is None:
159
+ raise ValueError(f"Entry with ID {pair_id} not found.")
160
+
161
+ pair = unpack(result[0], kind="pair")
162
+
163
+ assert isinstance(response.stream, (AsyncIterator, AsyncIterable))
164
+ response = replace(response, stream=self._save_stream(response.stream, pair_id.bytes, "response"))
165
+
166
+ await self._delete_stream(pair.id.bytes, cursor, type="response")
167
+ complete_pair = CompletePair(
168
+ id=pair.id, request=pair.request, response=response, meta=pair.meta, cache_key=key
169
+ )
170
+
171
+ # Update the entry with the complete pair and set cache_key
172
+ await cursor.execute(
173
+ "UPDATE entries SET data = ?, cache_key = ? WHERE id = ?",
174
+ (pack(complete_pair, kind="pair"), key, pair_id.bytes),
175
+ )
176
+ await connection.commit()
177
+
178
+ return complete_pair
179
+
180
+ async def get_pairs(self, key: str) -> List[CompletePair]:
181
+ final_pairs: List[CompletePair] = []
182
+
183
+ now = time.time()
184
+ if now - self.last_cleanup >= BATCH_CLEANUP_INTERVAL:
185
+ try:
186
+ await self._batch_cleanup()
187
+ except Exception:
188
+ # don't let cleanup prevent reads; failures are non-fatal
189
+ pass
190
+
191
+ connection = await self._ensure_connection()
192
+ cursor = await connection.cursor()
193
+ # Query entries directly by cache_key
194
+ await cursor.execute("SELECT id, data FROM entries WHERE cache_key = ?", (key.encode("utf-8"),))
195
+
196
+ for row in await cursor.fetchall():
197
+ pair_data = unpack(row[1], kind="pair")
198
+
199
+ if isinstance(pair_data, IncompletePair):
200
+ continue
201
+
202
+ final_pairs.append(pair_data)
203
+
204
+ pairs_with_streams: List[CompletePair] = []
205
+
206
+ for pair in final_pairs:
207
+ pairs_with_streams.append(
208
+ replace(
209
+ pair,
210
+ response=replace(
211
+ pair.response,
212
+ stream=self._stream_data_from_cache(pair.id.bytes, "response"),
213
+ ),
214
+ request=replace(
215
+ pair.request,
216
+ stream=self._stream_data_from_cache(pair.id.bytes, "request"),
217
+ ),
218
+ )
219
+ )
220
+ return pairs_with_streams
221
+
222
+ async def update_pair(
223
+ self,
224
+ id: uuid.UUID,
225
+ new_pair: Union[CompletePair, Callable[[CompletePair], CompletePair]],
226
+ ) -> Optional[CompletePair]:
227
+ connection = await self._ensure_connection()
228
+ cursor = await connection.cursor()
229
+ await cursor.execute("SELECT data FROM entries WHERE id = ?", (id.bytes,))
230
+ result = await cursor.fetchone()
231
+
232
+ if result is None:
233
+ return None
234
+
235
+ pair = unpack(result[0], kind="pair")
236
+
237
+ if isinstance(pair, IncompletePair):
238
+ return None
239
+
240
+ if isinstance(new_pair, CompletePair):
241
+ complete_pair = new_pair
242
+ else:
243
+ complete_pair = new_pair(pair)
244
+
245
+ if pair.id != complete_pair.id:
246
+ raise ValueError("Pair ID mismatch")
247
+
248
+ await cursor.execute(
249
+ "UPDATE entries SET data = ? WHERE id = ?", (pack(complete_pair, kind="pair"), id.bytes)
250
+ )
251
+
252
+ if pair.cache_key != complete_pair.cache_key:
253
+ await cursor.execute(
254
+ "UPDATE entries SET cache_key = ? WHERE id = ?",
255
+ (complete_pair.cache_key, complete_pair.id.bytes),
256
+ )
257
+
258
+ await connection.commit()
259
+
260
+ return complete_pair
261
+
262
+ async def remove(self, id: uuid.UUID) -> None:
263
+ connection = await self._ensure_connection()
264
+ cursor = await connection.cursor()
265
+ await cursor.execute("SELECT data FROM entries WHERE id = ?", (id.bytes,))
266
+ result = await cursor.fetchone()
267
+
268
+ if result is None:
269
+ return None
270
+
271
+ pair = unpack(result[0], kind="pair")
272
+ await self._soft_delete_pair(pair, cursor)
273
+ await connection.commit()
274
+
275
+ async def _is_stream_complete(
276
+ self, kind: Literal["request", "response"], pair_id: uuid.UUID, cursor: anysqlite.Cursor
277
+ ) -> bool:
278
+ kind_id = self._STREAM_KIND[kind]
279
+ # Check if there's a completion marker (chunk_number = -1)
280
+ await cursor.execute(
281
+ "SELECT 1 FROM streams WHERE entry_id = ? AND kind = ? AND chunk_number = ? LIMIT 1",
282
+ (pair_id.bytes, kind_id, self._COMPLETE_CHUNK_NUMBER),
283
+ )
284
+ return await cursor.fetchone() is not None
285
+
286
+ async def _soft_delete_pair(self, pair: Union[CompletePair, IncompletePair], cursor: anysqlite.Cursor) -> None:
287
+ """
288
+ Mark the pair as deleted by setting the deleted_at timestamp.
289
+ """
290
+ marked_pair = self.mark_pair_as_deleted(pair)
291
+ await cursor.execute(
292
+ "UPDATE entries SET data = ?, deleted_at = ? WHERE id = ?",
293
+ (pack(marked_pair, kind="pair"), marked_pair.meta.deleted_at, pair.id.bytes),
294
+ )
295
+
296
+ async def _is_pair_expired(self, pair: Pair, cursor: anysqlite.Cursor) -> bool:
297
+ """
298
+ Check if the pair is expired.
299
+ """
300
+ ttl = pair.request.metadata["hishel_ttl"] if "hishel_ttl" in pair.request.metadata else self.default_ttl
301
+ created_at = pair.meta.created_at
302
+ if ttl is None:
303
+ return False
304
+ return created_at + ttl < time.time()
305
+
306
+ async def _batch_cleanup(
307
+ self,
308
+ ) -> None:
309
+ """
310
+ Cleanup expired pairs in the database.
311
+ """
312
+ should_mark_as_deleted: List[Union[CompletePair, IncompletePair]] = []
313
+ should_hard_delete: List[Union[CompletePair, IncompletePair]] = []
314
+
315
+ connection = await self._ensure_connection()
316
+ cursor = await connection.cursor()
317
+
318
+ # Process entries in chunks to avoid loading the entire table into memory.
319
+ chunk_size = BATCH_CLEANUP_CHUNK_SIZE
320
+ offset = 0
321
+ while True:
322
+ await cursor.execute("SELECT id, data FROM entries LIMIT ? OFFSET ?", (chunk_size, offset))
323
+ rows = await cursor.fetchall()
324
+ if not rows:
325
+ break
326
+
327
+ for row in rows:
328
+ pair = unpack(row[1], kind="pair")
329
+ if pair is None:
330
+ continue
331
+
332
+ # expired but not yet soft-deleted
333
+ if await self._is_pair_expired(pair, cursor) and not self.is_soft_deleted(pair):
334
+ should_mark_as_deleted.append(pair)
335
+
336
+ # soft-deleted and safe to hard delete, or corrupted pair
337
+ if (self.is_soft_deleted(pair) and self.is_safe_to_hard_delete(pair)) or await self._is_corrupted(
338
+ pair, cursor
339
+ ):
340
+ should_hard_delete.append(pair)
341
+
342
+ # advance pagination
343
+ offset += len(rows)
344
+
345
+ for pair in should_mark_as_deleted:
346
+ await self._soft_delete_pair(pair, cursor)
347
+
348
+ for pair in should_hard_delete:
349
+ await self._hard_delete_pair(pair, cursor)
350
+
351
+ await connection.commit()
352
+
353
+ async def _is_corrupted(self, pair: IncompletePair | CompletePair, cursor: anysqlite.Cursor) -> bool:
354
+ # if pair was created more than 1 hour ago and still not completed
355
+ if pair.meta.created_at + 3600 < time.time() and isinstance(pair, IncompletePair):
356
+ return True
357
+
358
+ if isinstance(pair, CompletePair) and not await self._is_stream_complete("request", pair.id, cursor):
359
+ return True
360
+ return False
361
+
362
+ async def _hard_delete_pair(self, pair: CompletePair | IncompletePair, cursor: anysqlite.Cursor) -> None:
363
+ """
364
+ Permanently delete the pair from the database.
365
+ """
366
+ await cursor.execute("DELETE FROM entries WHERE id = ?", (pair.id.bytes,))
367
+
368
+ # Delete all streams (both request and response) for this entry
369
+ await self._delete_stream(pair.id.bytes, cursor)
370
+
371
+ async def _delete_stream(
372
+ self,
373
+ entry_id: bytes,
374
+ cursor: anysqlite.Cursor,
375
+ type: Literal["request", "response", "all"] = "all",
376
+ ) -> None:
377
+ """
378
+ Delete all streams (both request and response) associated with the given entry ID.
379
+ """
380
+ if type == "request":
381
+ await cursor.execute(
382
+ "DELETE FROM streams WHERE entry_id = ? AND kind = ?", (entry_id, self._STREAM_KIND["request"])
383
+ )
384
+ elif type == "response":
385
+ await cursor.execute(
386
+ "DELETE FROM streams WHERE entry_id = ? AND kind = ?", (entry_id, self._STREAM_KIND["response"])
387
+ )
388
+ elif type == "all":
389
+ await cursor.execute("DELETE FROM streams WHERE entry_id = ?", (entry_id,))
390
+
391
+ async def _save_stream(
392
+ self,
393
+ stream: AsyncIterator[bytes],
394
+ entry_id: bytes,
395
+ kind: Literal["response", "request"],
396
+ ) -> AsyncIterator[bytes]:
397
+ """
398
+ Wrapper around an async iterator that also saves the data to the cache in chunks.
399
+ """
400
+ kind_id = self._STREAM_KIND[kind]
401
+ chunk_number = 0
402
+ async for chunk in stream:
403
+ connection = await self._ensure_connection()
404
+ cursor = await connection.cursor()
405
+ await cursor.execute(
406
+ "INSERT INTO streams (entry_id, kind, chunk_number, chunk_data) VALUES (?, ?, ?, ?)",
407
+ (entry_id, kind_id, chunk_number, chunk),
408
+ )
409
+ await connection.commit()
410
+ chunk_number += 1
411
+ yield chunk
412
+
413
+ # Mark end of stream with chunk_number = -1
414
+ connection = await self._ensure_connection()
415
+ cursor = await connection.cursor()
416
+ await cursor.execute(
417
+ "INSERT INTO streams (entry_id, kind, chunk_number, chunk_data) VALUES (?, ?, ?, ?)",
418
+ (entry_id, kind_id, self._COMPLETE_CHUNK_NUMBER, b""),
419
+ )
420
+ await connection.commit()
421
+
422
+ async def _stream_data_from_cache(
423
+ self,
424
+ entry_id: bytes,
425
+ kind: Literal["response", "request"],
426
+ ) -> AsyncIterator[bytes]:
427
+ """
428
+ Get an async iterator that yields the stream data from the cache.
429
+ """
430
+ kind_id = self._STREAM_KIND[kind]
431
+ chunk_number = 0
432
+
433
+ connection = await self._ensure_connection()
434
+ while True:
435
+ cursor = await connection.cursor()
436
+ await cursor.execute(
437
+ "SELECT chunk_data FROM streams WHERE entry_id = ? AND kind = ? AND chunk_number = ?",
438
+ (entry_id, kind_id, chunk_number),
439
+ )
440
+ result = await cursor.fetchone()
441
+
442
+ if result is None:
443
+ break
444
+ chunk = result[0]
445
+ # chunk_number = -1 is the completion marker with empty data
446
+ if chunk == b"":
447
+ break
448
+ yield chunk
449
+ chunk_number += 1
450
+ except ImportError:
451
+
452
+ class AsyncSqliteStorage(AsyncBaseStorage): # type: ignore[no-redef]
453
+ def __init__(self, *args: Any, **kwargs: Any) -> None:
454
+ raise ImportError(
455
+ "The 'anysqlite' library is required to use the `AsyncSqliteStorage` integration. "
456
+ "Install hishel with 'pip install hishel[async]'."
457
+ )
@@ -7,7 +7,7 @@ import uuid
7
7
  from abc import ABC
8
8
  from pathlib import Path
9
9
 
10
- from hishel.beta._core.models import CompletePair, IncompletePair, Request, Response
10
+ from hishel._core.models import CompletePair, IncompletePair, Request, Response
11
11
 
12
12
 
13
13
  class SyncBaseStorage(ABC):
@@ -6,8 +6,8 @@ from typing import TYPE_CHECKING, Any, Mapping, Optional, Union, overload
6
6
  import msgpack
7
7
  from typing_extensions import Literal, cast
8
8
 
9
- from hishel.beta._core._headers import Headers
10
- from hishel.beta._core.models import PairMeta, Request, Response
9
+ from hishel._core._headers import Headers
10
+ from hishel._core.models import PairMeta, Request, Response
11
11
 
12
12
 
13
13
  def filter_out_hishel_metadata(data: Mapping[str, Any]) -> dict[str, Any]:
@@ -15,7 +15,7 @@ def filter_out_hishel_metadata(data: Mapping[str, Any]) -> dict[str, Any]:
15
15
 
16
16
 
17
17
  if TYPE_CHECKING:
18
- from hishel.beta import CompletePair, IncompletePair
18
+ from hishel import CompletePair, IncompletePair
19
19
 
20
20
 
21
21
  @overload
@@ -39,7 +39,7 @@ def pack(
39
39
  /,
40
40
  kind: Literal["pair", "entry_db_key_index"],
41
41
  ) -> bytes:
42
- from hishel.beta import CompletePair, IncompletePair
42
+ from hishel import CompletePair, IncompletePair
43
43
 
44
44
  if kind == "entry_db_key_index":
45
45
  assert isinstance(value, uuid.UUID)
@@ -115,7 +115,7 @@ def unpack(
115
115
  /,
116
116
  kind: Literal["pair", "entry_db_key_index"],
117
117
  ) -> Union["CompletePair", "IncompletePair", uuid.UUID, None]:
118
- from hishel.beta import CompletePair, IncompletePair
118
+ from hishel import CompletePair, IncompletePair
119
119
 
120
120
  if value is None:
121
121
  return None