hishel 0.1.3__py3-none-any.whl → 0.1.5__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hishel
3
- Version: 0.1.3
3
+ Version: 0.1.5
4
4
  Summary: Persistent cache implementation for httpx and httpcore
5
5
  Project-URL: Homepage, https://hishel.com
6
6
  Project-URL: Source, https://github.com/karpetrosyan/hishel
@@ -21,11 +21,20 @@ Classifier: Programming Language :: Python :: 3.10
21
21
  Classifier: Programming Language :: Python :: 3.11
22
22
  Classifier: Programming Language :: Python :: 3.12
23
23
  Classifier: Programming Language :: Python :: 3.13
24
+ Classifier: Programming Language :: Python :: 3.14
24
25
  Classifier: Topic :: Internet :: WWW/HTTP
25
26
  Requires-Python: >=3.9
27
+ Requires-Dist: anyio>=4.9.0
28
+ Requires-Dist: anysqlite>=0.0.5
26
29
  Requires-Dist: httpx>=0.28.0
30
+ Requires-Dist: msgpack>=1.1.2
31
+ Requires-Dist: typing-extensions>=4.14.1
32
+ Provides-Extra: httpx
33
+ Requires-Dist: httpx>=0.28.1; extra == 'httpx'
27
34
  Provides-Extra: redis
28
35
  Requires-Dist: redis==6.2.0; extra == 'redis'
36
+ Provides-Extra: requests
37
+ Requires-Dist: requests>=2.32.5; extra == 'requests'
29
38
  Provides-Extra: s3
30
39
  Requires-Dist: boto3<=1.15.3,>=1.15.0; (python_version < '3.12') and extra == 's3'
31
40
  Requires-Dist: boto3>=1.15.3; (python_version >= '3.12') and extra == 's3'
@@ -59,8 +68,8 @@ Description-Content-Type: text/markdown
59
68
  <img src="https://img.shields.io/pypi/l/hishel" alt="license">
60
69
  </a>
61
70
 
62
- <a href="https://img.shields.io/codecov/c/github/karpetrosyan/hishel">
63
- <img src="https://img.shields.io/codecov/c/github/karpetrosyan/hishel" alt="license">
71
+ <a href="https://coveralls.io/github/karpetrosyan/hishel">
72
+ <img src="https://img.shields.io/coverallsCoverage/github/karpetrosyan/hishel" alt="license">
64
73
  </a>
65
74
 
66
75
  <a href="https://github.com/karpetrosyan/hishel">
@@ -68,6 +77,10 @@ Description-Content-Type: text/markdown
68
77
  </a>
69
78
  </p>
70
79
 
80
+ <p align="center">
81
+ <a href="https://buymeacoffee.com/karpetrosyan" target="_blank"><img src="https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png" alt="Buy Me A Coffee" style="height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;" ></a>
82
+ </p>
83
+
71
84
  -----
72
85
 
73
86
  **Hishel (հիշել, remember)** is a library that implements HTTP Caching for [HTTPX](https://github.com/encode/httpx) and [HTTP Core](https://github.com/encode/httpcore) libraries in accordance with [**RFC 9111**](https://www.rfc-editor.org/rfc/rfc9111.html), the most recent caching specification.
@@ -179,189 +192,67 @@ You have complete control over them; you can change storage or even write your o
179
192
  You can support the project by simply leaving a GitHub star ⭐ or by [contributing](https://hishel.com/contributing/).
180
193
  Help us grow and continue developing good software for you ❤️
181
194
 
182
- # Changelog
183
-
184
- ## 0.1.3 (1st July, 2025)
185
-
186
- - Remove `types-redis` from dev dependencies (#336)
187
- - Bump redis to 6.0.0 and address async `.close()` deprecation warning (#336)
188
- - Avoid race condition when unlinking files in `FileStorage`. (#334)
189
- - Allow prodiving a `path_prefix` in `S3Storage` and `AsyncS3Storage`. (#342)
190
-
191
- ## 0.1.2 (5th April, 2025)
192
-
193
- - Add check for fips compliant python. (#325)
194
- - Fix compatibility with httpx. (#291)
195
- - Use `SyncByteStream` instead of `ByteStream`. (#298)
196
- - Don't raise exceptions if date-containing headers are invalid. (#318)
197
- - Fix for S3 Storage missing metadata in API request. (#320)
198
-
199
- ## 0.1.1 (2nd Nov, 2024)
200
-
201
- - Fix typing extensions not found. (#290)
202
-
203
- ## 0.1.0 (2nd Nov, 2024)
204
-
205
- - Add support for Python 3.12 / drop Python 3.8. (#286)
206
- - Specify usedforsecurity=False in blake2b. (#285)
207
-
208
- ## 0.0.33 (4th Oct, 2024)
209
-
210
- - Added a [Logging](https://hishel.com/advanced/logging/) section to the documentation.
211
-
212
- ## 0.0.32 (27th Sep, 2024)
213
-
214
- - Don't raise an exception if the `Date` header is not present. (#273)
215
-
216
- ## 0.0.31 (22nd Sep, 2024)
217
-
218
- - Ignore file not found error when cleaning up a file storage. (#264)
219
- - Fix `AssertionError` on `client.close()` when use SQLiteStorage. (#269)
220
- - Fix ignored flags when use `force_cache`. (#271)
221
-
222
- ## 0.0.30 (12th July, 2024)
223
-
224
- - Fix cache update on revalidation response with content (rfc9111 section 4.3.3) (#239)
225
- - Fix request extensions that were not passed into revalidation request for transport-based implementation (but were
226
- passed for the pool-based impl) (#247).
227
- - Add `cache_private` property to the controller to support acting as shared cache. (#224)
228
- - Improve efficiency of scanning cached responses in `FileStorage` by reducing number of syscalls. (#252)
229
- - Add `remove` support for storages (#241)
230
-
231
- ## 0.0.29 (23th June, 2024)
232
-
233
- - Documentation hotfix. (#244)
234
-
235
- ## 0.0.28 (23th June, 2024)
236
-
237
- - Add `revalidated` response extension. (#242)
238
-
239
- ## 0.0.27 (31th May, 2024)
240
-
241
- - Fix `RedisStorage` when using without ttl. (#231)
242
-
243
- ## 0.0.26 (12th April, 2024)
244
-
245
- - Expose `AsyncBaseStorage` and `BaseStorage`. (#220)
246
- - Prevent cache hits from resetting the ttl. (#215)
247
-
248
- ## 0.0.25 (26th March, 2024)
249
-
250
- - Add `force_cache` property to the controller, allowing RFC9111 rules to be completely disabled. (#204)
251
- - Add `.gitignore` to cache directory created by `FIleStorage`. (#197)
252
- - Remove `stale_*` headers from the `CacheControl` class. (#199)
253
-
254
- ## 0.0.24 (14th February, 2024)
255
-
256
- - Fix `botocore is not installed` exception when using any kind of storage. (#186)
257
-
258
- ## 0.0.23 (14th February, 2024)
259
-
260
- - Make `S3Storage` to check staleness of all cache files with set interval. (#182)
261
- - Fix an issue where an empty file in `FileCache` could cause a parsing error. (#181)
262
- - Support caching for `POST` and other HTTP methods. (#183)
263
-
264
- ## 0.0.22 (31th January, 2024)
265
-
266
- - Make `FileStorage` to check staleness of all cache files with set interval. (#169)
267
- - Support AWS S3 storages. (#164)
268
- - Move `typing_extensions` from requirements.txt to pyproject.toml. (#161)
269
-
270
- ## 0.0.21 (29th December, 2023)
271
-
272
- - Fix inner transport and connection pool instances closing. (#147)
273
- - Improved error message when the storage type is incorrect. (#138)
274
-
275
- ## 0.0.20 (12th December, 2023)
276
-
277
- - Add in-memory storage. (#133)
278
- - Allow customization of cache key generation. (#130)
279
-
280
- ## 0.0.19 (30th November, 2023)
281
-
282
- - Add `force_cache` extension to enforce the request to be cached, ignoring the HTTP headers. (#117)
283
- - Fix issue where sqlite storage cache get deleted immediately. (#119)
284
- - Support float numbers for storage ttl. (#107)
285
-
286
- ## 0.0.18 (23rd November, 2023)
287
-
288
- - Fix issue where freshness cannot be calculated to re-send request. (#104)
289
- - Add `cache_disabled` extension to temporarily disable the cache (#109)
290
- - Update `datetime.datetime.utcnow()` to `datetime.datetime.now(datetime.timezone.utc)` since `datetime.datetime.utcnow()` has been deprecated. (#111)
291
-
292
- ## 0.0.17 (6th November, 2023)
293
-
294
- - Fix `Last-Modified` validation.
295
-
296
- ## 0.0.16 (25th October, 2023)
297
-
298
- - Add `install_cache` function. (#95)
299
- - Add sqlite support. (#92)
300
- - Move `ttl` argument to `BaseStorage` class. (#94)
301
-
302
- ## 0.0.14 (23rd October, 2023)
303
-
304
- - Replace `AsyncResponseStream` with `AsyncCacheStream`. (#86)
305
- - Add `must-understand` response directive support. (#90)
306
-
307
- ## 0.0.13 (5th October, 2023)
308
-
309
- - Add support for Python 3.12. (#71)
310
- - Fix connections releasing from the connection pool. (#83)
195
+ ## [0.1.5] - 2025-10-18
311
196
 
312
- ## 0.0.12 (8th September, 2023)
197
+ ### 🚀 Features
313
198
 
314
- - Add metadata into the response extensions. (#56)
199
+ - *(perf)* Set chunk size to 128KB for httpx to reduce SQLite read/writes
200
+ - Better cache-control parsing
201
+ - Add close method to storages API (#384)
202
+ - *(perf)* Increase requests buffer size to 128KB, disable charset detection
315
203
 
316
- ## 0.0.11 (15th August, 2023)
204
+ ### 🐛 Bug Fixes
317
205
 
318
- - Add support for request `cache-control` directives. (#42)
319
- - Drop httpcore dependency. (#40)
320
- - Support HTTP methods only if they are defined as cacheable. (#37)
206
+ - *(docs)* Fix some line breaks
321
207
 
322
- ## 0.0.10 (7th August, 2023)
208
+ ### ⚙️ Miscellaneous Tasks
323
209
 
324
- - Add Response metadata. (#33)
325
- - Add API Reference documentation. (#30)
326
- - Use stale responses only if the client is disconnected. (#28)
210
+ - Remove some redundant files from repo
211
+ ## [0.1.4] - 2025-10-14
327
212
 
328
- ## 0.0.9 (1st August, 2023)
213
+ ### 🚀 Features
329
214
 
330
- - Expose Controller API. (#23)
215
+ - Add support for a sans-IO API (#366)
216
+ - Allow already consumed streams with `CacheTransport` (#377)
217
+ - Add sqlite storage for beta storages
218
+ - Get rid of some locks from sqlite storage
219
+ - Better async implemetation for sqlite storage
331
220
 
332
- ## 0.0.8 (31st July, 2023)
221
+ ### 🐛 Bug Fixes
333
222
 
334
- - Skip redis tests if the server was not found. (#16)
335
- - Decrease sleep time for the storage ttl tests. (#18)
336
- - Fail coverage under 100. (#19)
223
+ - Create an sqlite file in a cache folder
224
+ - Fix beta imports
337
225
 
338
- ## 0.0.7 (30th July, 2023)
226
+ ### ⚙️ Miscellaneous Tasks
339
227
 
340
- - Add support for `Heuristic Freshness`. (#11)
341
- - Change `Controller.cache_heuristically` to `Controller.allow_heuristics`. (#12)
342
- - Handle import errors. (#13)
228
+ - Improve CI (#369)
229
+ - *(internal)* Remove src folder (#373)
230
+ - *(internal)* Temporary remove python3.14 from CI
231
+ - *(tests)* Add sqlite tests for new storage
232
+ - *(tests)* Move some tests to beta
233
+ ## [0.1.3] - 2025-07-06
343
234
 
344
- ## 0.0.6 (29th July, 2023)
235
+ ### 🚀 Features
345
236
 
346
- - Fix `Vary` header validation. (#8)
347
- - Dump original requests with the responses. (#7)
237
+ - Support providing a path prefix to S3 storage (#342)
348
238
 
349
- ## 0.0.5 (29th July, 2023)
239
+ ### 📚 Documentation
350
240
 
351
- - Fix httpx response streaming.
241
+ - Update link to httpx transports page (#337)
242
+ ## [0.1.2] - 2025-04-04
352
243
 
353
- ## 0.0.4 (29th July, 2023)
244
+ ### 🐛 Bug Fixes
354
245
 
355
- - Change `YamlSerializer` name to `YAMLSerializer`.
246
+ - Requirements.txt to reduce vulnerabilities (#263)
247
+ ## [0.0.30] - 2024-07-12
356
248
 
357
- ## 0.0.3 (28th July, 2023)
249
+ ### 🐛 Bug Fixes
358
250
 
359
- - Add `from_cache` response extension.
360
- - Add `typing_extensions` into the requirements.
251
+ - Requirements.txt to reduce vulnerabilities (#245)
252
+ - Requirements.txt to reduce vulnerabilities (#255)
253
+ ## [0.0.27] - 2024-05-31
361
254
 
362
- ## 0.0.2 (25th July, 2023)
255
+ ### 🐛 Bug Fixes
363
256
 
364
- - Add [redis](https://redis.io/) support.
365
- - Make backends thread and task safe.
366
- - Add black as a new linter.
367
- - Add an expire time for cached responses.
257
+ - *(redis)* Do not update metadata with negative ttl (#231)
258
+ ## [0.0.1] - 2023-07-22
@@ -0,0 +1,41 @@
1
+ hishel/__init__.py,sha256=4HWxHaEihJ5bsey4XEZA28meUO2Iw3mJrOFhQtWu4FY,1221
2
+ hishel/_controller.py,sha256=nQMEF-upuBf6-r0wyjd2CGYgBhB-JbEw6IgGxtvADJ4,24629
3
+ hishel/_exceptions.py,sha256=qbg55RNlzwhv5JreWY9Zog_zmmiKdn5degtqJKijuRs,198
4
+ hishel/_files.py,sha256=7J5uX7Nnzd7QQWfYuDGh8v6XGLG3eUDBjoJZ4aTaY1c,2228
5
+ hishel/_headers.py,sha256=BPvas0LQgwbz-HZhFykZiHEIeNgnY-E33U__oskYzJw,7323
6
+ hishel/_lfu_cache.py,sha256=GBxToQI8u_a9TzYnLlZMLhgZ8Lb83boPHzTvIgqV6pA,2707
7
+ hishel/_lmdb_types_.pyi,sha256=2qx4-3kZhkKxhkWApZdnoGck3CbPrhUJQIIMLPBT90w,1492
8
+ hishel/_s3.py,sha256=HkmWYjYWAiWgEMp1_Jl79hG5aUpMcD0NDXjj8VHRmQE,4322
9
+ hishel/_serializers.py,sha256=wQ5xqeQPAnzDFxLrjmWUP6f0IC0RihpgpTgy3jljxjE,11646
10
+ hishel/_synchronization.py,sha256=xOmU9_8KAWTAv3r8EpqPISrtSF3slyh1J0Sc7ZQO1rg,897
11
+ hishel/_utils.py,sha256=uO8PcY_E1sHSgBGzZ2GNB4kpKqAlzmnzPCc3s-yDd44,13826
12
+ hishel/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
+ hishel/_async/__init__.py,sha256=_oAltH4emAtUF7_9SSxz_KKGYzSXL34o_EGgGvoPG7E,187
14
+ hishel/_async/_client.py,sha256=WqYHV8SeAXlK6Q0uQe0ixkC99i64iOwD2EPOYhQcUL8,1088
15
+ hishel/_async/_mock.py,sha256=995v9p5xiw3svGSOJATkLMqwodlhZhcwmGygLHM2VFw,1515
16
+ hishel/_async/_pool.py,sha256=xCcSAl4bHI5eVsZyPap7iHDpxzzgfMqYE_txcjQJ1Hs,8195
17
+ hishel/_async/_storages.py,sha256=zR0kIJSN1WK6P0qWpOTceEYtwWTcfgabf7t3qnGDK3w,28899
18
+ hishel/_async/_transports.py,sha256=YTZecg1A5vnv4GnF9y9n394nzqGBAkr-M4BF2lvci5U,11445
19
+ hishel/_sync/__init__.py,sha256=_oAltH4emAtUF7_9SSxz_KKGYzSXL34o_EGgGvoPG7E,187
20
+ hishel/_sync/_client.py,sha256=hHTuS9wOBZhcNSQmbopSWTtTTGYu-q_0FQOc9g5TuRI,1048
21
+ hishel/_sync/_mock.py,sha256=im88tZr-XhP9BpzvIt3uOjndAlNcJvFP7Puv3H-6lKU,1430
22
+ hishel/_sync/_pool.py,sha256=U2b9ZGYUltwTjI2q2KHZwmj4boIqUExJ_rUKWuLmYSs,7960
23
+ hishel/_sync/_storages.py,sha256=PAt0HdkGE-LNd-UV3EclrahuFFPcatDK4DoYiTXhiBM,28108
24
+ hishel/_sync/_transports.py,sha256=ivPztcm84PxObIXMZ3hLD_o5HMo8XXGhRlSg0Lm_sNo,11117
25
+ hishel/beta/__init__.py,sha256=VzlIfaGQaYfpesqOujNcG0HMCaIF9CzEyhIY04A4c8g,1477
26
+ hishel/beta/_async_cache.py,sha256=vhdTyRIjMpKzc4qKPZGVoFQa9-60aCXLNGltOE1mDg8,6807
27
+ hishel/beta/_sync_cache.py,sha256=a0fcNY5qApPBXQ_kCUBW2Ccwwj0bEkNTVmv-6W3cqPI,6553
28
+ hishel/beta/httpx.py,sha256=zOnUUafa1zyi2hmcWeP7uaifcj7OIHlXvvuh19gKfL0,11027
29
+ hishel/beta/requests.py,sha256=20i5H7m67BH90iT7RzEbeyiNsbS8lx7eU6kAdWInfQY,6454
30
+ hishel/beta/_core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
+ hishel/beta/_core/_headers.py,sha256=ii4x2L6GoQFpqpgg28OtFh7p2DoM9mhE4q6CjW6xUWc,17473
32
+ hishel/beta/_core/_spec.py,sha256=5z5kZ7Q9BO8yZynQIiDiIly77iTMzUljekhmrF1Otyc,99529
33
+ hishel/beta/_core/models.py,sha256=rbU72bCT_lpwASIs5Qzmo3vcjiDm-lu0C99-CgYWl7k,5524
34
+ hishel/beta/_core/_async/_storages/_sqlite.py,sha256=_PZ4t8KXk-YErTCze80Uh8XnG8WZ2323VrRd0NwoKHY,14719
35
+ hishel/beta/_core/_base/_storages/_base.py,sha256=mHOQ1p1BTuhV5vgeIdn61OAbVjiD8vu4S4CCal6sS5A,8521
36
+ hishel/beta/_core/_base/_storages/_packing.py,sha256=8s0UxYTLdwzs4A_1E896EVj5VPT8Aqv9UabWbeMD8lw,4898
37
+ hishel/beta/_core/_sync/_storages/_sqlite.py,sha256=1sBU_geVbUSC8e46gao5p_k8MogYEWnZodse55FQQ6Q,14153
38
+ hishel-0.1.5.dist-info/METADATA,sha256=ZB-4dyu3L8icekMrIwMEhZrjlSfryzlSBITW0-b7BCQ,9310
39
+ hishel-0.1.5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
40
+ hishel-0.1.5.dist-info/licenses/LICENSE,sha256=1qQj7pE0V2O9OIedvyOgLGLvZLaPd3nFEup3IBEOZjQ,1493
41
+ hishel-0.1.5.dist-info/RECORD,,
@@ -1,27 +0,0 @@
1
- hishel/__init__.py,sha256=b-mInXgxD6YLLyk5l1YV1B1nZdzSchPoI48Lwa4hMLc,368
2
- hishel/_controller.py,sha256=be1_eL34Gue6a1px_eLFWWxViPQbYENMvtZmv8gFRhA,24636
3
- hishel/_exceptions.py,sha256=qbg55RNlzwhv5JreWY9Zog_zmmiKdn5degtqJKijuRs,198
4
- hishel/_files.py,sha256=7J5uX7Nnzd7QQWfYuDGh8v6XGLG3eUDBjoJZ4aTaY1c,2228
5
- hishel/_headers.py,sha256=BPvas0LQgwbz-HZhFykZiHEIeNgnY-E33U__oskYzJw,7323
6
- hishel/_lfu_cache.py,sha256=GBxToQI8u_a9TzYnLlZMLhgZ8Lb83boPHzTvIgqV6pA,2707
7
- hishel/_s3.py,sha256=HkmWYjYWAiWgEMp1_Jl79hG5aUpMcD0NDXjj8VHRmQE,4322
8
- hishel/_serializers.py,sha256=gepVb8JC4aBkGw9kLcbAsyo-1XgK_lzTssLr_8av4SQ,11640
9
- hishel/_synchronization.py,sha256=xOmU9_8KAWTAv3r8EpqPISrtSF3slyh1J0Sc7ZQO1rg,897
10
- hishel/_utils.py,sha256=7HhJlomBCqbhBv01ZuK5WfG8dCtGONLFFF7ujIvBBWQ,3277
11
- hishel/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
- hishel/_async/__init__.py,sha256=_oAltH4emAtUF7_9SSxz_KKGYzSXL34o_EGgGvoPG7E,187
13
- hishel/_async/_client.py,sha256=AkVSSbNTTHmK0gX6PRYVQ-3aDbuCX2Im4VKbLkwLiBU,1101
14
- hishel/_async/_mock.py,sha256=995v9p5xiw3svGSOJATkLMqwodlhZhcwmGygLHM2VFw,1515
15
- hishel/_async/_pool.py,sha256=xCcSAl4bHI5eVsZyPap7iHDpxzzgfMqYE_txcjQJ1Hs,8195
16
- hishel/_async/_storages.py,sha256=pc1u9pmOLzN2bizOzvqecky7GAZWpI5k5jLqzQ3sd5s,28974
17
- hishel/_async/_transports.py,sha256=BhtEj8SHxu0YKHWDDP5mfCabIWgrAM7lMLJ1-TwWigw,11203
18
- hishel/_sync/__init__.py,sha256=_oAltH4emAtUF7_9SSxz_KKGYzSXL34o_EGgGvoPG7E,187
19
- hishel/_sync/_client.py,sha256=O-gwm9DsveKtSFUfqdbBB-3I1FmXr5rE-uQ7X5frwDA,1060
20
- hishel/_sync/_mock.py,sha256=im88tZr-XhP9BpzvIt3uOjndAlNcJvFP7Puv3H-6lKU,1430
21
- hishel/_sync/_pool.py,sha256=U2b9ZGYUltwTjI2q2KHZwmj4boIqUExJ_rUKWuLmYSs,7960
22
- hishel/_sync/_storages.py,sha256=Hal5BujHvCH49hv79chpIrFjVQsk_5rU51IX415REes,28183
23
- hishel/_sync/_transports.py,sha256=cQQgdJSy1zfmIa14ycADPek9Tobpa33nqBHA614_6kc,10875
24
- hishel-0.1.3.dist-info/METADATA,sha256=DLnpaHpXbtsuIjPOsNrJuts1997dz3XGHhKywucUh-s,12890
25
- hishel-0.1.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
26
- hishel-0.1.3.dist-info/licenses/LICENSE,sha256=1qQj7pE0V2O9OIedvyOgLGLvZLaPd3nFEup3IBEOZjQ,1493
27
- hishel-0.1.3.dist-info/RECORD,,
File without changes