hishel 1.1.2__py3-none-any.whl → 1.1.3__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.
- hishel/__init__.py +2 -1
- hishel/_core/_spec.py +1 -1
- {hishel-1.1.2.dist-info → hishel-1.1.3.dist-info}/METADATA +169 -147
- {hishel-1.1.2.dist-info → hishel-1.1.3.dist-info}/RECORD +6 -6
- {hishel-1.1.2.dist-info → hishel-1.1.3.dist-info}/WHEEL +0 -0
- {hishel-1.1.2.dist-info → hishel-1.1.3.dist-info}/licenses/LICENSE +0 -0
hishel/__init__.py
CHANGED
|
@@ -27,7 +27,7 @@ from hishel._core.models import (
|
|
|
27
27
|
from hishel._async_cache import AsyncCacheProxy as AsyncCacheProxy
|
|
28
28
|
from hishel._sync_cache import SyncCacheProxy as SyncCacheProxy
|
|
29
29
|
|
|
30
|
-
from hishel._policies import SpecificationPolicy, FilterPolicy, CachePolicy
|
|
30
|
+
from hishel._policies import SpecificationPolicy, FilterPolicy, CachePolicy, BaseFilter
|
|
31
31
|
|
|
32
32
|
__all__ = (
|
|
33
33
|
# New API
|
|
@@ -62,6 +62,7 @@ __all__ = (
|
|
|
62
62
|
"AsyncCacheProxy",
|
|
63
63
|
"SyncCacheProxy",
|
|
64
64
|
# Policies
|
|
65
|
+
"BaseFilter",
|
|
65
66
|
"CachePolicy",
|
|
66
67
|
"SpecificationPolicy",
|
|
67
68
|
"FilterPolicy",
|
hishel/_core/_spec.py
CHANGED
|
@@ -2410,4 +2410,4 @@ class NeedToBeUpdated(State):
|
|
|
2410
2410
|
original_request: Request
|
|
2411
2411
|
|
|
2412
2412
|
def next(self) -> FromCache:
|
|
2413
|
-
return FromCache(entry=self.updating_entries[-1], options=self.options)
|
|
2413
|
+
return FromCache(entry=self.updating_entries[-1], options=self.options, after_revalidation=True)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hishel
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.3
|
|
4
4
|
Summary: Elegant HTTP Caching for Python
|
|
5
5
|
Project-URL: Homepage, https://hishel.com
|
|
6
6
|
Project-URL: Source, https://github.com/karpetrosyan/hishel
|
|
@@ -406,198 +406,220 @@ Hishel is inspired by and builds upon the excellent work in the Python HTTP ecos
|
|
|
406
406
|
<strong>Made with ❤️ by <a href="https://github.com/karpetrosyan">Kar Petrosyan</a></strong>
|
|
407
407
|
</p>
|
|
408
408
|
|
|
409
|
+
## What's Changed in 1.1.3
|
|
410
|
+
### ⚙️ Miscellaneous Tasks
|
|
411
|
+
|
|
412
|
+
* improve git-cliff docs by @karpetrosyan
|
|
413
|
+
### 🐛 Bug Fixes
|
|
414
|
+
|
|
415
|
+
* fix: add BaseFilter to __all__ exports by @martinblech in [#408](https://github.com/karpetrosyan/hishel/pull/408)
|
|
416
|
+
* fix: set `after_revalidation=True` for `NeedsToBeUpdated` -> `FromCache` transition by @jlopex in [#402](https://github.com/karpetrosyan/hishel/pull/402)
|
|
417
|
+
|
|
418
|
+
### Contributors
|
|
419
|
+
* @martinblech
|
|
420
|
+
* @jlopex
|
|
421
|
+
* @karpetrosyan
|
|
422
|
+
|
|
423
|
+
**Full Changelog**: https://github.com/karpetrosyan/hishel/compare/1.1.2...1.1.3
|
|
424
|
+
|
|
409
425
|
## What's Changed in 1.1.2
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
*
|
|
413
|
-
*
|
|
414
|
-
*
|
|
426
|
+
### 🐛 Bug Fixes
|
|
427
|
+
|
|
428
|
+
* respect shared option when excluding unstorable headers by @karpetrosyan
|
|
429
|
+
* remove s-maxage consideration for private caches by @karpetrosyan
|
|
430
|
+
* ensure 304 responses don't leak by @karpetrosyan
|
|
415
431
|
|
|
416
|
-
|
|
417
|
-
* @
|
|
432
|
+
### Contributors
|
|
433
|
+
* @karpetrosyan
|
|
434
|
+
* @jlopex
|
|
418
435
|
|
|
419
436
|
**Full Changelog**: https://github.com/karpetrosyan/hishel/compare/1.1.1...1.1.2
|
|
420
437
|
|
|
421
438
|
## What's Changed in 1.1.1
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
*
|
|
425
|
-
|
|
426
|
-
|
|
439
|
+
### ⚙️ Miscellaneous Tasks
|
|
440
|
+
|
|
441
|
+
* chore(deps-dev): bump the python-packages group with 10 updates by @dependabot[bot] in [#396](https://github.com/karpetrosyan/hishel/pull/396)
|
|
442
|
+
### 📦 Dependencies
|
|
443
|
+
|
|
444
|
+
* chore(deps): bump astral-sh/setup-uv from 5 to 7 by @dependabot[bot] in [#393](https://github.com/karpetrosyan/hishel/pull/393)
|
|
445
|
+
* chore(deps): bump actions/download-artifact from 4 to 6 by @dependabot[bot] in [#394](https://github.com/karpetrosyan/hishel/pull/394)
|
|
446
|
+
* chore(deps): bump actions/upload-artifact from 4 to 5 by @dependabot[bot] in [#395](https://github.com/karpetrosyan/hishel/pull/395)
|
|
447
|
+
|
|
448
|
+
### Contributors
|
|
449
|
+
* @karpetrosyan
|
|
450
|
+
* @dependabot[bot]
|
|
427
451
|
|
|
428
452
|
**Full Changelog**: https://github.com/karpetrosyan/hishel/compare/1.1.0...1.1.1
|
|
429
453
|
|
|
430
454
|
## What's Changed in 1.1.0
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
*
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
*
|
|
455
|
+
### ⚙️ Miscellaneous Tasks
|
|
456
|
+
|
|
457
|
+
* add in memory example by @karpetrosyan
|
|
458
|
+
### 🐛 Bug Fixes
|
|
459
|
+
|
|
460
|
+
* pass any response with non-expected status code on revalidation to client by @karpetrosyan
|
|
461
|
+
* pass any response with non-expected status code on revalidation to client by @karpetrosyan
|
|
462
|
+
### 🚀 Features
|
|
463
|
+
|
|
464
|
+
* allow setting storage base with via `database_path` for sqlite storage by @karpetrosyan
|
|
465
|
+
|
|
466
|
+
### Contributors
|
|
467
|
+
* @karpetrosyan
|
|
437
468
|
|
|
438
469
|
**Full Changelog**: https://github.com/karpetrosyan/hishel/compare/1.0.0...1.1.0
|
|
439
470
|
|
|
440
471
|
## What's Changed in 1.0.0
|
|
441
|
-
|
|
442
|
-
|
|
472
|
+
### ⚙️ Miscellaneous Tasks
|
|
473
|
+
|
|
474
|
+
* add examples, improve docs by @karpetrosyan
|
|
475
|
+
|
|
476
|
+
### Contributors
|
|
477
|
+
* @karpetrosyan
|
|
443
478
|
|
|
444
479
|
**Full Changelog**: https://github.com/karpetrosyan/hishel/compare/1.0.0b1...1.0.0
|
|
445
480
|
|
|
446
481
|
## What's Changed in 1.0.0b1
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
*
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
*
|
|
453
|
-
*
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
*
|
|
457
|
-
*
|
|
482
|
+
### ♻️ Refactoring
|
|
483
|
+
|
|
484
|
+
* add policies by @karpetrosyan
|
|
485
|
+
### ⚙️ Miscellaneous Tasks
|
|
486
|
+
|
|
487
|
+
* add graphql docs by @karpetrosyan
|
|
488
|
+
* improve sans-io diagram colors by @karpetrosyan
|
|
489
|
+
### 🐛 Bug Fixes
|
|
490
|
+
|
|
491
|
+
* filter out `Transfer-Encoding` header for asgi responses by @karpetrosyan
|
|
492
|
+
* body-sensitive responses caching by @karpetrosyan
|
|
493
|
+
### 🚀 Features
|
|
494
|
+
|
|
495
|
+
* add global `use_body_key` setting by @karpetrosyan
|
|
496
|
+
|
|
497
|
+
### Contributors
|
|
498
|
+
* @karpetrosyan
|
|
458
499
|
|
|
459
500
|
**Full Changelog**: https://github.com/karpetrosyan/hishel/compare/1.0.0.dev3...1.0.0b1
|
|
460
501
|
|
|
461
502
|
## What's Changed in 1.0.0.dev3
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
*
|
|
465
|
-
*
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
*
|
|
469
|
-
*
|
|
470
|
-
*
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
*
|
|
474
|
-
*
|
|
475
|
-
*
|
|
476
|
-
*
|
|
477
|
-
*
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
*
|
|
481
|
-
*
|
|
482
|
-
*
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
*
|
|
486
|
-
* properly close resource by @karpetrosyan
|
|
487
|
-
* fix: fix compressed data caching for requests by @karpetrosyan
|
|
488
|
-
* fix: raise on consumed httpx streams, which we can't store as is (it's already decoded) by @karpetrosyan
|
|
489
|
-
* chore(docs): simplify metadata docs by @karpetrosyan
|
|
490
|
-
* fix: add missing permissions into `publish.yml` by @karpetrosyan
|
|
503
|
+
### ♻️ Refactoring
|
|
504
|
+
|
|
505
|
+
* automatically generate httpx sync integration from async by @karpetrosyan
|
|
506
|
+
* replace pairs with entries, simplify storage API by @karpetrosyan
|
|
507
|
+
### ⚙️ Miscellaneous Tasks
|
|
508
|
+
|
|
509
|
+
* more robust compressed response caching by @karpetrosyan
|
|
510
|
+
* add custom integrations docs by @karpetrosyan
|
|
511
|
+
* simplify metadata docs by @karpetrosyan
|
|
512
|
+
### 🐛 Bug Fixes
|
|
513
|
+
|
|
514
|
+
* add date header for proper age calculation by @karpetrosyan
|
|
515
|
+
* handle httpx iterable usage instead of iterator correctly by @karpetrosyan
|
|
516
|
+
* fix compressed data caching for requests by @karpetrosyan
|
|
517
|
+
* raise on consumed httpx streams, which we can't store as is (it's already decoded) by @karpetrosyan
|
|
518
|
+
* add missing permissions into `publish.yml` by @karpetrosyan
|
|
519
|
+
### 🚀 Features
|
|
520
|
+
|
|
521
|
+
* add logging for asgi by @karpetrosyan
|
|
522
|
+
* add blacksheep integration examples by @karpetrosyan
|
|
523
|
+
* add integrations with fastapi and asgi by @karpetrosyan
|
|
524
|
+
|
|
525
|
+
### Contributors
|
|
526
|
+
* @karpetrosyan
|
|
491
527
|
|
|
492
528
|
**Full Changelog**: https://github.com/karpetrosyan/hishel/compare/1.0.0.dev2...1.0.0.dev3
|
|
493
529
|
|
|
494
530
|
## What's Changed in 1.0.0.dev2
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
*
|
|
498
|
-
*
|
|
499
|
-
*
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
*
|
|
503
|
-
*
|
|
531
|
+
### ⚙️ Miscellaneous Tasks
|
|
532
|
+
|
|
533
|
+
* fix time travel date, explicitly specify the timezone by @karpetrosyan
|
|
534
|
+
* add import without extras check in ci by @karpetrosyan
|
|
535
|
+
* remove redundant utils and tests by @karpetrosyan
|
|
536
|
+
### 🐛 Bug Fixes
|
|
537
|
+
|
|
538
|
+
* don't raise an error on 3xx during revalidation by @karpetrosyan
|
|
539
|
+
* fix check for storing auth requests by @karpetrosyan
|
|
540
|
+
### 🚀 Features
|
|
541
|
+
|
|
542
|
+
* add hishel_created_at response metadata by @karpetrosyan
|
|
543
|
+
|
|
544
|
+
### Contributors
|
|
545
|
+
* @karpetrosyan
|
|
504
546
|
|
|
505
547
|
**Full Changelog**: https://github.com/karpetrosyan/hishel/compare/1.0.0.dev1...1.0.0.dev2
|
|
506
548
|
|
|
507
549
|
## What's Changed in 1.0.0.dev1
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
*
|
|
511
|
-
|
|
512
|
-
|
|
550
|
+
### ⚙️ Miscellaneous Tasks
|
|
551
|
+
|
|
552
|
+
* remove some redundant utils methods by @karpetrosyan
|
|
553
|
+
### 📦 Dependencies
|
|
554
|
+
|
|
555
|
+
* improve git-cliff by @karpetrosyan
|
|
556
|
+
* install async extra with httpx by @karpetrosyan
|
|
557
|
+
* make `anysqlite` optional dependency by @karpetrosyan
|
|
558
|
+
* make httpx and async libs optional dependencies by @karpetrosyan
|
|
559
|
+
|
|
560
|
+
### Contributors
|
|
561
|
+
* @karpetrosyan
|
|
513
562
|
|
|
514
563
|
**Full Changelog**: https://github.com/karpetrosyan/hishel/compare/1.0.0.dev0...1.0.0.dev1
|
|
515
564
|
|
|
516
565
|
## What's Changed in 1.0.0.dev0
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
*
|
|
520
|
-
*
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
*
|
|
524
|
-
* improve docs introduction by @karpetrosyan
|
|
525
|
-
* better docs publishing, better project description by @karpetrosyan
|
|
526
|
-
* fix docs publishing by @karpetrosyan
|
|
527
|
-
* fix docs deploying by @karpetrosyan
|
|
528
|
-
* chore(docs): improve docs versioning, deploy dev doc on ci by @karpetrosyan
|
|
529
|
-
* fix unasync by @karpetrosyan
|
|
530
|
-
* fix unasync by @karpetrosyan
|
|
531
|
-
* fix unasync by @karpetrosyan
|
|
532
|
-
* Version 1.0.0.dev0 by @karpetrosyan
|
|
533
|
-
* chore(docs): use mike powered versioning by @karpetrosyan
|
|
534
|
-
* fix changelog by @karpetrosyan
|
|
566
|
+
### ⚙️ Miscellaneous Tasks
|
|
567
|
+
|
|
568
|
+
* improve docs versioning, deploy dev doc on ci by @karpetrosyan
|
|
569
|
+
* use mike powered versioning by @karpetrosyan
|
|
570
|
+
|
|
571
|
+
### Contributors
|
|
572
|
+
* @karpetrosyan
|
|
535
573
|
|
|
536
574
|
**Full Changelog**: https://github.com/karpetrosyan/hishel/compare/0.1.5...1.0.0.dev0
|
|
537
575
|
|
|
538
576
|
## What's Changed in 0.1.5
|
|
539
|
-
|
|
540
|
-
|
|
577
|
+
### ⚙️ Miscellaneous Tasks
|
|
578
|
+
|
|
579
|
+
* remove some redundant files from repo by @karpetrosyan
|
|
580
|
+
### 🐛 Bug Fixes
|
|
581
|
+
|
|
582
|
+
* fix some line breaks by @karpetrosyan
|
|
583
|
+
### 🚀 Features
|
|
584
|
+
|
|
585
|
+
* increase requests buffer size to 128KB, disable charset detection by @karpetrosyan
|
|
541
586
|
* feat: add close method to storages API by @karpetrosyan in [#384](https://github.com/karpetrosyan/hishel/pull/384)
|
|
542
|
-
*
|
|
543
|
-
*
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
*
|
|
547
|
-
* fix(docs): fix some line breaks by @karpetrosyan
|
|
548
|
-
* chore: remove some redundant files from repo by @karpetrosyan
|
|
587
|
+
* better cache-control parsing by @karpetrosyan
|
|
588
|
+
* set chunk size to 128KB for httpx to reduce SQLite read/writes by @karpetrosyan
|
|
589
|
+
|
|
590
|
+
### Contributors
|
|
591
|
+
* @karpetrosyan
|
|
549
592
|
|
|
550
593
|
**Full Changelog**: https://github.com/karpetrosyan/hishel/compare/0.1.4...0.1.5
|
|
551
594
|
|
|
552
595
|
## What's Changed in 0.1.4
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
*
|
|
556
|
-
*
|
|
557
|
-
*
|
|
558
|
-
* fix typing by @karpetrosyan
|
|
559
|
-
* format by @karpetrosyan
|
|
560
|
-
* more docs! more tests! by @karpetrosyan
|
|
561
|
-
* lot of fixes by @karpetrosyan
|
|
562
|
-
* remove redundant files by @karpetrosyan
|
|
563
|
-
* remove docs footer by @karpetrosyan
|
|
564
|
-
* fix: fix beta imports by @karpetrosyan
|
|
565
|
-
* uv lock by @karpetrosyan
|
|
566
|
-
* fix: create an sqlite file in a cache folder by @karpetrosyan
|
|
567
|
-
* better unasync by @karpetrosyan
|
|
568
|
-
* feat: better async implemetation for sqlite storage by @karpetrosyan
|
|
569
|
-
* feat: get rid of some locks from sqlite storage by @karpetrosyan
|
|
570
|
-
* chore(tests): move some tests to beta by @karpetrosyan
|
|
571
|
-
* fix tests by @karpetrosyan
|
|
572
|
-
* fix tests by @karpetrosyan
|
|
573
|
-
* fix lint by @karpetrosyan
|
|
574
|
-
* chore(tests): add sqlite tests for new storage by @karpetrosyan
|
|
575
|
-
* feat: add sqlite storage for beta storages by @karpetrosyan
|
|
576
|
-
* Adding `.venv` to `.gitignore` by @jamesbraza in [#379](https://github.com/karpetrosyan/hishel/pull/379)
|
|
577
|
-
* Revert "add ethical ads" by @karpetrosyan
|
|
578
|
-
* add ethical ads by @karpetrosyan
|
|
579
|
-
* feat: allow already consumed streams with `CacheTransport` by @jamesbraza in [#377](https://github.com/karpetrosyan/hishel/pull/377)
|
|
580
|
-
* chore(ci): fix lint script by @GugNersesyan in [#375](https://github.com/karpetrosyan/hishel/pull/375)
|
|
581
|
-
* chore(internal): temporary remove python3.14 from CI by @karpetrosyan
|
|
596
|
+
### ⚙️ Miscellaneous Tasks
|
|
597
|
+
|
|
598
|
+
* move some tests to beta by @karpetrosyan
|
|
599
|
+
* add sqlite tests for new storage by @karpetrosyan
|
|
600
|
+
* temporary remove python3.14 from CI by @karpetrosyan
|
|
582
601
|
* chore(internal): remove src folder by @karpetrosyan in [#373](https://github.com/karpetrosyan/hishel/pull/373)
|
|
583
|
-
* New storage API by @karpetrosyan in [#359](https://github.com/karpetrosyan/hishel/pull/359)
|
|
584
602
|
* chore: improve CI by @karpetrosyan in [#369](https://github.com/karpetrosyan/hishel/pull/369)
|
|
603
|
+
### 🐛 Bug Fixes
|
|
604
|
+
|
|
605
|
+
* fix beta imports by @karpetrosyan
|
|
606
|
+
* create an sqlite file in a cache folder by @karpetrosyan
|
|
607
|
+
### 🚀 Features
|
|
608
|
+
|
|
609
|
+
* better async implemetation for sqlite storage by @karpetrosyan
|
|
610
|
+
* get rid of some locks from sqlite storage by @karpetrosyan
|
|
611
|
+
* add sqlite storage for beta storages by @karpetrosyan
|
|
612
|
+
* feat: allow already consumed streams with `CacheTransport` by @jamesbraza in [#377](https://github.com/karpetrosyan/hishel/pull/377)
|
|
585
613
|
* feat: add support for a sans-IO API by @karpetrosyan in [#366](https://github.com/karpetrosyan/hishel/pull/366)
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
*
|
|
589
|
-
*
|
|
590
|
-
*
|
|
591
|
-
*
|
|
592
|
-
*
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
* @jamesbraza made their first contribution in [#379](https://github.com/karpetrosyan/hishel/pull/379)
|
|
596
|
-
* @GugNersesyan made their first contribution in [#375](https://github.com/karpetrosyan/hishel/pull/375)
|
|
597
|
-
* @mmdbalkhi made their first contribution in [#348](https://github.com/karpetrosyan/hishel/pull/348)
|
|
598
|
-
* @AstraLuma made their first contribution in [#353](https://github.com/karpetrosyan/hishel/pull/353)
|
|
599
|
-
* @deathaxe made their first contribution in [#351](https://github.com/karpetrosyan/hishel/pull/351)
|
|
614
|
+
|
|
615
|
+
### Contributors
|
|
616
|
+
* @karpetrosyan
|
|
617
|
+
* @jamesbraza
|
|
618
|
+
* @GugNersesyan
|
|
619
|
+
* @dependabot[bot]
|
|
620
|
+
* @mmdbalkhi
|
|
621
|
+
* @AstraLuma
|
|
622
|
+
* @deathaxe
|
|
600
623
|
|
|
601
624
|
**Full Changelog**: https://github.com/karpetrosyan/hishel/compare/0.1.3...0.1.4
|
|
602
625
|
|
|
603
|
-
<!-- generated by git-cliff -->
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
hishel/__init__.py,sha256=
|
|
1
|
+
hishel/__init__.py,sha256=1EdAEXWx41gmxUzG1Fchd_B4gQDtqlxlqQw0WkCBaUE,1826
|
|
2
2
|
hishel/_async_cache.py,sha256=4wm6YBL9ClNOg4WbEkALTJVCIXuzQU80MVem2C3hHrQ,8785
|
|
3
3
|
hishel/_async_httpx.py,sha256=_-M5BEIyhrPiWJYy-zX0XbAvGFY6NLDdKtfiLt6Io6c,7726
|
|
4
4
|
hishel/_policies.py,sha256=1ae_rmDF7oaG91-lQyOGVaTrRX8uI2GImmu5gN6WJa4,1135
|
|
@@ -11,14 +11,14 @@ hishel/httpx.py,sha256=99a8X9COPiPHSgGW61O2uMWMZB7dY93Ty9DTCJ9C18Q,467
|
|
|
11
11
|
hishel/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
12
|
hishel/requests.py,sha256=FbOBMvgNSWkH0Bh0qZdr-dhCYG6siR5Lmxcu5eMay3s,6409
|
|
13
13
|
hishel/_core/_headers.py,sha256=hGaT6o1F-gs1pm5RpdGb0IMQL3uJYDH1xpwJLy28Cys,17514
|
|
14
|
-
hishel/_core/_spec.py,sha256=
|
|
14
|
+
hishel/_core/_spec.py,sha256=5VLwyT-eSdbez87A6xJG8T_Z3ySVcEEQp8WyTY_mhCo,102988
|
|
15
15
|
hishel/_core/models.py,sha256=EabP2qnjYVzhPWhQer3QFmdDE6TDbqEBEqPHzv25VnA,7978
|
|
16
16
|
hishel/_core/_storages/_async_base.py,sha256=iZ6Mb30P0ho5h4UU5bgOrcsSMZ1427j9tht-tupZs68,2106
|
|
17
17
|
hishel/_core/_storages/_async_sqlite.py,sha256=QZEWroGZKGhCMf7CcYpZfKZdKd88R8elQCoPge0Khxc,15674
|
|
18
18
|
hishel/_core/_storages/_packing.py,sha256=mC8LMFQ5uPfFOgingKm2WKFO_DwcZ1OjTgI6xc0hfJI,3708
|
|
19
19
|
hishel/_core/_storages/_sync_base.py,sha256=qfOvcFY5qvrzSh4ztV2Trlxft-BF7An5SFsLlEb8EeE,2075
|
|
20
20
|
hishel/_core/_storages/_sync_sqlite.py,sha256=P3vIp636tTtM553-sBTZkam3-sNv0EEkh1rRSd1Qw90,15167
|
|
21
|
-
hishel-1.1.
|
|
22
|
-
hishel-1.1.
|
|
23
|
-
hishel-1.1.
|
|
24
|
-
hishel-1.1.
|
|
21
|
+
hishel-1.1.3.dist-info/METADATA,sha256=wnTvK34erjBZbe20gkt-19WumeD2OFsURe9pSQfGcuk,19884
|
|
22
|
+
hishel-1.1.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
23
|
+
hishel-1.1.3.dist-info/licenses/LICENSE,sha256=1qQj7pE0V2O9OIedvyOgLGLvZLaPd3nFEup3IBEOZjQ,1493
|
|
24
|
+
hishel-1.1.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|