datacosmos 0.0.11__py3-none-any.whl → 0.0.13__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.
Potentially problematic release.
This version of datacosmos might be problematic. Click here for more details.
- datacosmos/auth/__init__.py +1 -0
- datacosmos/auth/local_token_fetcher.py +156 -0
- datacosmos/auth/token.py +82 -0
- datacosmos/config/auth/__init__.py +1 -0
- datacosmos/config/auth/factory.py +157 -0
- datacosmos/config/config.py +56 -177
- datacosmos/config/constants.py +26 -0
- datacosmos/config/loaders/yaml_source.py +62 -0
- datacosmos/config/models/local_user_account_authentication_config.py +13 -11
- datacosmos/config/models/m2m_authentication_config.py +9 -11
- datacosmos/datacosmos_client.py +153 -55
- datacosmos/stac/stac_client.py +2 -1
- datacosmos/stac/storage/dataclasses/upload_path.py +26 -47
- datacosmos/stac/storage/storage_client.py +2 -0
- datacosmos/stac/storage/uploader.py +42 -13
- {datacosmos-0.0.11.dist-info → datacosmos-0.0.13.dist-info}/METADATA +2 -1
- {datacosmos-0.0.11.dist-info → datacosmos-0.0.13.dist-info}/RECORD +20 -13
- {datacosmos-0.0.11.dist-info → datacosmos-0.0.13.dist-info}/WHEEL +0 -0
- {datacosmos-0.0.11.dist-info → datacosmos-0.0.13.dist-info}/licenses/LICENSE.md +0 -0
- {datacosmos-0.0.11.dist-info → datacosmos-0.0.13.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: datacosmos
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.13
|
|
4
4
|
Summary: A library for interacting with DataCosmos from Python code
|
|
5
5
|
Author-email: Open Cosmos <support@open-cosmos.com>
|
|
6
6
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -20,6 +20,7 @@ Requires-Dist: black==22.3.0; extra == "dev"
|
|
|
20
20
|
Requires-Dist: ruff==0.9.5; extra == "dev"
|
|
21
21
|
Requires-Dist: pytest==7.2.0; extra == "dev"
|
|
22
22
|
Requires-Dist: bandit[toml]==1.7.4; extra == "dev"
|
|
23
|
+
Requires-Dist: pbr>=6.0.0; extra == "dev"
|
|
23
24
|
Requires-Dist: isort==5.11.4; extra == "dev"
|
|
24
25
|
Requires-Dist: pydocstyle==6.1.1; extra == "dev"
|
|
25
26
|
Dynamic: license-file
|
|
@@ -1,17 +1,24 @@
|
|
|
1
1
|
datacosmos/__init__.py,sha256=dVHKpbz5FVtfoJAWHRdsUENG6H-vs4UrkuwnIvOGJr4,66
|
|
2
|
-
datacosmos/datacosmos_client.py,sha256=
|
|
2
|
+
datacosmos/datacosmos_client.py,sha256=qbKAzym-84ihLO9WiUgw15QbAEplxPmLc4BMUBtNoEg,10191
|
|
3
|
+
datacosmos/auth/__init__.py,sha256=ynCThS9QyLKV9miRdnjm8uF_breiGGiCcI0FaOSw_2o,45
|
|
4
|
+
datacosmos/auth/local_token_fetcher.py,sha256=E4MI2lTRHAmxIQA7qY6hmpAUZETTzXNO8MViBaXnxGs,5268
|
|
5
|
+
datacosmos/auth/token.py,sha256=neSV9gnnFa-rxEwMAJlZe_cReV6g4PQf8mq4-1mZzB8,2558
|
|
3
6
|
datacosmos/config/__init__.py,sha256=KCsaTb9-ZgFui1GM8wZFIPLJy0D0O8l8Z1Sv3NRD9UM,140
|
|
4
|
-
datacosmos/config/config.py,sha256=
|
|
7
|
+
datacosmos/config/config.py,sha256=JHWmS6Q_T32iMly7cvJncjPCvtIgamBigKJJcvjGH7g,3465
|
|
8
|
+
datacosmos/config/constants.py,sha256=HztzJ0OCti20uMXPQGvCFf_M4Vz1xRdxD2_2k9mAThs,855
|
|
9
|
+
datacosmos/config/auth/__init__.py,sha256=jsqJQby3tyugcGtY7BoDKvv5qotkAomPc2uOELUlKtE,51
|
|
10
|
+
datacosmos/config/auth/factory.py,sha256=svkL58xfqZ2ubcqQGZq9llb4RH-zkwrMPgBDD1Wk3Js,6213
|
|
11
|
+
datacosmos/config/loaders/yaml_source.py,sha256=GY3RZvIjFJagTPiPmOhmFRa8aD0p0rZtTXgywU28fxo,2281
|
|
5
12
|
datacosmos/config/models/__init__.py,sha256=r3lThPkyKjBjUZXRNscFzOrmn_-m_i9DvG3RePfCFYc,41
|
|
6
13
|
datacosmos/config/models/authentication_config.py,sha256=01Q90-yupbJ5orYDtatZIm9EaL7roQ-oUMoZfFMRzIM,499
|
|
7
|
-
datacosmos/config/models/local_user_account_authentication_config.py,sha256=
|
|
8
|
-
datacosmos/config/models/m2m_authentication_config.py,sha256=
|
|
14
|
+
datacosmos/config/models/local_user_account_authentication_config.py,sha256=SJZRmrOm1nILHN9b-yyMN0vrhhHVYO81W-MUHvfUxJ0,971
|
|
15
|
+
datacosmos/config/models/m2m_authentication_config.py,sha256=4l3Mmgips73rYGX5l7FCoHAWpWSGQYYkzZYvQzbmRz0,782
|
|
9
16
|
datacosmos/config/models/no_authentication_config.py,sha256=x5xikSGPuqQbrf_S2oIWXo5XxAORci2sSE5KyJvZHVw,312
|
|
10
17
|
datacosmos/config/models/url.py,sha256=bBeulXQ2c-tLJyIoo3sTi9SPsZIyIDn_D2zmkCGWp9s,1597
|
|
11
18
|
datacosmos/exceptions/__init__.py,sha256=Crz8W7mOvPUXYcfDVotvjUt_3HKawBpmJA_-uel9UJk,45
|
|
12
19
|
datacosmos/exceptions/datacosmos_exception.py,sha256=rKjJvQDvCEbxXWWccxB5GI_sth662bW8Yml0hX-vRw4,923
|
|
13
20
|
datacosmos/stac/__init__.py,sha256=B4x_Mr4X7TzQoYtRC-VzI4W-fEON5WUOaz8cWJbk3Fc,214
|
|
14
|
-
datacosmos/stac/stac_client.py,sha256=
|
|
21
|
+
datacosmos/stac/stac_client.py,sha256=S0HESbZhlIdS0x_VSCeOSuOFaB50U4CMnTOX_0zLjn8,730
|
|
15
22
|
datacosmos/stac/collection/__init__.py,sha256=VQMLnsU3sER5kh4YxHrHP7XCA3DG1y0n9yoSmvycOY0,212
|
|
16
23
|
datacosmos/stac/collection/collection_client.py,sha256=-Nn3yqL4mQS05YAMd0IUmv03hdHKYBtVG2_EqoaAQWc,6064
|
|
17
24
|
datacosmos/stac/collection/models/__init__.py,sha256=TQaihUS_CM9Eaekm4SbzFTNfv7BmabHv3Z-f37Py5Qs,40
|
|
@@ -33,10 +40,10 @@ datacosmos/stac/item/models/item_update.py,sha256=_CpjQn9SsfedfuxlHSiGeptqY4M-p1
|
|
|
33
40
|
datacosmos/stac/item/models/raster_band.py,sha256=CoEVs-YyPE5Fse0He9DdOs4dGZpzfCsCuVzOcdXa_UM,354
|
|
34
41
|
datacosmos/stac/storage/__init__.py,sha256=hivfSpOaoSwCAymgU0rTgvSk9LSPAn1cPLQQ9fLmFX0,151
|
|
35
42
|
datacosmos/stac/storage/storage_base.py,sha256=5ioMKbEltPEWr4dkhZQiUhdBFEhe7ajIYUd9z3K8elU,1483
|
|
36
|
-
datacosmos/stac/storage/storage_client.py,sha256=
|
|
37
|
-
datacosmos/stac/storage/uploader.py,sha256=
|
|
43
|
+
datacosmos/stac/storage/storage_client.py,sha256=4boqQ3zVMrk9X2IXus-Cs429juLe0cUQ0XEzg_y3yOA,1205
|
|
44
|
+
datacosmos/stac/storage/uploader.py,sha256=cUe-6DbcEXcENReDMaQe4etVCW1n2kPMxQlCuB8YnqU,4635
|
|
38
45
|
datacosmos/stac/storage/dataclasses/__init__.py,sha256=IjcyA8Vod-z1_Gi1FMZhK58Owman0foL25Hs0YtkYYs,43
|
|
39
|
-
datacosmos/stac/storage/dataclasses/upload_path.py,sha256=
|
|
46
|
+
datacosmos/stac/storage/dataclasses/upload_path.py,sha256=gbpV67FECFNyXn-yGUSuLvGGWHtibbZq7Qu9yGod3C0,1398
|
|
40
47
|
datacosmos/utils/__init__.py,sha256=XQbAnoqJrPpnSpEzAbjh84yqYWw8cBM8mNp8ynTG-54,50
|
|
41
48
|
datacosmos/utils/url.py,sha256=iQwZr6mYRoePqUZg-k3KQSV9o2wju5ZuCa5WS_GyJo4,2114
|
|
42
49
|
datacosmos/utils/http_response/__init__.py,sha256=BvOWwC5coYqq_kFn8gIw5m54TLpdfJKlW9vgRkfhXiA,33
|
|
@@ -44,8 +51,8 @@ datacosmos/utils/http_response/check_api_response.py,sha256=dKWW01jn2_lWV0xpOBAB
|
|
|
44
51
|
datacosmos/utils/http_response/models/__init__.py,sha256=Wj8YT6dqw7rAz_rctllxo5Or_vv8DwopvQvBzwCTvpw,45
|
|
45
52
|
datacosmos/utils/http_response/models/datacosmos_error.py,sha256=Uqi2uM98nJPeCbM7zngV6vHSk97jEAb_nkdDEeUjiQM,740
|
|
46
53
|
datacosmos/utils/http_response/models/datacosmos_response.py,sha256=oV4n-sue7K1wwiIQeHpxdNU8vxeqF3okVPE2rydw5W0,336
|
|
47
|
-
datacosmos-0.0.
|
|
48
|
-
datacosmos-0.0.
|
|
49
|
-
datacosmos-0.0.
|
|
50
|
-
datacosmos-0.0.
|
|
51
|
-
datacosmos-0.0.
|
|
54
|
+
datacosmos-0.0.13.dist-info/licenses/LICENSE.md,sha256=vpbRI-UUbZVQfr3VG_CXt9HpRnL1b5kt8uTVbirxeyI,1486
|
|
55
|
+
datacosmos-0.0.13.dist-info/METADATA,sha256=8SZ4fh8VHOt8UXkmbu9WnDUX75CEyMdxm777mMZ_0vo,939
|
|
56
|
+
datacosmos-0.0.13.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
57
|
+
datacosmos-0.0.13.dist-info/top_level.txt,sha256=ueobs5CNeyDbPMgXPcVV0d0yNdm8CvGtDT3CaksRVtA,11
|
|
58
|
+
datacosmos-0.0.13.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|