eodag 3.0.0b1__py3-none-any.whl → 3.0.0b3__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/__init__.py +6 -8
- eodag/api/core.py +119 -171
- eodag/api/product/__init__.py +10 -4
- eodag/api/product/_assets.py +52 -14
- eodag/api/product/_product.py +59 -30
- eodag/api/product/drivers/__init__.py +7 -2
- eodag/api/product/drivers/base.py +0 -3
- eodag/api/product/metadata_mapping.py +0 -28
- eodag/api/search_result.py +31 -9
- eodag/config.py +45 -41
- eodag/plugins/apis/base.py +3 -3
- eodag/plugins/apis/ecmwf.py +2 -3
- eodag/plugins/apis/usgs.py +43 -14
- eodag/plugins/authentication/aws_auth.py +11 -2
- eodag/plugins/authentication/openid_connect.py +5 -4
- eodag/plugins/authentication/token.py +2 -1
- eodag/plugins/crunch/base.py +3 -1
- eodag/plugins/crunch/filter_date.py +3 -9
- eodag/plugins/crunch/filter_latest_intersect.py +0 -3
- eodag/plugins/crunch/filter_latest_tpl_name.py +1 -4
- eodag/plugins/crunch/filter_overlap.py +4 -8
- eodag/plugins/crunch/filter_property.py +5 -11
- eodag/plugins/download/aws.py +46 -78
- eodag/plugins/download/base.py +27 -68
- eodag/plugins/download/http.py +48 -57
- eodag/plugins/download/s3rest.py +17 -25
- eodag/plugins/manager.py +6 -18
- eodag/plugins/search/__init__.py +9 -9
- eodag/plugins/search/base.py +7 -26
- eodag/plugins/search/build_search_result.py +0 -13
- eodag/plugins/search/cop_marine.py +1 -3
- eodag/plugins/search/creodias_s3.py +0 -3
- eodag/plugins/search/data_request_search.py +10 -5
- eodag/plugins/search/qssearch.py +95 -53
- eodag/plugins/search/static_stac_search.py +6 -3
- eodag/resources/ext_product_types.json +1 -1
- eodag/resources/product_types.yml +24 -0
- eodag/resources/providers.yml +198 -154
- eodag/resources/user_conf_template.yml +27 -27
- eodag/rest/core.py +11 -43
- eodag/rest/server.py +1 -6
- eodag/rest/stac.py +13 -87
- eodag/rest/types/eodag_search.py +4 -7
- eodag/rest/types/queryables.py +4 -12
- eodag/rest/types/stac_search.py +7 -11
- eodag/rest/utils/rfc3339.py +0 -1
- eodag/types/__init__.py +9 -3
- eodag/types/download_args.py +14 -5
- eodag/types/search_args.py +7 -8
- eodag/types/whoosh.py +0 -2
- eodag/utils/__init__.py +20 -79
- eodag/utils/constraints.py +0 -8
- eodag/utils/import_system.py +0 -4
- eodag/utils/logging.py +0 -3
- eodag/utils/notebook.py +4 -4
- eodag/utils/repr.py +113 -0
- eodag/utils/requests.py +12 -20
- eodag/utils/rest.py +0 -4
- eodag/utils/stac_reader.py +2 -14
- {eodag-3.0.0b1.dist-info → eodag-3.0.0b3.dist-info}/METADATA +33 -14
- eodag-3.0.0b3.dist-info/RECORD +110 -0
- {eodag-3.0.0b1.dist-info → eodag-3.0.0b3.dist-info}/WHEEL +1 -1
- eodag-3.0.0b1.dist-info/RECORD +0 -109
- {eodag-3.0.0b1.dist-info → eodag-3.0.0b3.dist-info}/LICENSE +0 -0
- {eodag-3.0.0b1.dist-info → eodag-3.0.0b3.dist-info}/entry_points.txt +0 -0
- {eodag-3.0.0b1.dist-info → eodag-3.0.0b3.dist-info}/top_level.txt +0 -0
eodag/utils/stac_reader.py
CHANGED
|
@@ -112,23 +112,17 @@ def fetch_stac_items(
|
|
|
112
112
|
"""Fetch STAC item from a single item file or items from a catalog.
|
|
113
113
|
|
|
114
114
|
:param stac_path: A STAC object filepath
|
|
115
|
-
:type stac_path: str
|
|
116
115
|
:param recursive: (optional) Browse recursively in child nodes if True
|
|
117
|
-
:type recursive: bool
|
|
118
116
|
:param max_connections: (optional) Maximum number of connections for HTTP requests
|
|
119
|
-
:type max_connections: int
|
|
120
117
|
:param timeout: (optional) Timeout in seconds for each internal HTTP request
|
|
121
|
-
:type timeout: int
|
|
122
118
|
:param ssl_verify: (optional) SSL Verification for HTTP request
|
|
123
|
-
:type ssl_verify: bool
|
|
124
119
|
:returns: The items found in `stac_path`
|
|
125
|
-
:rtype: :class:`list`
|
|
126
120
|
"""
|
|
127
121
|
|
|
128
122
|
# URI opener used by PySTAC internally, instantiated here
|
|
129
123
|
# to retrieve the timeout.
|
|
130
124
|
_text_opener = _TextOpener(timeout, ssl_verify)
|
|
131
|
-
pystac.StacIO.read_text = _text_opener
|
|
125
|
+
pystac.StacIO.read_text = _text_opener # type: ignore[assignment]
|
|
132
126
|
|
|
133
127
|
stac_obj = pystac.read_file(stac_path)
|
|
134
128
|
# Single STAC item
|
|
@@ -198,22 +192,16 @@ def fetch_stac_collections(
|
|
|
198
192
|
"""Fetch STAC collection(s) from a catalog.
|
|
199
193
|
|
|
200
194
|
:param stac_path: A STAC object filepath
|
|
201
|
-
:type stac_path: str
|
|
202
195
|
:param collection: the collection to fetch
|
|
203
|
-
:type collection: Optional[str]
|
|
204
196
|
:param max_connections: (optional) Maximum number of connections for HTTP requests
|
|
205
|
-
:type max_connections: int
|
|
206
197
|
:param timeout: (optional) Timeout in seconds for each internal HTTP request
|
|
207
|
-
:type timeout: int
|
|
208
198
|
:param ssl_verify: (optional) SSL Verification for HTTP request
|
|
209
|
-
:type ssl_verify: bool
|
|
210
199
|
:returns: The collection(s) found in `stac_path`
|
|
211
|
-
:rtype: :class:`list`
|
|
212
200
|
"""
|
|
213
201
|
|
|
214
202
|
# URI opener used by PySTAC internally, instantiated here to retrieve the timeout.
|
|
215
203
|
_text_opener = _TextOpener(timeout, ssl_verify)
|
|
216
|
-
pystac.StacIO.read_text = _text_opener
|
|
204
|
+
pystac.StacIO.read_text = _text_opener # type: ignore[assignment]
|
|
217
205
|
|
|
218
206
|
stac_obj = pystac.read_file(stac_path)
|
|
219
207
|
if isinstance(stac_obj, pystac.Catalog):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: eodag
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.0b3
|
|
4
4
|
Summary: Earth Observation Data Access Gateway
|
|
5
5
|
Home-page: https://github.com/CS-SI/eodag
|
|
6
6
|
Author: CS GROUP - France
|
|
@@ -27,6 +27,7 @@ Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
|
27
27
|
Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
|
|
28
28
|
Classifier: Topic :: Scientific/Engineering :: GIS
|
|
29
29
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
30
|
+
Classifier: Typing :: Typed
|
|
30
31
|
Requires-Python: >=3.6
|
|
31
32
|
Description-Content-Type: text/x-rst
|
|
32
33
|
License-File: LICENSE
|
|
@@ -61,7 +62,7 @@ Requires-Dist: eodag[ecmwf,usgs] ; extra == 'all-providers'
|
|
|
61
62
|
Provides-Extra: csw
|
|
62
63
|
Requires-Dist: OWSLib >=0.27.1 ; extra == 'csw'
|
|
63
64
|
Provides-Extra: dev
|
|
64
|
-
Requires-Dist: eodag[all-providers,csw,server] ; extra == 'dev'
|
|
65
|
+
Requires-Dist: eodag[all-providers,csw,server,stubs] ; extra == 'dev'
|
|
65
66
|
Requires-Dist: pytest ; extra == 'dev'
|
|
66
67
|
Requires-Dist: pytest-cov ; extra == 'dev'
|
|
67
68
|
Requires-Dist: py >=1.8.2 ; extra == 'dev'
|
|
@@ -79,14 +80,15 @@ Requires-Dist: pre-commit ; extra == 'dev'
|
|
|
79
80
|
Requires-Dist: responses <0.24.0 ; extra == 'dev'
|
|
80
81
|
Requires-Dist: fastapi[all] ; extra == 'dev'
|
|
81
82
|
Requires-Dist: stdlib-list ; extra == 'dev'
|
|
82
|
-
Requires-Dist:
|
|
83
|
-
Requires-Dist: types-lxml ; extra == 'dev'
|
|
83
|
+
Requires-Dist: mypy ; extra == 'dev'
|
|
84
84
|
Provides-Extra: docs
|
|
85
|
-
Requires-Dist: eodag[all] ; extra == 'docs'
|
|
85
|
+
Requires-Dist: eodag[all,stubs] ; extra == 'docs'
|
|
86
86
|
Requires-Dist: sphinx ; extra == 'docs'
|
|
87
|
-
Requires-Dist: sphinx-book-theme ; extra == 'docs'
|
|
87
|
+
Requires-Dist: sphinx-book-theme >=1.0.0 ; extra == 'docs'
|
|
88
88
|
Requires-Dist: sphinx-copybutton ; extra == 'docs'
|
|
89
|
+
Requires-Dist: sphinx-tabs ; extra == 'docs'
|
|
89
90
|
Requires-Dist: nbsphinx ; extra == 'docs'
|
|
91
|
+
Requires-Dist: sphinx-autodoc-typehints ; extra == 'docs'
|
|
90
92
|
Provides-Extra: ecmwf
|
|
91
93
|
Requires-Dist: ecmwf-api-client ; extra == 'ecmwf'
|
|
92
94
|
Provides-Extra: notebook
|
|
@@ -98,8 +100,16 @@ Requires-Dist: starlette ; extra == 'server'
|
|
|
98
100
|
Requires-Dist: uvicorn[standard] ; extra == 'server'
|
|
99
101
|
Requires-Dist: pydantic-settings ; extra == 'server'
|
|
100
102
|
Requires-Dist: cachetools ; extra == 'server'
|
|
103
|
+
Provides-Extra: stubs
|
|
104
|
+
Requires-Dist: boto3-stubs[essential] ; extra == 'stubs'
|
|
105
|
+
Requires-Dist: types-lxml ; extra == 'stubs'
|
|
106
|
+
Requires-Dist: types-cachetools ; extra == 'stubs'
|
|
107
|
+
Requires-Dist: types-requests ; extra == 'stubs'
|
|
108
|
+
Requires-Dist: types-python-dateutil ; extra == 'stubs'
|
|
109
|
+
Requires-Dist: types-setuptools ; extra == 'stubs'
|
|
110
|
+
Requires-Dist: types-tqdm ; extra == 'stubs'
|
|
101
111
|
Provides-Extra: tutorials
|
|
102
|
-
Requires-Dist: eodag[notebook] ; extra == 'tutorials'
|
|
112
|
+
Requires-Dist: eodag[ecmwf,notebook] ; extra == 'tutorials'
|
|
103
113
|
Requires-Dist: eodag-cube >=0.2.0 ; extra == 'tutorials'
|
|
104
114
|
Requires-Dist: jupyter ; extra == 'tutorials'
|
|
105
115
|
Requires-Dist: ipyleaflet >=0.10.0 ; extra == 'tutorials'
|
|
@@ -137,8 +147,6 @@ Requires-Dist: usgs >=0.3.1 ; extra == 'usgs'
|
|
|
137
147
|
|
|
138
148
|
|pypi-badge| |conda-badge| |rtd-badge| |gha-badge| |ghi-badge| |binder-badge|
|
|
139
149
|
|
|
140
|
-
|
|
|
141
|
-
|
|
142
150
|
.. |license-badge| image:: https://img.shields.io/pypi/l/eodag.svg
|
|
143
151
|
:target: https://pypi.org/project/eodag/
|
|
144
152
|
|
|
@@ -198,8 +206,14 @@ And with ``conda`` from the `conda-forge channel <https://anaconda.org/conda-for
|
|
|
198
206
|
|
|
199
207
|
conda install -c conda-forge eodag
|
|
200
208
|
|
|
201
|
-
|
|
202
|
-
|
|
209
|
+
..
|
|
210
|
+
|
|
211
|
+
[!IMPORTANT]
|
|
212
|
+
|
|
213
|
+
`Breaking change <https://eodag.readthedocs.io/en/latest/breaking_changes.html>`_ **in v3.0.0**:
|
|
214
|
+
Please note that EODAG
|
|
215
|
+
comes with a minimal set of dependencies. If you want more features, please install using one of the
|
|
216
|
+
`available extras <https://eodag.readthedocs.io/en/latest/getting_started_guide/install.html#optional-dependencies>`_.
|
|
203
217
|
|
|
204
218
|
Usage
|
|
205
219
|
=====
|
|
@@ -233,8 +247,13 @@ This will search for Sentinel 2 level-1C products on the default provider and re
|
|
|
233
247
|
an estimated total number of products matching the search criteria. And then it will download these products. Please
|
|
234
248
|
check the `Python API User Guide <https://eodag.readthedocs.io/en/latest/api_user_guide.html>`_ for more details.
|
|
235
249
|
|
|
236
|
-
|
|
237
|
-
|
|
250
|
+
..
|
|
251
|
+
|
|
252
|
+
[!IMPORTANT]
|
|
253
|
+
|
|
254
|
+
`Breaking change <https://eodag.readthedocs.io/en/latest/breaking_changes.html>`_ **in v3.0.0**:
|
|
255
|
+
`search() <https://eodag.readthedocs.io/en/latest/api_reference/core.html#eodag.api.core.EODataAccessGateway.search>`_ method now returns
|
|
256
|
+
only a single ``SearchResult`` instead of a 2 values tuple.
|
|
238
257
|
|
|
239
258
|
STAC REST API
|
|
240
259
|
-------------
|
|
@@ -297,7 +316,7 @@ An eodag instance can be exposed through a STAC compliant REST api from the comm
|
|
|
297
316
|
|
|
298
317
|
.. code-block:: bash
|
|
299
318
|
|
|
300
|
-
docker run -p 5000:5000 --rm csspace/eodag-server:3.0.
|
|
319
|
+
docker run -p 5000:5000 --rm csspace/eodag-server:3.0.0b3
|
|
301
320
|
|
|
302
321
|
You can also browse over your STAC API server using `STAC Browser <https://github.com/radiantearth/stac-browser>`_.
|
|
303
322
|
Simply run:
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
eodag/__init__.py,sha256=qADIO6H3KR0CMs0qePdJROjSzcGnHaYpv-RFIk18WGQ,1608
|
|
2
|
+
eodag/cli.py,sha256=v3cyHFuH2LJVu7d_wKeKlPikFjO0H3I81nqTKGel0Gk,28704
|
|
3
|
+
eodag/config.py,sha256=BW5poLGrInU7e4Afm0983uxGWL2mF3-Nf2_jOuRq3e4,27665
|
|
4
|
+
eodag/crunch.py,sha256=fLVAPGVPw31N_DrnFk4gkCpQZLMY8oBhK6NUSYmdr24,1099
|
|
5
|
+
eodag/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
+
eodag/api/__init__.py,sha256=ytr30NUVmEtmJTsp3QCwkCIhS1nF6UlFCv0vmySHN7g,735
|
|
7
|
+
eodag/api/core.py,sha256=BthN4mekd1JfJRIQIiuz65nTIM6JqFPIHVjL6Hk3uS0,105489
|
|
8
|
+
eodag/api/search_result.py,sha256=r6LkozK42FDB0jCEwUMyhgZZVy7dyVYO59VRtFzj6_A,7717
|
|
9
|
+
eodag/api/product/__init__.py,sha256=klSKudmnHHeXvcwIX6Y30UTiP39tMfTwLNexSnAZnx0,1154
|
|
10
|
+
eodag/api/product/_assets.py,sha256=FfV9K_bsQzx0ZZ-xblK-t4kRlVYaER8eQJit6pRGsO4,6287
|
|
11
|
+
eodag/api/product/_product.py,sha256=40RcEBGkLE-iCaQCVofVNOrDdeldoecKMgGcX7gT7-g,22990
|
|
12
|
+
eodag/api/product/metadata_mapping.py,sha256=DXRQiG3q4mrYQ7NdLVniXgPp8MIZh_AlQsa3JLrIsW4,69925
|
|
13
|
+
eodag/api/product/drivers/__init__.py,sha256=67fvk_Zmuasrlw7TYP5GfM5Z4fS5a4KjfohHFhg-WiU,1035
|
|
14
|
+
eodag/api/product/drivers/base.py,sha256=TL_Kqbi7g4mLKn4CiBXrsAiTPVVFQBYY7DuG8pVlrlc,1793
|
|
15
|
+
eodag/plugins/__init__.py,sha256=KQkD5aVwb9I6C-Rmi5ABEG1-j8w5FP1zKN12vagsT9Y,739
|
|
16
|
+
eodag/plugins/base.py,sha256=I-kxG83mh805kZldrgl--VTVBzDNtyE8f_MRkm1VLCY,2689
|
|
17
|
+
eodag/plugins/manager.py,sha256=dL3N90VZhA8PUNRIcpiD30C3K6UhJO41Cr2TkHbPENQ,14749
|
|
18
|
+
eodag/plugins/apis/__init__.py,sha256=PyY4f7P2iu3MkLPnw5eOrVew2fuavbBL3Asci3Ulwoo,744
|
|
19
|
+
eodag/plugins/apis/base.py,sha256=92Us1K9Ar1lGspXRCJzoFdp_P789Ix7WoAN9Yn2QF30,2657
|
|
20
|
+
eodag/plugins/apis/ecmwf.py,sha256=qiJNo82msdu3hsNOYXR8efz5Fofmdd5HTgIA3ByKcLQ,9984
|
|
21
|
+
eodag/plugins/apis/usgs.py,sha256=vpg5dotnn6QfhvTUPKdEPi3zsIQqb38nZ3A57CvSwso,17902
|
|
22
|
+
eodag/plugins/authentication/__init__.py,sha256=_LVw42Bb1IhGAZH5xHRaS4b1iFoF9e27KDZOyoSoJHY,1039
|
|
23
|
+
eodag/plugins/authentication/aws_auth.py,sha256=aCzQadBFoKoTTSvS18C_aBiB5dWcSzEAaoUCsHLHCqg,2647
|
|
24
|
+
eodag/plugins/authentication/base.py,sha256=3UjNfOe1zAZbVG7CXi6CrOPG5ltwtl1ZUk3BtbpzSn4,2166
|
|
25
|
+
eodag/plugins/authentication/generic.py,sha256=cgC7VTFUPzqTbTHgoWTdnzlQ1i26hIUoKQOfkwta9Ps,1846
|
|
26
|
+
eodag/plugins/authentication/header.py,sha256=mAduHrwu4rhJpneuvocQ765XRxMICZij614TfgxM_J4,3922
|
|
27
|
+
eodag/plugins/authentication/keycloak.py,sha256=eJIIldEyh63MKZOWnEAxPyzSEZEU2Aw7R8BITEyqkT8,5964
|
|
28
|
+
eodag/plugins/authentication/oauth.py,sha256=x39Fcx6x1mOwc5BlukrJCVnGVu1XhU6ikRCWsQip5q0,1545
|
|
29
|
+
eodag/plugins/authentication/openid_connect.py,sha256=KwM1hjBNY4Olk8ytmdJ07C9vAjrk_agQhWr6HzqGIL4,22434
|
|
30
|
+
eodag/plugins/authentication/qsauth.py,sha256=54bI9V6cn6LcLR5q2lKBVuY3BqiKG5zdIeYBrgRj6zI,3614
|
|
31
|
+
eodag/plugins/authentication/sas_auth.py,sha256=cOpXqKHKXM-PWXCEbpZzDoa5hWjKT512k8aYC-HgeHM,3939
|
|
32
|
+
eodag/plugins/authentication/token.py,sha256=3QIHekwJMu8_cOZjmq1LNHkAylWqVoIgTBeOLlgoz_M,8103
|
|
33
|
+
eodag/plugins/authentication/token_exchange.py,sha256=KsWXNw-zywh3t8AvAyFOYqWHP6PmsdfAeb53xp-gj_M,4447
|
|
34
|
+
eodag/plugins/crunch/__init__.py,sha256=58D7kJhEpHJWobIKaNFPynfbSqAWgS90BiHzitqS5Ds,746
|
|
35
|
+
eodag/plugins/crunch/base.py,sha256=bS2sQlOvHvBTeBRZWK1FNrQyNDrLAokLIRF61VXWR8c,1381
|
|
36
|
+
eodag/plugins/crunch/filter_date.py,sha256=p6GbbatxAVDBLy3nWQb7lQ2qbZc98iQX8qJCpPC5eSM,4339
|
|
37
|
+
eodag/plugins/crunch/filter_latest_intersect.py,sha256=IHvXNdZNHL1LntBQR4s9-G5KfMY_tTmjm18tkxhMBJY,4351
|
|
38
|
+
eodag/plugins/crunch/filter_latest_tpl_name.py,sha256=EtbedumAW_jAI-fs_xTrn1Bfr25UVTSAM9beiQXFYoc,3679
|
|
39
|
+
eodag/plugins/crunch/filter_overlap.py,sha256=Chv1nN-YrFUokeuG_Qstk2D8uMQVK1v6ogei7Tgwmus,7194
|
|
40
|
+
eodag/plugins/crunch/filter_property.py,sha256=-Mkoz6nZ3Yc6l6ZXC6PHGXvJzUzO568-I5zQExlD-jM,3212
|
|
41
|
+
eodag/plugins/download/__init__.py,sha256=zqszaeNgYP0YHlZDkLMf6odcwNw0KrAahGpcA-l0kAw,740
|
|
42
|
+
eodag/plugins/download/aws.py,sha256=wfBHunFKnYa3iZSxvaD1dNm14VTqDmTj65zbHxnbR-s,54334
|
|
43
|
+
eodag/plugins/download/base.py,sha256=LAaStZDNavTVyUD9AiTsAoj9PlEz62mZQqk-jbl5Xfc,30138
|
|
44
|
+
eodag/plugins/download/creodias_s3.py,sha256=xAg_wxBiQ2PrIW9PYvLIU9bJAjl1PnRRumirE-b19Uo,2255
|
|
45
|
+
eodag/plugins/download/http.py,sha256=Ks7e3tCitcgVc7K5RvQAXjuhOPIsZqIUwxP_ornQ0Bc,54905
|
|
46
|
+
eodag/plugins/download/s3rest.py,sha256=o1lVWNVc8_Kz7ieWY1F4iHeXBsEG8rV7t8MtjjAd7tI,14452
|
|
47
|
+
eodag/plugins/search/__init__.py,sha256=-1M-AB81A8KwLSEhSiNNEA77ecUvmvp4dUL8J1C1wFA,1986
|
|
48
|
+
eodag/plugins/search/base.py,sha256=mo_lC8eST5BlYDFaiVkIWwSUsz1G0k_QkEZ_8RqJeKE,15310
|
|
49
|
+
eodag/plugins/search/build_search_result.py,sha256=FpdcWzA_7-6KPucbVN9XNdWYHY2qNkGPitK01wW2MHs,21814
|
|
50
|
+
eodag/plugins/search/cop_marine.py,sha256=MMh6WAKCuNYm31m-Q5XGBT39kPxZ-ygcGrYi29RTbz8,15055
|
|
51
|
+
eodag/plugins/search/creodias_s3.py,sha256=2YRIfnoxuEzaShueyvlwHlcOwScjaK4COPABE-Y6A3A,5530
|
|
52
|
+
eodag/plugins/search/csw.py,sha256=qZkjd_HtZwmCSOqeCEgJUJ9GEgfKks0VmwRi12zjrQU,9664
|
|
53
|
+
eodag/plugins/search/data_request_search.py,sha256=UVpg0ECmBOQEKwjjdG-k6jX_QbAPc0szjTv0-7Cj50o,18833
|
|
54
|
+
eodag/plugins/search/qssearch.py,sha256=WwWcrVVeDr5keaauemNZkUYUDOkDhu0mwHyJnomLtjA,74194
|
|
55
|
+
eodag/plugins/search/static_stac_search.py,sha256=wZCOXw1YMk7kuO5nr5n_spJ2m6WYkDwclRdOh7dFsOk,8918
|
|
56
|
+
eodag/resources/ext_product_types.json,sha256=qq34BtukSpdOTFPe1iLBZbk0boGO9Ls3IgvgD5FEv-4,1560666
|
|
57
|
+
eodag/resources/locations_conf_template.yml,sha256=_eBv-QKHYMIKhY0b0kp4Ee33RsayxN8LWH3kDXxfFSk,986
|
|
58
|
+
eodag/resources/product_types.yml,sha256=-tcOCE3Armw86TXS4VkDiU2WC3HeS1bfLxE5A5jV1bk,364131
|
|
59
|
+
eodag/resources/providers.yml,sha256=jqvycOqxbV6PZRRseRNxPPpP8nUz59nVp_0LXv_SyWQ,255548
|
|
60
|
+
eodag/resources/stac.yml,sha256=PWIwzr-du7XfV7Jz3F9tTeMkZzUbh1gVTYnJkwVoch0,15204
|
|
61
|
+
eodag/resources/stac_api.yml,sha256=3wz1rAfxb_IWJHBdIONA7JPpAYVJpo9pzlSPFwfb41s,68893
|
|
62
|
+
eodag/resources/stac_provider.yml,sha256=2yfdnuhJYV1f5el3aFkunoPqHAcD8oCDzvASbmldIvY,6703
|
|
63
|
+
eodag/resources/user_conf_template.yml,sha256=3V02VIypIJQVxxwfSIpFHNEvcroeW00echsVRmno9ec,7404
|
|
64
|
+
eodag/resources/constraints/climate-dt.json,sha256=4JjtzvOKdRTi22d2R0rqVpJbfO7TWfpdDqttRSyGsaI,247814
|
|
65
|
+
eodag/resources/constraints/extremes-dt.json,sha256=b7AVXWWdygqHPRdqR8gxStkJy5ou6ds2utfAJzaVyQA,5507
|
|
66
|
+
eodag/resources/shp/ne_110m_admin_0_map_units.VERSION.txt,sha256=CHSo_jbv-4d4D0MYRbWn2FvmV_K9mYzo7qznF4YNO3g,7
|
|
67
|
+
eodag/resources/shp/ne_110m_admin_0_map_units.cpg,sha256=FG1nif_gM6UpfBrQRuamLuNTGbhrAhRE8FtuoqqKH0o,6
|
|
68
|
+
eodag/resources/shp/ne_110m_admin_0_map_units.dbf,sha256=uEEO22hZ_crWxMNhuQ_ix889c1Us1awYXAglxbf1K-s,393747
|
|
69
|
+
eodag/resources/shp/ne_110m_admin_0_map_units.prj,sha256=oaohy2UQUlLMiTy3HhYS1Kurl_7z3A3LYcOmVf_TbNo,148
|
|
70
|
+
eodag/resources/shp/ne_110m_admin_0_map_units.shp,sha256=GMVJQ1pe0JfaJnVfAew0MvembDJDkfUs0To2Qc82Aos,181628
|
|
71
|
+
eodag/resources/shp/ne_110m_admin_0_map_units.shx,sha256=N74fDl6sQAljmHQ_e9DO7suO6BXuwC0LwmriAnDBH-U,1564
|
|
72
|
+
eodag/rest/__init__.py,sha256=v4SI9gLuFP81YXi5_k98lvVNGzz6h8YZ_aUdhKAbE2M,916
|
|
73
|
+
eodag/rest/cache.py,sha256=zGqVt8AAbqwhRmWmAbRPLMJgEb1ZD67WO-QnWwoe3a4,2103
|
|
74
|
+
eodag/rest/config.py,sha256=mNXmixiRBpV_39sUlrl_r2H7PFyYfHyvvv1mxy49xjg,2141
|
|
75
|
+
eodag/rest/constants.py,sha256=HJgCQcMgSdBgwYX9-ozNlrFT-htU2-lxLGuGqp1nR6E,977
|
|
76
|
+
eodag/rest/core.py,sha256=vtJLG4V6NR67zzRfjzk7SXZoI38XH4REAODz4t2UUq8,24645
|
|
77
|
+
eodag/rest/server.py,sha256=-R6zfSyfmSaFqRgI-QZYevEwsBZaYp3qFzqyNPGiX_0,26600
|
|
78
|
+
eodag/rest/server.wsgi,sha256=ssM4JQi8tZpOYj03CTdM0weyUF1b3Lbh38pdD-vBfXs,152
|
|
79
|
+
eodag/rest/stac.py,sha256=0ag5JfuDsxAQffXtKVnjuOo367Qo9gso1WQy5zqj9Wk,52644
|
|
80
|
+
eodag/rest/templates/README,sha256=qFgCBE6XC4YiXkpPoSHkYbMTQr8Zg5Wc5eAKVcooXmw,57
|
|
81
|
+
eodag/rest/types/__init__.py,sha256=Bu0C3dzXHe8kocnz2PIHV0GjQWlAQas6ToIfwusNPQs,742
|
|
82
|
+
eodag/rest/types/collections_search.py,sha256=76dvL9y_Cq0ERoJdAn6btXx-0EFWxlfPYSoO7xkFA7c,1533
|
|
83
|
+
eodag/rest/types/eodag_search.py,sha256=kkhsrSbTaXle-q6NYwzp3_8Ddc26DTwd1iStXWV_CVg,13876
|
|
84
|
+
eodag/rest/types/queryables.py,sha256=dUNgdYxvZOzzi_D43IeaK3Rq2W7L-yVNGnl0iydseDM,6310
|
|
85
|
+
eodag/rest/types/stac_search.py,sha256=5lfwVJUpOpGrDOiv1Hn2GanpwjH0HfkfaWxGNnC4Efo,8813
|
|
86
|
+
eodag/rest/utils/__init__.py,sha256=D6SWRK_UF3yY-s1PweehJ1Oesnyw6ySMrhxQzjn3dJs,6544
|
|
87
|
+
eodag/rest/utils/cql_evaluate.py,sha256=cren4gxNyi_3gIEq0CADpqyi5sVnr93rY26CXWCyM3Y,4106
|
|
88
|
+
eodag/rest/utils/rfc3339.py,sha256=pZf6PXpUiQCNLAd-EJwgQ0sHJdTwac2RDEUv92LG3Os,2241
|
|
89
|
+
eodag/types/__init__.py,sha256=YDBVb5LrLdkXwDXh-7J18BLWJP6ZtR0vbRqL42HiJO0,11772
|
|
90
|
+
eodag/types/bbox.py,sha256=okc8oFgvoSTQnXJew740i41HArAoSD36Xjr_XmZ1Q4M,4373
|
|
91
|
+
eodag/types/download_args.py,sha256=xP4cLBocbJsscaJBGUFIDeif3HSe9pTusMTT_PKA5H8,1554
|
|
92
|
+
eodag/types/queryables.py,sha256=oELD822--6aZiJGG82eIH3HLKHcmUpXW-gL5TtaN-WQ,6010
|
|
93
|
+
eodag/types/search_args.py,sha256=Luw7nXxHxWsFzfCvGFcADpFtgys2HNmqeRGpEytTL3I,5658
|
|
94
|
+
eodag/types/whoosh.py,sha256=dmfS8UIjmdP4kLkeFK99lfiS0owzHa4bLUfB4hrXb5w,2503
|
|
95
|
+
eodag/utils/__init__.py,sha256=K-oE4NpquCbC7f2pV0byX4_hDAPTMGmUsW84MteR8NE,48470
|
|
96
|
+
eodag/utils/constraints.py,sha256=NAFI-UzrC0zMCG3rVzB_UeutC-sFaZPGRhlI0ytQbbE,9560
|
|
97
|
+
eodag/utils/exceptions.py,sha256=B4OYQD8yZfgS6HK4h-o-uTK0zDlIWzQXUGuvxJZHTSE,3564
|
|
98
|
+
eodag/utils/import_system.py,sha256=TqfRi_Kl0mzqNBapnOr3A7Y3qjCAgd7wYZ0bkPLeuJU,3908
|
|
99
|
+
eodag/utils/logging.py,sha256=4WrqfQE7qO3i9cwXcKZjUOIkHavY3orj7x1RJsVyIiE,5064
|
|
100
|
+
eodag/utils/notebook.py,sha256=AUxtayvu26qYf3x3Eu3ujRl1XDgy24EfQaETbqmXSZw,2703
|
|
101
|
+
eodag/utils/repr.py,sha256=6ocR8WyatAvh0oAM40bj_FvIt_XMmu-sW0nPxbH9UnM,3683
|
|
102
|
+
eodag/utils/requests.py,sha256=a4tkT9ZdqC74P_1e2z4ZUYXbWcDWfi2hqbBcw3zgSf4,4623
|
|
103
|
+
eodag/utils/rest.py,sha256=Jd7HMbPCaGW5fFK1Ud0FyocEXqGInwneLFdB7mNRW9A,3361
|
|
104
|
+
eodag/utils/stac_reader.py,sha256=qb0zN7Z1gWS2ha6lpvgup_Yv2Zuc1q154m6tdk9rumk,9237
|
|
105
|
+
eodag-3.0.0b3.dist-info/LICENSE,sha256=4MAecetnRTQw5DlHtiikDSzKWO1xVLwzM5_DsPMYlnE,10172
|
|
106
|
+
eodag-3.0.0b3.dist-info/METADATA,sha256=PjDOzSERHoroQliTy-Z4gfj4_XrLUfvwk2k1NhdMFvw,15731
|
|
107
|
+
eodag-3.0.0b3.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
|
108
|
+
eodag-3.0.0b3.dist-info/entry_points.txt,sha256=XKlXM_KuExc_-smc9Gf5MptkNkb-zFgz7bOX9kU7d8Y,2340
|
|
109
|
+
eodag-3.0.0b3.dist-info/top_level.txt,sha256=025IMTmVe5eDjIPP4KEFQKespOPMQdne4U4jOy8nftM,6
|
|
110
|
+
eodag-3.0.0b3.dist-info/RECORD,,
|
eodag-3.0.0b1.dist-info/RECORD
DELETED
|
@@ -1,109 +0,0 @@
|
|
|
1
|
-
eodag/__init__.py,sha256=PwOPGPlRIeXvq5KFGlz4-obHsyeSgGPNCpQxiRt2mug,1696
|
|
2
|
-
eodag/cli.py,sha256=v3cyHFuH2LJVu7d_wKeKlPikFjO0H3I81nqTKGel0Gk,28704
|
|
3
|
-
eodag/config.py,sha256=pBM-fxbSphzFyK2q9Yw8MBEYKC3K5X_W7LiliBThgZc,26994
|
|
4
|
-
eodag/crunch.py,sha256=fLVAPGVPw31N_DrnFk4gkCpQZLMY8oBhK6NUSYmdr24,1099
|
|
5
|
-
eodag/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
-
eodag/api/__init__.py,sha256=ytr30NUVmEtmJTsp3QCwkCIhS1nF6UlFCv0vmySHN7g,735
|
|
7
|
-
eodag/api/core.py,sha256=uhRSfh_JHLQj8J4To0iiwtC4Hd5eeJ4PA7ufaNTy3DM,106890
|
|
8
|
-
eodag/api/search_result.py,sha256=5inSDPZBdcP3-4pQIRLknpBUMqkH0EKa2DgQ6UPpZu4,7074
|
|
9
|
-
eodag/api/product/__init__.py,sha256=1PjvzrIDj22xHX67vzUt9WuAvO2CACku5xKaIx2ivuQ,994
|
|
10
|
-
eodag/api/product/_assets.py,sha256=3C_8DNAhgCF8eahjD8jTfqJ4IBZtk1Wx7uyuOtoznRA,4780
|
|
11
|
-
eodag/api/product/_product.py,sha256=TDRqP9dtjlgJc3fx6dum689AF6GQCg7k6ECmARD_2UY,21226
|
|
12
|
-
eodag/api/product/metadata_mapping.py,sha256=AysipreYzax47iHR2e4C_6ZFh9KnhfNhi6uicOYpdEs,70755
|
|
13
|
-
eodag/api/product/drivers/__init__.py,sha256=mURgF0RpptZec5DIoCryNW4N_41g1Lao4BitMZ0dWZw,912
|
|
14
|
-
eodag/api/product/drivers/base.py,sha256=LObZ7LSJo7B5UGtRX9RjCJKle2rslAtSlwAjc__FpUU,1910
|
|
15
|
-
eodag/plugins/__init__.py,sha256=KQkD5aVwb9I6C-Rmi5ABEG1-j8w5FP1zKN12vagsT9Y,739
|
|
16
|
-
eodag/plugins/base.py,sha256=I-kxG83mh805kZldrgl--VTVBzDNtyE8f_MRkm1VLCY,2689
|
|
17
|
-
eodag/plugins/manager.py,sha256=BhdcR-xWm12anitv9I83vWvCHVbH1hB9gIFgIV6hnq4,15420
|
|
18
|
-
eodag/plugins/apis/__init__.py,sha256=PyY4f7P2iu3MkLPnw5eOrVew2fuavbBL3Asci3Ulwoo,744
|
|
19
|
-
eodag/plugins/apis/base.py,sha256=MMGoyeRw72cS5EkRVmHsSpyh5BcPsL1EmzjKKG7zwMA,2669
|
|
20
|
-
eodag/plugins/apis/ecmwf.py,sha256=rZaQSKelB-MPsGNixK9T52-kLK0zxh2ZZMluPdsWP_I,10007
|
|
21
|
-
eodag/plugins/apis/usgs.py,sha256=M7YNM43zLOo92pIhPECKvi_Oldz4lwTtCgDJCtKO4Bs,16358
|
|
22
|
-
eodag/plugins/authentication/__init__.py,sha256=_LVw42Bb1IhGAZH5xHRaS4b1iFoF9e27KDZOyoSoJHY,1039
|
|
23
|
-
eodag/plugins/authentication/aws_auth.py,sha256=0-obK1rbF3D1o9D2Gejr8v9jaMn2Yh8f0EATq8DiG3c,2393
|
|
24
|
-
eodag/plugins/authentication/base.py,sha256=3UjNfOe1zAZbVG7CXi6CrOPG5ltwtl1ZUk3BtbpzSn4,2166
|
|
25
|
-
eodag/plugins/authentication/generic.py,sha256=cgC7VTFUPzqTbTHgoWTdnzlQ1i26hIUoKQOfkwta9Ps,1846
|
|
26
|
-
eodag/plugins/authentication/header.py,sha256=mAduHrwu4rhJpneuvocQ765XRxMICZij614TfgxM_J4,3922
|
|
27
|
-
eodag/plugins/authentication/keycloak.py,sha256=eJIIldEyh63MKZOWnEAxPyzSEZEU2Aw7R8BITEyqkT8,5964
|
|
28
|
-
eodag/plugins/authentication/oauth.py,sha256=x39Fcx6x1mOwc5BlukrJCVnGVu1XhU6ikRCWsQip5q0,1545
|
|
29
|
-
eodag/plugins/authentication/openid_connect.py,sha256=Xk6gfAMyZSc1IHgVMuRb3q15WvN4m1qawIs0BMZeVdU,22419
|
|
30
|
-
eodag/plugins/authentication/qsauth.py,sha256=54bI9V6cn6LcLR5q2lKBVuY3BqiKG5zdIeYBrgRj6zI,3614
|
|
31
|
-
eodag/plugins/authentication/sas_auth.py,sha256=cOpXqKHKXM-PWXCEbpZzDoa5hWjKT512k8aYC-HgeHM,3939
|
|
32
|
-
eodag/plugins/authentication/token.py,sha256=yBFD4tkDUCtwKg6hAKbEp0Op9SM4B9ELzJnA1SIrYGM,8073
|
|
33
|
-
eodag/plugins/authentication/token_exchange.py,sha256=KsWXNw-zywh3t8AvAyFOYqWHP6PmsdfAeb53xp-gj_M,4447
|
|
34
|
-
eodag/plugins/crunch/__init__.py,sha256=58D7kJhEpHJWobIKaNFPynfbSqAWgS90BiHzitqS5Ds,746
|
|
35
|
-
eodag/plugins/crunch/base.py,sha256=ceVbBFo73BhlQaaww6K_ReVziv_a_W-RUQBeQD908_U,1297
|
|
36
|
-
eodag/plugins/crunch/filter_date.py,sha256=bX1rr-p1Eoa6gksqu2xKYBXZEeLUwWfv6UEVlHvKqXM,4525
|
|
37
|
-
eodag/plugins/crunch/filter_latest_intersect.py,sha256=mXgiOCbeCEgMwYAZ7GQzfKW0ANBSnkOtarmpJi3pp0E,4531
|
|
38
|
-
eodag/plugins/crunch/filter_latest_tpl_name.py,sha256=5I2ewq5al2KzJFyEiY971De1vbARTaJ4_TA0gQvhCbM,3848
|
|
39
|
-
eodag/plugins/crunch/filter_overlap.py,sha256=9Vdb01RXDl90oCIz_2mLlHqBZSkq1c7pYV6r7zMY5IQ,7361
|
|
40
|
-
eodag/plugins/crunch/filter_property.py,sha256=jMyHL1bhj7EhPWq8A-k1FoOpOFKtvGvJ0hZjCxq561Y,3419
|
|
41
|
-
eodag/plugins/download/__init__.py,sha256=zqszaeNgYP0YHlZDkLMf6odcwNw0KrAahGpcA-l0kAw,740
|
|
42
|
-
eodag/plugins/download/aws.py,sha256=QRNkQ1cBn483DhGVtwCBFtktVAgFPuxRrgMREwki17I,56076
|
|
43
|
-
eodag/plugins/download/base.py,sha256=Ypmnl30qZS3_bsPRPI93zm2CbypqZgsokuyAaVLi37o,32017
|
|
44
|
-
eodag/plugins/download/creodias_s3.py,sha256=xAg_wxBiQ2PrIW9PYvLIU9bJAjl1PnRRumirE-b19Uo,2255
|
|
45
|
-
eodag/plugins/download/http.py,sha256=NBfTpczp83UllU0bdmEkHqHf2IMzgmv5fnpsPyW7ibw,55259
|
|
46
|
-
eodag/plugins/download/s3rest.py,sha256=Xp1Ui7sHYR0a2J-yAt4vlnzIPw2xhgPNikyjvqzRSG8,14635
|
|
47
|
-
eodag/plugins/search/__init__.py,sha256=j-Hqf3MTJUd5fkza5GV6R5zmHzfED4qRfNjCfHGHpjk,1882
|
|
48
|
-
eodag/plugins/search/base.py,sha256=NGUNMaLH5p0dqkUESXit8V63k2_hm5YbItMjJU_63gc,16076
|
|
49
|
-
eodag/plugins/search/build_search_result.py,sha256=hceTjAa704g0SU0RkQmX0ZhJG1Tz3GN47_2t0hBgru4,22199
|
|
50
|
-
eodag/plugins/search/cop_marine.py,sha256=RaNSWNXG-COp50jCyOznwX2aqWidmgLmXeZ41zTMdR8,15102
|
|
51
|
-
eodag/plugins/search/creodias_s3.py,sha256=zDlavnkLe9vngnkDJvhkPglRKZm77dLljiAW3Prb6Nk,5645
|
|
52
|
-
eodag/plugins/search/csw.py,sha256=qZkjd_HtZwmCSOqeCEgJUJ9GEgfKks0VmwRi12zjrQU,9664
|
|
53
|
-
eodag/plugins/search/data_request_search.py,sha256=w7rykBm-ZBC24nKD4RFWQKw_rQWvwCffrQbteUJZN04,18619
|
|
54
|
-
eodag/plugins/search/qssearch.py,sha256=Ljn_hxag3PE8CQCDAhdCalMVe_W0ccIh4ZM0LsLEPLY,72473
|
|
55
|
-
eodag/plugins/search/static_stac_search.py,sha256=9dbX_Nw-R6VpeRNctgFyuuNCS0892Wj58rvvKE2MiEE,8691
|
|
56
|
-
eodag/resources/ext_product_types.json,sha256=ZJu2xn6mqdOC6bwV5p4OAT4JetVwvYu1mp4FygI37hM,1540417
|
|
57
|
-
eodag/resources/locations_conf_template.yml,sha256=_eBv-QKHYMIKhY0b0kp4Ee33RsayxN8LWH3kDXxfFSk,986
|
|
58
|
-
eodag/resources/product_types.yml,sha256=L8N9vRaylB3VlQSE7dmtCB9ARu8tCpeWsKcAfCcGkN4,362918
|
|
59
|
-
eodag/resources/providers.yml,sha256=YwJF4qRxr33C_IfBD-S0zk2eyL3ZX_SuTXvNnhm-3uI,255877
|
|
60
|
-
eodag/resources/stac.yml,sha256=PWIwzr-du7XfV7Jz3F9tTeMkZzUbh1gVTYnJkwVoch0,15204
|
|
61
|
-
eodag/resources/stac_api.yml,sha256=3wz1rAfxb_IWJHBdIONA7JPpAYVJpo9pzlSPFwfb41s,68893
|
|
62
|
-
eodag/resources/stac_provider.yml,sha256=2yfdnuhJYV1f5el3aFkunoPqHAcD8oCDzvASbmldIvY,6703
|
|
63
|
-
eodag/resources/user_conf_template.yml,sha256=1bw00c4tPhtumz2Euq5bD8-yX_mrTqOAH2DTmC5myDA,7512
|
|
64
|
-
eodag/resources/constraints/climate-dt.json,sha256=4JjtzvOKdRTi22d2R0rqVpJbfO7TWfpdDqttRSyGsaI,247814
|
|
65
|
-
eodag/resources/constraints/extremes-dt.json,sha256=b7AVXWWdygqHPRdqR8gxStkJy5ou6ds2utfAJzaVyQA,5507
|
|
66
|
-
eodag/resources/shp/ne_110m_admin_0_map_units.VERSION.txt,sha256=CHSo_jbv-4d4D0MYRbWn2FvmV_K9mYzo7qznF4YNO3g,7
|
|
67
|
-
eodag/resources/shp/ne_110m_admin_0_map_units.cpg,sha256=FG1nif_gM6UpfBrQRuamLuNTGbhrAhRE8FtuoqqKH0o,6
|
|
68
|
-
eodag/resources/shp/ne_110m_admin_0_map_units.dbf,sha256=uEEO22hZ_crWxMNhuQ_ix889c1Us1awYXAglxbf1K-s,393747
|
|
69
|
-
eodag/resources/shp/ne_110m_admin_0_map_units.prj,sha256=oaohy2UQUlLMiTy3HhYS1Kurl_7z3A3LYcOmVf_TbNo,148
|
|
70
|
-
eodag/resources/shp/ne_110m_admin_0_map_units.shp,sha256=GMVJQ1pe0JfaJnVfAew0MvembDJDkfUs0To2Qc82Aos,181628
|
|
71
|
-
eodag/resources/shp/ne_110m_admin_0_map_units.shx,sha256=N74fDl6sQAljmHQ_e9DO7suO6BXuwC0LwmriAnDBH-U,1564
|
|
72
|
-
eodag/rest/__init__.py,sha256=v4SI9gLuFP81YXi5_k98lvVNGzz6h8YZ_aUdhKAbE2M,916
|
|
73
|
-
eodag/rest/cache.py,sha256=zGqVt8AAbqwhRmWmAbRPLMJgEb1ZD67WO-QnWwoe3a4,2103
|
|
74
|
-
eodag/rest/config.py,sha256=mNXmixiRBpV_39sUlrl_r2H7PFyYfHyvvv1mxy49xjg,2141
|
|
75
|
-
eodag/rest/constants.py,sha256=HJgCQcMgSdBgwYX9-ozNlrFT-htU2-lxLGuGqp1nR6E,977
|
|
76
|
-
eodag/rest/core.py,sha256=pcC5r3nlQCBcI25jgoP4TaKk24GTMhX97ZawRXfCXWg,25462
|
|
77
|
-
eodag/rest/server.py,sha256=9N2wrwKCMAh5vVh-eff4B21KCwTcONMST9Kj2VfkhM0,26727
|
|
78
|
-
eodag/rest/server.wsgi,sha256=ssM4JQi8tZpOYj03CTdM0weyUF1b3Lbh38pdD-vBfXs,152
|
|
79
|
-
eodag/rest/stac.py,sha256=62tQ8NrAP1d3byRgMvB3G-PotevGnMeW_KNcph2YuBw,54998
|
|
80
|
-
eodag/rest/templates/README,sha256=qFgCBE6XC4YiXkpPoSHkYbMTQr8Zg5Wc5eAKVcooXmw,57
|
|
81
|
-
eodag/rest/types/__init__.py,sha256=Bu0C3dzXHe8kocnz2PIHV0GjQWlAQas6ToIfwusNPQs,742
|
|
82
|
-
eodag/rest/types/collections_search.py,sha256=76dvL9y_Cq0ERoJdAn6btXx-0EFWxlfPYSoO7xkFA7c,1533
|
|
83
|
-
eodag/rest/types/eodag_search.py,sha256=y00Ur1aPe5uXHLZfokQ4xr47mNoExW2kUexlYPjFSe4,13934
|
|
84
|
-
eodag/rest/types/queryables.py,sha256=KdhdvB2WMx__ga2WLhqg9q08LWVTi5fgJESOc9QixcM,6378
|
|
85
|
-
eodag/rest/types/stac_search.py,sha256=mrjAHvxshfNihY7CX_MzaJVgGWe7rW2TLPuPAxy9Uu4,8919
|
|
86
|
-
eodag/rest/utils/__init__.py,sha256=D6SWRK_UF3yY-s1PweehJ1Oesnyw6ySMrhxQzjn3dJs,6544
|
|
87
|
-
eodag/rest/utils/cql_evaluate.py,sha256=cren4gxNyi_3gIEq0CADpqyi5sVnr93rY26CXWCyM3Y,4106
|
|
88
|
-
eodag/rest/utils/rfc3339.py,sha256=qZTC9vo7ZcA-vEVKva3ActhPcXWDZ8iH-ZPXy_zp4Ic,2265
|
|
89
|
-
eodag/types/__init__.py,sha256=d4Zj9Cdrk3HSv3c9mRUv1WhiQAjihdNMUJu-Ckk8eGE,11471
|
|
90
|
-
eodag/types/bbox.py,sha256=okc8oFgvoSTQnXJew740i41HArAoSD36Xjr_XmZ1Q4M,4373
|
|
91
|
-
eodag/types/download_args.py,sha256=0w6CSa_avJjgQkheqH0igGT7ZPariJ7ylrX8BsMX9-4,1005
|
|
92
|
-
eodag/types/queryables.py,sha256=oELD822--6aZiJGG82eIH3HLKHcmUpXW-gL5TtaN-WQ,6010
|
|
93
|
-
eodag/types/search_args.py,sha256=GvcKwYjaR_qiN8e2zX4v8oM70jcdqSmz6TmXrlpPJUo,5695
|
|
94
|
-
eodag/types/whoosh.py,sha256=mbvv-H1SHrUoo4vZtJJKzrHCh_4K-dlL-ulGyiyO1hI,2585
|
|
95
|
-
eodag/utils/__init__.py,sha256=hTBj4rpGCzKxvowfxRvfmyqQ8cTzNaexJgIiXeLaVhY,50147
|
|
96
|
-
eodag/utils/constraints.py,sha256=-UeU617odFupb-cYJoFq1Ztwv-XczA8sNj3Jm-dmi7M,9831
|
|
97
|
-
eodag/utils/exceptions.py,sha256=B4OYQD8yZfgS6HK4h-o-uTK0zDlIWzQXUGuvxJZHTSE,3564
|
|
98
|
-
eodag/utils/import_system.py,sha256=D6VqgkfcQFVfz82aJYILOMRIsY-fM5xcTAcBohyDpuc,4020
|
|
99
|
-
eodag/utils/logging.py,sha256=YcgiOb8iUzMGGoW_ppuZm77bKi96MpDyMANBvu0Bu4k,5143
|
|
100
|
-
eodag/utils/notebook.py,sha256=QkN9a6E9oinkUaBXeze0iYKusgqbMvV680dMrfm69Ao,2621
|
|
101
|
-
eodag/utils/requests.py,sha256=Uy7CdkllPtVLRQ-GiZe4cOmLfUAEp8cyzPGVoXhE95g,4914
|
|
102
|
-
eodag/utils/rest.py,sha256=K5aVbbWOKHx7ncyvsDSJVgSOt9H8QW3bwaRQGdz9_B0,3491
|
|
103
|
-
eodag/utils/stac_reader.py,sha256=QPRK10fnJE5MHlcNmHqv2Wugu_a8y5Z3jBAd2zKuLBI,9507
|
|
104
|
-
eodag-3.0.0b1.dist-info/LICENSE,sha256=4MAecetnRTQw5DlHtiikDSzKWO1xVLwzM5_DsPMYlnE,10172
|
|
105
|
-
eodag-3.0.0b1.dist-info/METADATA,sha256=is08JoxE0dpc-SrWYZNlwbvWPNwDzIb3kocipvIdi24,15036
|
|
106
|
-
eodag-3.0.0b1.dist-info/WHEEL,sha256=cpQTJ5IWu9CdaPViMhC9YzF8gZuS5-vlfoFihTBC86A,91
|
|
107
|
-
eodag-3.0.0b1.dist-info/entry_points.txt,sha256=XKlXM_KuExc_-smc9Gf5MptkNkb-zFgz7bOX9kU7d8Y,2340
|
|
108
|
-
eodag-3.0.0b1.dist-info/top_level.txt,sha256=025IMTmVe5eDjIPP4KEFQKespOPMQdne4U4jOy8nftM,6
|
|
109
|
-
eodag-3.0.0b1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|