eodag 3.5.1__py3-none-any.whl → 3.7.0__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.
- eodag/api/core.py +29 -14
- eodag/api/product/__init__.py +30 -0
- eodag/api/product/metadata_mapping.py +20 -3
- eodag/api/search_result.py +155 -1
- eodag/cli.py +60 -44
- eodag/config.py +7 -6
- eodag/plugins/authentication/openid_connect.py +1 -2
- eodag/plugins/download/aws.py +145 -178
- eodag/plugins/download/base.py +18 -5
- eodag/plugins/download/creodias_s3.py +10 -5
- eodag/plugins/download/http.py +14 -6
- eodag/plugins/download/s3rest.py +1 -2
- eodag/plugins/manager.py +1 -1
- eodag/plugins/search/base.py +34 -4
- eodag/plugins/search/build_search_result.py +11 -6
- eodag/plugins/search/cop_marine.py +2 -0
- eodag/plugins/search/qssearch.py +48 -26
- eodag/resources/ext_product_types.json +1 -1
- eodag/resources/product_types.yml +100 -153
- eodag/resources/providers.yml +58 -325
- eodag/resources/stac.yml +1 -2
- eodag/resources/user_conf_template.yml +0 -11
- eodag/rest/core.py +5 -9
- eodag/rest/server.py +9 -7
- eodag/utils/__init__.py +48 -27
- eodag/utils/exceptions.py +4 -0
- eodag/utils/s3.py +605 -65
- {eodag-3.5.1.dist-info → eodag-3.7.0.dist-info}/METADATA +10 -10
- {eodag-3.5.1.dist-info → eodag-3.7.0.dist-info}/RECORD +33 -33
- {eodag-3.5.1.dist-info → eodag-3.7.0.dist-info}/WHEEL +0 -0
- {eodag-3.5.1.dist-info → eodag-3.7.0.dist-info}/entry_points.txt +0 -0
- {eodag-3.5.1.dist-info → eodag-3.7.0.dist-info}/licenses/LICENSE +0 -0
- {eodag-3.5.1.dist-info → eodag-3.7.0.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: eodag
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.7.0
|
|
4
4
|
Summary: Earth Observation Data Access Gateway
|
|
5
5
|
Home-page: https://github.com/CS-SI/eodag
|
|
6
6
|
Author: CS GROUP - France
|
|
@@ -86,6 +86,7 @@ Requires-Dist: imageio; extra == "tutorials"
|
|
|
86
86
|
Requires-Dist: rasterio; extra == "tutorials"
|
|
87
87
|
Requires-Dist: netcdf4; extra == "tutorials"
|
|
88
88
|
Requires-Dist: cartopy; extra == "tutorials"
|
|
89
|
+
Requires-Dist: covjsonkit; extra == "tutorials"
|
|
89
90
|
Provides-Extra: dev
|
|
90
91
|
Requires-Dist: eodag[all-providers,csw,server,stubs]; extra == "dev"
|
|
91
92
|
Requires-Dist: pytest; extra == "dev"
|
|
@@ -119,12 +120,13 @@ Requires-Dist: types-tqdm; extra == "stubs"
|
|
|
119
120
|
Requires-Dist: types-urllib3; extra == "stubs"
|
|
120
121
|
Provides-Extra: docs
|
|
121
122
|
Requires-Dist: eodag[all,stubs]; extra == "docs"
|
|
123
|
+
Requires-Dist: nbsphinx; extra == "docs"
|
|
122
124
|
Requires-Dist: sphinx; extra == "docs"
|
|
125
|
+
Requires-Dist: sphinx-autodoc-typehints; extra == "docs"
|
|
123
126
|
Requires-Dist: sphinx-book-theme>=1.0.0; extra == "docs"
|
|
124
127
|
Requires-Dist: sphinx-copybutton; extra == "docs"
|
|
125
128
|
Requires-Dist: sphinx-tabs; extra == "docs"
|
|
126
|
-
Requires-Dist:
|
|
127
|
-
Requires-Dist: sphinx_autodoc_typehints; extra == "docs"
|
|
129
|
+
Requires-Dist: sphinxcontrib-programoutput; extra == "docs"
|
|
128
130
|
Requires-Dist: sphinxemoji; extra == "docs"
|
|
129
131
|
Dynamic: license-file
|
|
130
132
|
|
|
@@ -174,23 +176,21 @@ data provider. The EODAG SDK is structured around three functions:
|
|
|
174
176
|
|
|
175
177
|
* List product types: list of supported products and their description
|
|
176
178
|
|
|
177
|
-
* Search products (by product type or uid)
|
|
179
|
+
* Search products (by product type or uid): searches products according to the search criteria provided
|
|
178
180
|
|
|
179
|
-
* Download products
|
|
181
|
+
* Download products: download product “as is"
|
|
180
182
|
|
|
181
183
|
EODAG is developed in Python. It is structured according to a modular plugin architecture, easily extensible and able to
|
|
182
184
|
integrate new data providers. Three types of plugins compose the tool:
|
|
183
185
|
|
|
184
|
-
* Catalog search plugins, responsible for searching data (OpenSearch,
|
|
186
|
+
* Catalog search plugins, responsible for searching data (STAC, OpenSearch, OData, ...), building paths, retrieving quicklook,
|
|
185
187
|
combining results
|
|
186
188
|
|
|
187
|
-
* Download plugins, allowing to download and retrieve data locally (via
|
|
189
|
+
* Download plugins, allowing to download and retrieve data locally (via HTTP, S3, ...), always with the same directory
|
|
188
190
|
organization
|
|
189
191
|
|
|
190
192
|
* Authentication plugins, which are used to authenticate the user on the external services used (JSON Token, Basic Auth, OAUTH, ...).
|
|
191
193
|
|
|
192
|
-
Since v2.0 EODAG can be run as `STAC client or server <https://eodag.readthedocs.io/en/latest/stac.html>`_.
|
|
193
|
-
|
|
194
194
|
Read `the documentation <https://eodag.readthedocs.io/en/latest/>`_ for more insights.
|
|
195
195
|
|
|
196
196
|
.. image:: https://raw.githubusercontent.com/CS-SI/eodag/develop/docs/_static/eodag_overview.png
|
|
@@ -317,7 +317,7 @@ An eodag instance can be exposed through a STAC compliant REST api from the comm
|
|
|
317
317
|
|
|
318
318
|
.. code-block:: bash
|
|
319
319
|
|
|
320
|
-
docker run -p 5000:5000 --rm csspace/eodag-server:3.
|
|
320
|
+
docker run -p 5000:5000 --rm csspace/eodag-server:3.7.0
|
|
321
321
|
|
|
322
322
|
You can also browse over your STAC API server using `STAC Browser <https://github.com/radiantearth/stac-browser>`_.
|
|
323
323
|
Simply run:
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
eodag/__init__.py,sha256=qADIO6H3KR0CMs0qePdJROjSzcGnHaYpv-RFIk18WGQ,1608
|
|
2
|
-
eodag/cli.py,sha256=
|
|
3
|
-
eodag/config.py,sha256=
|
|
2
|
+
eodag/cli.py,sha256=XCa5Q1rt5ZCq4QNm8SGknNyadYlS9TIEZRukMvcEgH4,30326
|
|
3
|
+
eodag/config.py,sha256=WO6NtTPl4cSr1dxg9gz398Bkb_YgYc0y7XcMLYUIr88,48336
|
|
4
4
|
eodag/crunch.py,sha256=fLVAPGVPw31N_DrnFk4gkCpQZLMY8oBhK6NUSYmdr24,1099
|
|
5
5
|
eodag/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
eodag/api/__init__.py,sha256=ytr30NUVmEtmJTsp3QCwkCIhS1nF6UlFCv0vmySHN7g,735
|
|
7
|
-
eodag/api/core.py,sha256=
|
|
8
|
-
eodag/api/search_result.py,sha256=
|
|
9
|
-
eodag/api/product/__init__.py,sha256=
|
|
7
|
+
eodag/api/core.py,sha256=kQshgKVh2gHJ4MDmQfbB5ctGWxK-S72Pki2b8uIKGlc,111838
|
|
8
|
+
eodag/api/search_result.py,sha256=2Y2W3xDUyainwcyYBQljGRi6oyOqTTspgCgIlNG4kCc,14383
|
|
9
|
+
eodag/api/product/__init__.py,sha256=k5iNHxXX6wDLsUo725W4U_Jz8CVbZTbfE8R9s1YQwKA,2508
|
|
10
10
|
eodag/api/product/_assets.py,sha256=9bWIe_SYvsQO-q_lQFd7SxhUIWv7feze2-wnXOe8hhs,7570
|
|
11
11
|
eodag/api/product/_product.py,sha256=UXCaWUtkAGWVCfF68zWCYDoEUUfxAdC0RGaNLZ3vUQ8,26794
|
|
12
|
-
eodag/api/product/metadata_mapping.py,sha256
|
|
12
|
+
eodag/api/product/metadata_mapping.py,sha256=XJhsh33Xpo0-ns73yp96agIgBaDmnumeWOYPMZj9gsg,74245
|
|
13
13
|
eodag/api/product/drivers/__init__.py,sha256=Sy9bGmDhWCAxvxRUf3QGijjQoQvzS1LSUMN34Usq6fM,3357
|
|
14
14
|
eodag/api/product/drivers/base.py,sha256=iPAE5Jx3isxmHHFPP-jysdUylYbsbIq6UejU3qsMROE,4111
|
|
15
15
|
eodag/api/product/drivers/generic.py,sha256=RER088E5_mqyGw1Pa4Kxea5YMFakAHFNcZEQINRiDwM,2069
|
|
@@ -17,7 +17,7 @@ eodag/api/product/drivers/sentinel1.py,sha256=xpvhOvVhpuwVihPMo_q79VI67ru-FqKtbR
|
|
|
17
17
|
eodag/api/product/drivers/sentinel2.py,sha256=dMfIrcwF4h8KoyUj94yPUhRiN7FIef4mTzfbkkhLIc8,3124
|
|
18
18
|
eodag/plugins/__init__.py,sha256=KQkD5aVwb9I6C-Rmi5ABEG1-j8w5FP1zKN12vagsT9Y,739
|
|
19
19
|
eodag/plugins/base.py,sha256=bBp4k8QYJFEE6CRctrVwjws6suBwQdCLrLmvoGAmG3A,2670
|
|
20
|
-
eodag/plugins/manager.py,sha256=
|
|
20
|
+
eodag/plugins/manager.py,sha256=EJOMg3nxaZB_J9gt5wqMMm7Rs1zHKyYehwyYNfVrMbE,20143
|
|
21
21
|
eodag/plugins/apis/__init__.py,sha256=PyY4f7P2iu3MkLPnw5eOrVew2fuavbBL3Asci3Ulwoo,744
|
|
22
22
|
eodag/plugins/apis/base.py,sha256=oCEKVtIbOjzNgM3lzaCCtO-DhU2PvGfKaATG6OxR-V8,2818
|
|
23
23
|
eodag/plugins/apis/ecmwf.py,sha256=xIUCjFOTtVdcpNj7MRKlSOXN8nZGusbH5tqEb0su3No,11387
|
|
@@ -29,7 +29,7 @@ eodag/plugins/authentication/generic.py,sha256=z-u4WMixeG4nKwc70cUGVBXt3IVheDPA6
|
|
|
29
29
|
eodag/plugins/authentication/header.py,sha256=U_KnUqgZTLHXM5OKdGbH6jRqoQ0uIfOoxO6krUeAAcQ,4284
|
|
30
30
|
eodag/plugins/authentication/keycloak.py,sha256=m5c6Os_T8UGfdXS9SemhuUBhwsC4foxmrVA6VXEXamU,7358
|
|
31
31
|
eodag/plugins/authentication/oauth.py,sha256=fCMx7OxS3JNO9lLZhQNnL9lsBB9nFwZJLEYXI49QRtw,1952
|
|
32
|
-
eodag/plugins/authentication/openid_connect.py,sha256=
|
|
32
|
+
eodag/plugins/authentication/openid_connect.py,sha256=lj-9RPz2BADU-1ckawLmuSi3TSexABsDDPCHLp8Frsc,27084
|
|
33
33
|
eodag/plugins/authentication/qsauth.py,sha256=bkepO_sFRIhYm3Dzecx3VJP0Ap37vUuJSRmEY8HrV1U,3947
|
|
34
34
|
eodag/plugins/authentication/sas_auth.py,sha256=bDqMgcteUH15Vs8vBoYCeA0hxCrCHIPwFYRrEtMtp9Y,4767
|
|
35
35
|
eodag/plugins/authentication/token.py,sha256=f2SossIJ_XlnBuOw_OprLNrF1p-uolL_KEX71_BhzKw,15798
|
|
@@ -42,29 +42,29 @@ eodag/plugins/crunch/filter_latest_tpl_name.py,sha256=pP4EDP73mQg1zvkVm1Uo4nGAgw
|
|
|
42
42
|
eodag/plugins/crunch/filter_overlap.py,sha256=mkm5_ljgK_7QOOp-KgJjDjbVfss4gwRjIYUTMyKrw5o,7272
|
|
43
43
|
eodag/plugins/crunch/filter_property.py,sha256=2BKb7wxw1Yi2NTtnPCBtdZ-caJXxlVUUS2ps4LHXOMI,3187
|
|
44
44
|
eodag/plugins/download/__init__.py,sha256=zqszaeNgYP0YHlZDkLMf6odcwNw0KrAahGpcA-l0kAw,740
|
|
45
|
-
eodag/plugins/download/aws.py,sha256=
|
|
46
|
-
eodag/plugins/download/base.py,sha256=
|
|
47
|
-
eodag/plugins/download/creodias_s3.py,sha256=
|
|
48
|
-
eodag/plugins/download/http.py,sha256=
|
|
49
|
-
eodag/plugins/download/s3rest.py,sha256=
|
|
45
|
+
eodag/plugins/download/aws.py,sha256=9TdWseGib-sLWivfI0w4l-9O-ZlppgMsbzLSuirYzXE,57249
|
|
46
|
+
eodag/plugins/download/base.py,sha256=hllNFdDMWnTq0zjiTQPr-p4iX_OksCJ6PAt0a35qX1A,30813
|
|
47
|
+
eodag/plugins/download/creodias_s3.py,sha256=9YrBwb7FiLnREVcaJB5ktlrDeIHPRAC-tH1qDjkwCMs,4350
|
|
48
|
+
eodag/plugins/download/http.py,sha256=CBr7x0KLsQb3X6QqZ7FZvQEm0z-MN9BfKVWyZKudRSE,58354
|
|
49
|
+
eodag/plugins/download/s3rest.py,sha256=rIG1BAGsU0OVbv6iEardQ5bdWmj_qBiVRanP5f6qxSA,15015
|
|
50
50
|
eodag/plugins/search/__init__.py,sha256=bBrl3TffoU1wVpaeXmTEIailoh9W6fla4IP-8SWqA9U,2019
|
|
51
|
-
eodag/plugins/search/base.py,sha256=
|
|
52
|
-
eodag/plugins/search/build_search_result.py,sha256=
|
|
53
|
-
eodag/plugins/search/cop_marine.py,sha256
|
|
51
|
+
eodag/plugins/search/base.py,sha256=tqn1JB2JV4Z_yRXFHUiAfMGjcJqr90_QYyevV0DoGLE,20017
|
|
52
|
+
eodag/plugins/search/build_search_result.py,sha256=9a2HZijHvQWplyJav1vr_dDgoOPQeI1MIttSf3rBYBA,57652
|
|
53
|
+
eodag/plugins/search/cop_marine.py,sha256=-GrFQjVZb7SfS6BbI0wnGc2VuRcQu7aqtWg3EWjQhE0,20485
|
|
54
54
|
eodag/plugins/search/creodias_s3.py,sha256=rBZf3Uza7z3VuBdoUJQ9kuufGgACKVsEvK3phUo7C7M,3379
|
|
55
55
|
eodag/plugins/search/csw.py,sha256=de8CNjz4bjEny27V0RXC7V8LRz0Ik3yqQVjTAc_JlyA,12548
|
|
56
56
|
eodag/plugins/search/data_request_search.py,sha256=IN6sgQqx5fedQI6jxOkUdUk_mRLAKmCRW8S7pHgOOnA,27332
|
|
57
|
-
eodag/plugins/search/qssearch.py,sha256=
|
|
57
|
+
eodag/plugins/search/qssearch.py,sha256=lKZ2Pm5mXOZTueaE-dgnmI5AyvqFGPe0ZRBL-YMUC7s,93561
|
|
58
58
|
eodag/plugins/search/stac_list_assets.py,sha256=OOCMyjD8XD-m39k0SyKMrRi4K8Ii5mOQsA6zSAeQDGI,3435
|
|
59
59
|
eodag/plugins/search/static_stac_search.py,sha256=CPynjpNw0gXa6g6hA2zSkbwhfgU-9IBCmJtknuhnFKk,10515
|
|
60
|
-
eodag/resources/ext_product_types.json,sha256=
|
|
60
|
+
eodag/resources/ext_product_types.json,sha256=MbUf18X1cW7GPcdXXj1pEEEv-Fzr6VA5oWNn8eC7310,3235091
|
|
61
61
|
eodag/resources/locations_conf_template.yml,sha256=_eBv-QKHYMIKhY0b0kp4Ee33RsayxN8LWH3kDXxfFSk,986
|
|
62
|
-
eodag/resources/product_types.yml,sha256=
|
|
63
|
-
eodag/resources/providers.yml,sha256=
|
|
64
|
-
eodag/resources/stac.yml,sha256=
|
|
62
|
+
eodag/resources/product_types.yml,sha256=nanmUoWgWp6tvFOaoyH3hJHHyG3ym1GIpAIK_35PdpM,413543
|
|
63
|
+
eodag/resources/providers.yml,sha256=yOABB3pae_SW8DUROhb73E8ye1-SefCC1_JfVyi8p80,211582
|
|
64
|
+
eodag/resources/stac.yml,sha256=QnrBulL2pHZrPH4pI7rQtKDxmgP2ZbBcufFqFJPCL7A,10473
|
|
65
65
|
eodag/resources/stac_api.yml,sha256=2FdQL_qBTIUlu6KH836T4CXBKO9AvVxA_Ub3J1RP81A,68881
|
|
66
66
|
eodag/resources/stac_provider.yml,sha256=2yfdnuhJYV1f5el3aFkunoPqHAcD8oCDzvASbmldIvY,6703
|
|
67
|
-
eodag/resources/user_conf_template.yml,sha256=
|
|
67
|
+
eodag/resources/user_conf_template.yml,sha256=rjgc-gp4Ufw9dLV-D9lQFBm-YLApZtGTybq3cHT48as,7508
|
|
68
68
|
eodag/resources/shp/ne_110m_admin_0_map_units.VERSION.txt,sha256=CHSo_jbv-4d4D0MYRbWn2FvmV_K9mYzo7qznF4YNO3g,7
|
|
69
69
|
eodag/resources/shp/ne_110m_admin_0_map_units.cpg,sha256=FG1nif_gM6UpfBrQRuamLuNTGbhrAhRE8FtuoqqKH0o,6
|
|
70
70
|
eodag/resources/shp/ne_110m_admin_0_map_units.dbf,sha256=uEEO22hZ_crWxMNhuQ_ix889c1Us1awYXAglxbf1K-s,393747
|
|
@@ -75,9 +75,9 @@ eodag/rest/__init__.py,sha256=v4SI9gLuFP81YXi5_k98lvVNGzz6h8YZ_aUdhKAbE2M,916
|
|
|
75
75
|
eodag/rest/cache.py,sha256=dSgpw6uWDq45qxfD25LXkB-9Qk0OEb5L8UOl7yuMPEU,2097
|
|
76
76
|
eodag/rest/config.py,sha256=qWXukdSB6cSpkZszkPSGPGn5oiVfKEC3rPGp0q-2c4E,2112
|
|
77
77
|
eodag/rest/constants.py,sha256=XsNgjzv0Qvw1hhjeuscDuyQpCm99g3O-hEyslPSiFzQ,945
|
|
78
|
-
eodag/rest/core.py,sha256=
|
|
78
|
+
eodag/rest/core.py,sha256=ZMJxIPM8-0sdmQa3Gjtm_VOBy3Dhgau1vAtm6uHVgo0,26583
|
|
79
79
|
eodag/rest/errors.py,sha256=ShYTl_cQej3H20jRtX_HLNKpnB6J4mbl0uhJTifzDj0,6736
|
|
80
|
-
eodag/rest/server.py,sha256=
|
|
80
|
+
eodag/rest/server.py,sha256=yssir9bumRwoEibgTTKOgXBli3uwTJkhbVW7Q7F2Uqc,18253
|
|
81
81
|
eodag/rest/server.wsgi,sha256=ssM4JQi8tZpOYj03CTdM0weyUF1b3Lbh38pdD-vBfXs,152
|
|
82
82
|
eodag/rest/stac.py,sha256=5t7qsSr4qVINHhjebW2SyYZVE0yzSyD1xa9zOcIuvNs,36655
|
|
83
83
|
eodag/rest/templates/README,sha256=qFgCBE6XC4YiXkpPoSHkYbMTQr8Zg5Wc5eAKVcooXmw,57
|
|
@@ -95,21 +95,21 @@ eodag/types/download_args.py,sha256=urSl5KbLRN1XetMa2XzxYltny8CCFmHpjxU3j3BEGO8,
|
|
|
95
95
|
eodag/types/queryables.py,sha256=1Bb-n05YKSUq-rsVm-_2HoYaCBWp4SFHI4uWngpRmiw,10551
|
|
96
96
|
eodag/types/search_args.py,sha256=EtG8nXnApBnYrFo5FVvsvvEqRlqTxJ0lrmIem9Wtg8c,5649
|
|
97
97
|
eodag/types/whoosh.py,sha256=VXpWAZaXLR_RRnI9gh5iwkqn1n63krVGj2SX0rB2mQo,7225
|
|
98
|
-
eodag/utils/__init__.py,sha256=
|
|
98
|
+
eodag/utils/__init__.py,sha256=xpFPjYZdMBhaWV4M5wTBv7_FY16K1mge-8V2soiTZ5U,54187
|
|
99
99
|
eodag/utils/cache.py,sha256=UNvnzhJnNBuKLdH_0KnhuTMlBvz4GS3nr2IH2Lj6Swc,2580
|
|
100
100
|
eodag/utils/env.py,sha256=_sgCzDmaJnMnCv1qk9xe9jBhBKqqXbEYmsyGYwYw4NI,1085
|
|
101
|
-
eodag/utils/exceptions.py,sha256=
|
|
101
|
+
eodag/utils/exceptions.py,sha256=64M6xNsWWThEspIrZvxPYCS47wBH4PL7YXXw8fcPCbo,4588
|
|
102
102
|
eodag/utils/import_system.py,sha256=1vwcSRlsZwuaP8ssrpRBP5jldZ54eLv2ttNCdLf0TtA,3901
|
|
103
103
|
eodag/utils/logging.py,sha256=KoMsyS1f6O1hr_SMDOIxvt842mOJgmu_yLUk0-0EKFs,3507
|
|
104
104
|
eodag/utils/notebook.py,sha256=AUxtayvu26qYf3x3Eu3ujRl1XDgy24EfQaETbqmXSZw,2703
|
|
105
105
|
eodag/utils/repr.py,sha256=o6NhScogBPI69m83GsHh3hXONb9-byPfuWgJ1U39Kfw,5463
|
|
106
106
|
eodag/utils/requests.py,sha256=avNHKrOZ7Kp6lUA7u4kqupIth9MoirLzDsMrrmQDt4s,4560
|
|
107
107
|
eodag/utils/rest.py,sha256=a9tlG_Y9iQXLeyeLyecxFNbopGHV-8URecMSRs0UXu0,3348
|
|
108
|
-
eodag/utils/s3.py,sha256=
|
|
108
|
+
eodag/utils/s3.py,sha256=hHlliahIJjQQP8VnRAhbw17_FFa4E6gFo52HchgarVU,29553
|
|
109
109
|
eodag/utils/stac_reader.py,sha256=8r6amio5EtwGF9iu9zHaGDz4oUPKKeXRuyTzPNakrO4,9406
|
|
110
|
-
eodag-3.
|
|
111
|
-
eodag-3.
|
|
112
|
-
eodag-3.
|
|
113
|
-
eodag-3.
|
|
114
|
-
eodag-3.
|
|
115
|
-
eodag-3.
|
|
110
|
+
eodag-3.7.0.dist-info/licenses/LICENSE,sha256=4MAecetnRTQw5DlHtiikDSzKWO1xVLwzM5_DsPMYlnE,10172
|
|
111
|
+
eodag-3.7.0.dist-info/METADATA,sha256=-u3gkodXdq0wNhmk_pOy794pPyWifY2qE1nYBLu72sM,15494
|
|
112
|
+
eodag-3.7.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
113
|
+
eodag-3.7.0.dist-info/entry_points.txt,sha256=krdrBOQso6kAcSekV9ItEYAkE8syTC4Ev75bI781VgE,2561
|
|
114
|
+
eodag-3.7.0.dist-info/top_level.txt,sha256=025IMTmVe5eDjIPP4KEFQKespOPMQdne4U4jOy8nftM,6
|
|
115
|
+
eodag-3.7.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|