nucliadb-utils 6.0.0.post2298__py3-none-any.whl → 6.0.0.post2306__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.
- nucliadb_utils/storages/s3.py +7 -1
- {nucliadb_utils-6.0.0.post2298.dist-info → nucliadb_utils-6.0.0.post2306.dist-info}/METADATA +3 -3
- {nucliadb_utils-6.0.0.post2298.dist-info → nucliadb_utils-6.0.0.post2306.dist-info}/RECORD +6 -6
- {nucliadb_utils-6.0.0.post2298.dist-info → nucliadb_utils-6.0.0.post2306.dist-info}/WHEEL +0 -0
- {nucliadb_utils-6.0.0.post2298.dist-info → nucliadb_utils-6.0.0.post2306.dist-info}/top_level.txt +0 -0
- {nucliadb_utils-6.0.0.post2298.dist-info → nucliadb_utils-6.0.0.post2306.dist-info}/zip-safe +0 -0
nucliadb_utils/storages/s3.py
CHANGED
@@ -19,6 +19,7 @@
|
|
19
19
|
#
|
20
20
|
from __future__ import annotations
|
21
21
|
|
22
|
+
import base64
|
22
23
|
from contextlib import AsyncExitStack
|
23
24
|
from datetime import datetime
|
24
25
|
from typing import AsyncGenerator, AsyncIterator, Optional
|
@@ -547,5 +548,10 @@ def parse_object_metadata(obj: dict, key: str) -> ObjectMetadata:
|
|
547
548
|
# Content type
|
548
549
|
content_type = custom_metadata.get("content_type") or obj.get("ContentType") or ""
|
549
550
|
# Filename
|
550
|
-
|
551
|
+
base64_filename = custom_metadata.get("base64_filename")
|
552
|
+
if base64_filename:
|
553
|
+
filename = base64.b64decode(base64_filename).decode()
|
554
|
+
else:
|
555
|
+
filename = custom_metadata.get("filename") or key.split("/")[-1]
|
556
|
+
|
551
557
|
return ObjectMetadata(size=size, content_type=content_type, filename=filename)
|
{nucliadb_utils-6.0.0.post2298.dist-info → nucliadb_utils-6.0.0.post2306.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: nucliadb_utils
|
3
|
-
Version: 6.0.0.
|
3
|
+
Version: 6.0.0.post2306
|
4
4
|
Home-page: https://nuclia.com
|
5
5
|
License: BSD
|
6
6
|
Classifier: Development Status :: 4 - Beta
|
@@ -24,8 +24,8 @@ Requires-Dist: PyNaCl
|
|
24
24
|
Requires-Dist: pyjwt>=2.4.0
|
25
25
|
Requires-Dist: memorylru>=1.1.2
|
26
26
|
Requires-Dist: mrflagly>=0.2.9
|
27
|
-
Requires-Dist: nucliadb-protos>=6.0.0.
|
28
|
-
Requires-Dist: nucliadb-telemetry>=6.0.0.
|
27
|
+
Requires-Dist: nucliadb-protos>=6.0.0.post2306
|
28
|
+
Requires-Dist: nucliadb-telemetry>=6.0.0.post2306
|
29
29
|
Provides-Extra: cache
|
30
30
|
Requires-Dist: redis>=4.3.4; extra == "cache"
|
31
31
|
Requires-Dist: orjson>=3.6.7; extra == "cache"
|
@@ -46,7 +46,7 @@ nucliadb_utils/storages/gcs.py,sha256=MUPPTmPo5AfCWPykNvlIO35-C_8r94yWJgBxcDsRIg
|
|
46
46
|
nucliadb_utils/storages/local.py,sha256=kxofHdNy4QBtdM797AeksNjIUP2kw9vIC0X7AHABJBI,10374
|
47
47
|
nucliadb_utils/storages/nuclia.py,sha256=vEv94xAT7QM2g80S25QyrOw2pzvP2BAX-ADgZLtuCVc,2097
|
48
48
|
nucliadb_utils/storages/object_store.py,sha256=Tw10GmpYfM5TMqJ3Tk9pLQ9wLMBk1-snL_m6uasiZDQ,4257
|
49
|
-
nucliadb_utils/storages/s3.py,sha256=
|
49
|
+
nucliadb_utils/storages/s3.py,sha256=nXyDCa1_cGGRNJ6j1SHhu84WL0ig3UGGpzzUajKPV6Q,19647
|
50
50
|
nucliadb_utils/storages/settings.py,sha256=ugCPy1zxBOmA2KosT-4tsjpvP002kg5iQyi42yCGCJA,1285
|
51
51
|
nucliadb_utils/storages/storage.py,sha256=onwQJ4at-XewEG7dxcWdOqobfCw4w0PyPC7olvFJgjI,20295
|
52
52
|
nucliadb_utils/storages/utils.py,sha256=8g2rIwJeYIumQLOB47Yw1rx3twlhRB_cJxer65QfZmk,1479
|
@@ -59,8 +59,8 @@ nucliadb_utils/tests/indexing.py,sha256=YW2QhkhO9Q_8A4kKWJaWSvXvyQ_AiAwY1VylcfVQ
|
|
59
59
|
nucliadb_utils/tests/local.py,sha256=fXIBasrvdaFJM-sw2wk1_oiFzBcm9O10iCyC-OiXwY8,1914
|
60
60
|
nucliadb_utils/tests/nats.py,sha256=xqpww4jZjTKY9oPGlJdDJG67L3FIBQsa9qDHxILR8r8,7687
|
61
61
|
nucliadb_utils/tests/s3.py,sha256=pl-RJFjA4MH6iXkqhsh5g8gDuEhrYu1nPZ-laxlrMlE,3704
|
62
|
-
nucliadb_utils-6.0.0.
|
63
|
-
nucliadb_utils-6.0.0.
|
64
|
-
nucliadb_utils-6.0.0.
|
65
|
-
nucliadb_utils-6.0.0.
|
66
|
-
nucliadb_utils-6.0.0.
|
62
|
+
nucliadb_utils-6.0.0.post2306.dist-info/METADATA,sha256=Oef09iG7iuVLpjg6AOvHdufhybUdhR6D7l5WhxHy4ZQ,2055
|
63
|
+
nucliadb_utils-6.0.0.post2306.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
64
|
+
nucliadb_utils-6.0.0.post2306.dist-info/top_level.txt,sha256=fE3vJtALTfgh7bcAWcNhcfXkNPp_eVVpbKK-2IYua3E,15
|
65
|
+
nucliadb_utils-6.0.0.post2306.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
66
|
+
nucliadb_utils-6.0.0.post2306.dist-info/RECORD,,
|
File without changes
|
{nucliadb_utils-6.0.0.post2298.dist-info → nucliadb_utils-6.0.0.post2306.dist-info}/top_level.txt
RENAMED
File without changes
|
{nucliadb_utils-6.0.0.post2298.dist-info → nucliadb_utils-6.0.0.post2306.dist-info}/zip-safe
RENAMED
File without changes
|