eodag 3.4.1.post1__py3-none-any.whl → 3.4.3__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 +12 -11
- eodag/api/product/_product.py +6 -6
- eodag/api/product/metadata_mapping.py +11 -6
- eodag/config.py +2 -2
- eodag/plugins/apis/ecmwf.py +5 -7
- eodag/plugins/apis/usgs.py +1 -1
- eodag/plugins/authentication/generic.py +5 -1
- eodag/plugins/authentication/openid_connect.py +68 -30
- eodag/plugins/authentication/sas_auth.py +1 -1
- eodag/plugins/crunch/filter_date.py +4 -8
- eodag/plugins/crunch/filter_property.py +1 -1
- eodag/plugins/download/aws.py +3 -3
- eodag/plugins/download/base.py +14 -7
- eodag/plugins/download/http.py +18 -12
- eodag/plugins/download/s3rest.py +9 -5
- eodag/plugins/search/base.py +8 -4
- eodag/plugins/search/build_search_result.py +14 -6
- eodag/plugins/search/cop_marine.py +3 -0
- eodag/plugins/search/data_request_search.py +4 -4
- eodag/plugins/search/qssearch.py +22 -29
- eodag/resources/ext_product_types.json +1 -1
- eodag/resources/providers.yml +2 -1
- eodag/rest/server.py +3 -3
- eodag/rest/stac.py +2 -2
- eodag/rest/types/queryables.py +2 -2
- eodag/types/__init__.py +27 -14
- eodag/types/queryables.py +23 -5
- eodag/utils/__init__.py +22 -1
- {eodag-3.4.1.post1.dist-info → eodag-3.4.3.dist-info}/METADATA +2 -2
- {eodag-3.4.1.post1.dist-info → eodag-3.4.3.dist-info}/RECORD +34 -34
- {eodag-3.4.1.post1.dist-info → eodag-3.4.3.dist-info}/WHEEL +1 -1
- {eodag-3.4.1.post1.dist-info → eodag-3.4.3.dist-info}/entry_points.txt +0 -0
- {eodag-3.4.1.post1.dist-info → eodag-3.4.3.dist-info}/licenses/LICENSE +0 -0
- {eodag-3.4.1.post1.dist-info → eodag-3.4.3.dist-info}/top_level.txt +0 -0
eodag/resources/providers.yml
CHANGED
|
@@ -3468,6 +3468,7 @@
|
|
|
3468
3468
|
metadata_mapping:
|
|
3469
3469
|
orderId: '$.json.download_id'
|
|
3470
3470
|
orderStatusLink: 'https://gateway.prod.wekeo2.eu/hda-broker/api/v1/dataaccess/downloads?download_id={orderId}'
|
|
3471
|
+
downloadLink: 'https://gateway.prod.wekeo2.eu/hda-broker/api/v1/dataaccess/download/{orderId}'
|
|
3471
3472
|
order_status:
|
|
3472
3473
|
request:
|
|
3473
3474
|
method: GET
|
|
@@ -4937,7 +4938,7 @@
|
|
|
4937
4938
|
productType: EO.MO.DAT.WAVE_GLO_PHY_SPC_FWK_L3_NRT_014_002
|
|
4938
4939
|
# CLMS
|
|
4939
4940
|
CLMS_CORINE:
|
|
4940
|
-
productType: EO.
|
|
4941
|
+
productType: EO.CLMS.DAT.CORINE
|
|
4941
4942
|
CLMS_GLO_DMP_333M:
|
|
4942
4943
|
productType: EO.CLMS.DAT.GLO.DMP300_V1
|
|
4943
4944
|
CLMS_GLO_FAPAR_333M:
|
eodag/rest/server.py
CHANGED
|
@@ -195,8 +195,8 @@ async def forward_middleware(
|
|
|
195
195
|
) -> Response:
|
|
196
196
|
"""Middleware that handles forward headers and sets request.state.url*"""
|
|
197
197
|
|
|
198
|
-
forwarded_host = request.headers.get("x-forwarded-host"
|
|
199
|
-
forwarded_proto = request.headers.get("x-forwarded-proto"
|
|
198
|
+
forwarded_host = request.headers.get("x-forwarded-host")
|
|
199
|
+
forwarded_proto = request.headers.get("x-forwarded-proto")
|
|
200
200
|
|
|
201
201
|
if "forwarded" in request.headers:
|
|
202
202
|
header_forwarded = parse_header(request.headers["forwarded"])
|
|
@@ -220,7 +220,7 @@ async def catalogs_root(request: Request) -> ORJSONResponse:
|
|
|
220
220
|
response = await get_stac_catalogs(
|
|
221
221
|
request=request,
|
|
222
222
|
url=request.state.url,
|
|
223
|
-
provider=request.query_params.get("provider"
|
|
223
|
+
provider=request.query_params.get("provider"),
|
|
224
224
|
)
|
|
225
225
|
|
|
226
226
|
return ORJSONResponse(response)
|
eodag/rest/stac.py
CHANGED
|
@@ -433,14 +433,14 @@ class StacItem(StacCommon):
|
|
|
433
433
|
] += f"/{asset_key}?{urlencode(query_dict, doseq=True)}"
|
|
434
434
|
else:
|
|
435
435
|
assets[asset_key]["href"] += f"/{asset_key}"
|
|
436
|
-
if asset_type := asset_value.get("type"
|
|
436
|
+
if asset_type := asset_value.get("type"):
|
|
437
437
|
assets[asset_key]["type"] = asset_type
|
|
438
438
|
if origin := assets[asset_key].get("alternate", {}).get("origin"):
|
|
439
439
|
origin["type"] = asset_type
|
|
440
440
|
asset_value["href"] = _quote_url_path(asset_value["href"])
|
|
441
441
|
|
|
442
442
|
if thumbnail_url := product.properties.get(
|
|
443
|
-
"quicklook", product.properties.get("thumbnail"
|
|
443
|
+
"quicklook", product.properties.get("thumbnail")
|
|
444
444
|
):
|
|
445
445
|
assets["thumbnail"] = {
|
|
446
446
|
"title": "Thumbnail",
|
eodag/rest/types/queryables.py
CHANGED
|
@@ -104,8 +104,8 @@ class StacQueryableProperty(BaseModel):
|
|
|
104
104
|
"""Build Model from python_field_definition"""
|
|
105
105
|
def_dict = python_field_definition_to_json(python_field_definition)
|
|
106
106
|
|
|
107
|
-
if not def_dict.get("description"
|
|
108
|
-
def_dict["description"] = def_dict.get("title"
|
|
107
|
+
if not def_dict.get("description"):
|
|
108
|
+
def_dict["description"] = def_dict.get("title") or id
|
|
109
109
|
|
|
110
110
|
return cls(**def_dict)
|
|
111
111
|
|
eodag/types/__init__.py
CHANGED
|
@@ -36,7 +36,7 @@ from pydantic import BaseModel, ConfigDict, Field, create_model
|
|
|
36
36
|
from pydantic.annotated_handlers import GetJsonSchemaHandler
|
|
37
37
|
from pydantic.fields import FieldInfo
|
|
38
38
|
from pydantic.json_schema import JsonSchemaValue
|
|
39
|
-
from pydantic_core import CoreSchema
|
|
39
|
+
from pydantic_core import CoreSchema, PydanticUndefined
|
|
40
40
|
|
|
41
41
|
from eodag.utils import copy_deepcopy
|
|
42
42
|
from eodag.utils.exceptions import ValidationError
|
|
@@ -54,7 +54,7 @@ JSON_TYPES_MAPPING: dict[str, type] = {
|
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
|
|
57
|
-
def json_type_to_python(json_type: Union[str, list[str]]) -> type:
|
|
57
|
+
def json_type_to_python(json_type: Union[str, list[str], None]) -> type:
|
|
58
58
|
"""Get python type from json type https://spec.openapis.org/oas/v3.1.0#data-types
|
|
59
59
|
|
|
60
60
|
>>> json_type_to_python("number")
|
|
@@ -172,20 +172,22 @@ def json_field_definition_to_python(
|
|
|
172
172
|
:param required: if the field is required
|
|
173
173
|
:returns: the python field definition
|
|
174
174
|
"""
|
|
175
|
-
python_type = json_type_to_python(json_field_definition.get("type"
|
|
175
|
+
python_type = json_type_to_python(json_field_definition.get("type"))
|
|
176
176
|
|
|
177
177
|
field_type_kwargs = dict(
|
|
178
|
-
title=json_field_definition.get("title",
|
|
179
|
-
description=json_field_definition.get("description",
|
|
180
|
-
pattern=json_field_definition.get("pattern",
|
|
181
|
-
le=json_field_definition.get("maximum"),
|
|
182
|
-
ge=json_field_definition.get("minimum"),
|
|
178
|
+
title=json_field_definition.get("title", PydanticUndefined),
|
|
179
|
+
description=json_field_definition.get("description", PydanticUndefined),
|
|
180
|
+
pattern=json_field_definition.get("pattern", PydanticUndefined),
|
|
181
|
+
le=json_field_definition.get("maximum", PydanticUndefined),
|
|
182
|
+
ge=json_field_definition.get("minimum", PydanticUndefined),
|
|
183
183
|
)
|
|
184
184
|
|
|
185
185
|
enum = json_field_definition.get("enum")
|
|
186
|
+
const = json_field_definition.get("const")
|
|
187
|
+
anyOf = json_field_definition.get("anyOf")
|
|
186
188
|
|
|
187
189
|
if python_type in (list, set):
|
|
188
|
-
items = json_field_definition.get("items"
|
|
190
|
+
items = json_field_definition.get("items")
|
|
189
191
|
if isinstance(items, list):
|
|
190
192
|
python_type = tuple[ # type: ignore
|
|
191
193
|
tuple(
|
|
@@ -194,21 +196,32 @@ def json_field_definition_to_python(
|
|
|
194
196
|
)
|
|
195
197
|
]
|
|
196
198
|
elif isinstance(items, dict):
|
|
197
|
-
enum
|
|
199
|
+
if "enum" in items:
|
|
200
|
+
enum = items.get("enum")
|
|
201
|
+
elif "const" in items:
|
|
202
|
+
const = items.get("const")
|
|
198
203
|
|
|
199
204
|
if enum:
|
|
200
205
|
literal = Literal[tuple(sorted(enum))] # type: ignore
|
|
201
206
|
python_type = list[literal] if python_type in (list, set) else literal # type: ignore
|
|
207
|
+
elif const:
|
|
208
|
+
literal = Literal[const]
|
|
209
|
+
python_type = list[literal] if python_type in (list, set) else literal # type: ignore
|
|
210
|
+
elif anyOf:
|
|
211
|
+
python_type = str
|
|
202
212
|
|
|
203
213
|
if "$ref" in json_field_definition:
|
|
204
214
|
field_type_kwargs["json_schema_extra"] = {"$ref": json_field_definition["$ref"]}
|
|
205
215
|
|
|
216
|
+
field_default: Any
|
|
217
|
+
if required and default_value is None:
|
|
218
|
+
field_default = ...
|
|
219
|
+
else:
|
|
220
|
+
field_default = default_value
|
|
221
|
+
|
|
206
222
|
metadata = [
|
|
207
223
|
python_type,
|
|
208
|
-
Field(
|
|
209
|
-
default_value if not required or default_value is not None else ...,
|
|
210
|
-
**field_type_kwargs,
|
|
211
|
-
),
|
|
224
|
+
Field(field_default, **field_type_kwargs),
|
|
212
225
|
]
|
|
213
226
|
|
|
214
227
|
if required:
|
eodag/types/queryables.py
CHANGED
|
@@ -18,14 +18,14 @@
|
|
|
18
18
|
from __future__ import annotations
|
|
19
19
|
|
|
20
20
|
from collections import UserDict
|
|
21
|
-
from datetime import date, datetime
|
|
22
21
|
from typing import Annotated, Any, Optional, Union
|
|
23
22
|
|
|
24
23
|
from annotated_types import Lt
|
|
25
|
-
from pydantic import BaseModel, Field
|
|
24
|
+
from pydantic import BaseModel, ConfigDict, Field
|
|
26
25
|
from pydantic.fields import FieldInfo
|
|
27
26
|
from pydantic.types import PositiveInt
|
|
28
27
|
from pydantic_core import PydanticUndefined
|
|
28
|
+
from shapely.geometry.base import BaseGeometry
|
|
29
29
|
|
|
30
30
|
from eodag.types import annotated_dict_to_model, model_fields_to_annotated
|
|
31
31
|
from eodag.utils.repr import remove_class_repr, shorter_type_repr
|
|
@@ -72,12 +72,28 @@ class Queryables(CommonQueryables):
|
|
|
72
72
|
"""
|
|
73
73
|
|
|
74
74
|
start: Annotated[
|
|
75
|
-
|
|
75
|
+
str,
|
|
76
|
+
Field(
|
|
77
|
+
None,
|
|
78
|
+
alias="startTimeFromAscendingNode",
|
|
79
|
+
description="Date/time as string in ISO 8601 format (e.g. '2024-06-10T12:00:00Z')",
|
|
80
|
+
),
|
|
76
81
|
]
|
|
77
82
|
end: Annotated[
|
|
78
|
-
|
|
83
|
+
str,
|
|
84
|
+
Field(
|
|
85
|
+
None,
|
|
86
|
+
alias="completionTimeFromAscendingNode",
|
|
87
|
+
description="Date/time as string in ISO 8601 format (e.g. '2024-06-10T12:00:00Z')",
|
|
88
|
+
),
|
|
89
|
+
]
|
|
90
|
+
geom: Annotated[
|
|
91
|
+
Union[str, dict[str, float], BaseGeometry],
|
|
92
|
+
Field(
|
|
93
|
+
None,
|
|
94
|
+
description="Read EODAG documentation for all supported geometry format.",
|
|
95
|
+
),
|
|
79
96
|
]
|
|
80
|
-
geom: Annotated[str, Field(None, alias="geometry")]
|
|
81
97
|
uid: Annotated[str, Field(None)]
|
|
82
98
|
# OpenSearch Parameters for Collection Search (Table 3)
|
|
83
99
|
doi: Annotated[str, Field(None)]
|
|
@@ -150,6 +166,8 @@ class Queryables(CommonQueryables):
|
|
|
150
166
|
id: Annotated[str, Field(None)]
|
|
151
167
|
tileIdentifier: Annotated[str, Field(None, pattern=r"[0-9]{2}[A-Z]{3}")]
|
|
152
168
|
|
|
169
|
+
model_config = ConfigDict(arbitrary_types_allowed=True)
|
|
170
|
+
|
|
153
171
|
|
|
154
172
|
class QueryablesDict(UserDict[str, Any]):
|
|
155
173
|
"""Class inheriting from UserDict which contains queryables with their annotated type;
|
eodag/utils/__init__.py
CHANGED
|
@@ -375,7 +375,7 @@ def merge_mappings(mapping1: dict[Any, Any], mapping2: dict[Any, Any]) -> None:
|
|
|
375
375
|
# the key from mapping1 is not the lowercase version of a key in mapping2.
|
|
376
376
|
# Otherwise, create the key in mapping1. This is the meaning of
|
|
377
377
|
# `m1_keys_lowercase.get(key, key)`
|
|
378
|
-
current_value = mapping1.get(m1_keys_lowercase.get(key, key)
|
|
378
|
+
current_value = mapping1.get(m1_keys_lowercase.get(key, key))
|
|
379
379
|
if current_value is not None:
|
|
380
380
|
current_value_type = type(current_value)
|
|
381
381
|
new_value_type = type(value)
|
|
@@ -1541,3 +1541,24 @@ def dict_md5sum(input_dict: dict[str, Any]) -> str:
|
|
|
1541
1541
|
>>> assert(dict_md5sum({"a": 4, "b": {"b": 3, "c": 1, "a": 2}}) == hd)
|
|
1542
1542
|
"""
|
|
1543
1543
|
return obj_md5sum(sort_dict(input_dict))
|
|
1544
|
+
|
|
1545
|
+
|
|
1546
|
+
def remove_str_array_quotes(input_str: str) -> str:
|
|
1547
|
+
"""Remove quotes around arrays to avoid json parsing errors
|
|
1548
|
+
|
|
1549
|
+
:param input_str: string to format
|
|
1550
|
+
:returns: string without quotes surrounding array brackets
|
|
1551
|
+
|
|
1552
|
+
>>> remove_str_array_quotes('"a":"["a", "b"]"')
|
|
1553
|
+
'"a":["a", "b"]'
|
|
1554
|
+
>>> remove_str_array_quotes('{"a":"["a", "b"]", "b": ["c", "d"]}')
|
|
1555
|
+
'{"a":["a", "b"], "b": ["c", "d"]}'
|
|
1556
|
+
"""
|
|
1557
|
+
output_str = ""
|
|
1558
|
+
for i in range(0, len(input_str)):
|
|
1559
|
+
if i < len(input_str) - 1 and input_str[i] == '"' and input_str[i + 1] == "[":
|
|
1560
|
+
continue
|
|
1561
|
+
if input_str[i] == '"' and input_str[i - 1] == "]":
|
|
1562
|
+
continue
|
|
1563
|
+
output_str += input_str[i]
|
|
1564
|
+
return output_str
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: eodag
|
|
3
|
-
Version: 3.4.
|
|
3
|
+
Version: 3.4.3
|
|
4
4
|
Summary: Earth Observation Data Access Gateway
|
|
5
5
|
Home-page: https://github.com/CS-SI/eodag
|
|
6
6
|
Author: CS GROUP - France
|
|
@@ -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.4.
|
|
320
|
+
docker run -p 5000:5000 --rm csspace/eodag-server:3.4.3
|
|
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
2
|
eodag/cli.py,sha256=63QvLzyZEf6dsTB1jK_80lOTtp6fbjoSJROqKIL-mR4,29959
|
|
3
|
-
eodag/config.py,sha256=
|
|
3
|
+
eodag/config.py,sha256=ZEt79WWEYcxbsW6r9_aSKL8AuzgTArRnZQGRqoFUKnk,46080
|
|
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=
|
|
7
|
+
eodag/api/core.py,sha256=Mj1wzANFawqnUdXDtWxPlx6dr6JxVsUV4Grw7oAUzDA,109525
|
|
8
8
|
eodag/api/search_result.py,sha256=yv4s0JfYdpRiTGIQRSewFhQahO40vz_2N4dGh-CXA10,8198
|
|
9
9
|
eodag/api/product/__init__.py,sha256=klSKudmnHHeXvcwIX6Y30UTiP39tMfTwLNexSnAZnx0,1154
|
|
10
10
|
eodag/api/product/_assets.py,sha256=9bWIe_SYvsQO-q_lQFd7SxhUIWv7feze2-wnXOe8hhs,7570
|
|
11
|
-
eodag/api/product/_product.py,sha256=
|
|
12
|
-
eodag/api/product/metadata_mapping.py,sha256=
|
|
11
|
+
eodag/api/product/_product.py,sha256=QoP1NGiC5eB5rsiLj0Yrm_xf9FSiddCmWVbmspqOdCM,25380
|
|
12
|
+
eodag/api/product/metadata_mapping.py,sha256=HRg4STWm0wbtwjewynQiOmMqmpF_lpgdDhiGEjPxIA0,72414
|
|
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
|
|
@@ -20,47 +20,47 @@ eodag/plugins/base.py,sha256=bBp4k8QYJFEE6CRctrVwjws6suBwQdCLrLmvoGAmG3A,2670
|
|
|
20
20
|
eodag/plugins/manager.py,sha256=gYNnZY4LqnHNxx_IiUtsV6QLcl7Xf7jWd2PBa_MOE6U,20151
|
|
21
21
|
eodag/plugins/apis/__init__.py,sha256=PyY4f7P2iu3MkLPnw5eOrVew2fuavbBL3Asci3Ulwoo,744
|
|
22
22
|
eodag/plugins/apis/base.py,sha256=oCEKVtIbOjzNgM3lzaCCtO-DhU2PvGfKaATG6OxR-V8,2818
|
|
23
|
-
eodag/plugins/apis/ecmwf.py,sha256=
|
|
24
|
-
eodag/plugins/apis/usgs.py,sha256=
|
|
23
|
+
eodag/plugins/apis/ecmwf.py,sha256=xIUCjFOTtVdcpNj7MRKlSOXN8nZGusbH5tqEb0su3No,11387
|
|
24
|
+
eodag/plugins/apis/usgs.py,sha256=6S8z0g-O_2-Qcx0EaNHokBtEPVd2OwywNoRICARJp84,19619
|
|
25
25
|
eodag/plugins/authentication/__init__.py,sha256=_LVw42Bb1IhGAZH5xHRaS4b1iFoF9e27KDZOyoSoJHY,1039
|
|
26
26
|
eodag/plugins/authentication/aws_auth.py,sha256=6qeULjxljV9WTPqZjJJ6E0DWeiaGmzGR3rM0at75CFQ,3199
|
|
27
27
|
eodag/plugins/authentication/base.py,sha256=7vwX7O9xxvcKA9cMZ85F2eOkcdb7HyNbanUC5J0f9SA,2643
|
|
28
|
-
eodag/plugins/authentication/generic.py,sha256=
|
|
28
|
+
eodag/plugins/authentication/generic.py,sha256=z-u4WMixeG4nKwc70cUGVBXt3IVheDPA6tQWs2iDH4Q,2673
|
|
29
29
|
eodag/plugins/authentication/header.py,sha256=U_KnUqgZTLHXM5OKdGbH6jRqoQ0uIfOoxO6krUeAAcQ,4284
|
|
30
30
|
eodag/plugins/authentication/keycloak.py,sha256=f0AnWkvtsmLmWqgGfT3XB6AqbfCPU_ZHkDu07Zwf3E4,7178
|
|
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=rz5YlYb2WMBFHBlr1wMAWdhi7OlEf4t0gH4E__5xkD4,26568
|
|
33
33
|
eodag/plugins/authentication/qsauth.py,sha256=bkepO_sFRIhYm3Dzecx3VJP0Ap37vUuJSRmEY8HrV1U,3947
|
|
34
|
-
eodag/plugins/authentication/sas_auth.py,sha256=
|
|
34
|
+
eodag/plugins/authentication/sas_auth.py,sha256=bDqMgcteUH15Vs8vBoYCeA0hxCrCHIPwFYRrEtMtp9Y,4767
|
|
35
35
|
eodag/plugins/authentication/token.py,sha256=Xjx2fRqxHORY4UdzpSAzra8T2EnKyK1R2LGSDAYsioE,15272
|
|
36
36
|
eodag/plugins/authentication/token_exchange.py,sha256=m0KHc4KOhlw0YYXCWEAwB7n7cJLScq3pXa6M6fiXNAQ,4902
|
|
37
37
|
eodag/plugins/crunch/__init__.py,sha256=58D7kJhEpHJWobIKaNFPynfbSqAWgS90BiHzitqS5Ds,746
|
|
38
38
|
eodag/plugins/crunch/base.py,sha256=XW4HISgR0UswiEZmE4t42HxnSxknZBtVpuK8XVLYHzU,1415
|
|
39
|
-
eodag/plugins/crunch/filter_date.py,sha256=
|
|
39
|
+
eodag/plugins/crunch/filter_date.py,sha256=dTpUg43KkGU81K2-BO7pL0VbbQbZiwweE2RRWKtXpyw,4356
|
|
40
40
|
eodag/plugins/crunch/filter_latest_intersect.py,sha256=EkOyHEXFMrLQ7ZlTbzNs9lXZVDsbYTwgkPPK4JAkalY,4426
|
|
41
41
|
eodag/plugins/crunch/filter_latest_tpl_name.py,sha256=pP4EDP73mQg1zvkVm1Uo4nGAgwhNsMWe7_ecOBDbA0E,3679
|
|
42
42
|
eodag/plugins/crunch/filter_overlap.py,sha256=mkm5_ljgK_7QOOp-KgJjDjbVfss4gwRjIYUTMyKrw5o,7272
|
|
43
|
-
eodag/plugins/crunch/filter_property.py,sha256=
|
|
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=
|
|
45
|
+
eodag/plugins/download/aws.py,sha256=qJldBct8JekI0mAH8Jqecj88zS4XABsSHbcuNrGdRFo,58605
|
|
46
|
+
eodag/plugins/download/base.py,sha256=pyjTCNCL28wca2Q7Vy6vo7by8H6xbVgDFpMDM8d4ASY,30350
|
|
47
47
|
eodag/plugins/download/creodias_s3.py,sha256=RoEhYHtsPDbfrZhBllYoek0r7YzP8Upf5CPgc-PnlZM,4151
|
|
48
|
-
eodag/plugins/download/http.py,sha256=
|
|
49
|
-
eodag/plugins/download/s3rest.py,sha256=
|
|
48
|
+
eodag/plugins/download/http.py,sha256=foXxlzn68foXZb1WCTJXFTB20L_QSIfOCq04mJ2L35U,58288
|
|
49
|
+
eodag/plugins/download/s3rest.py,sha256=K5zukTNw99I3s0rpKujhIIZK3CFgeHVwUccYWk5kfj0,14999
|
|
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=YEWAlm2NVExUzeAjQwk7uG_Q1fxAEMTMC-uKnXrNHxM,18803
|
|
52
|
+
eodag/plugins/search/build_search_result.py,sha256=XO5-OQq7Lhb03Hkh1Pqnm02kXs3pefj1bEDI7TA12-w,57318
|
|
53
|
+
eodag/plugins/search/cop_marine.py,sha256=GIDMeyuzXApHfxbMxSMUZyqR685NpuPYKHAHf2OeMt4,20373
|
|
54
54
|
eodag/plugins/search/creodias_s3.py,sha256=rBZf3Uza7z3VuBdoUJQ9kuufGgACKVsEvK3phUo7C7M,3379
|
|
55
55
|
eodag/plugins/search/csw.py,sha256=de8CNjz4bjEny27V0RXC7V8LRz0Ik3yqQVjTAc_JlyA,12548
|
|
56
|
-
eodag/plugins/search/data_request_search.py,sha256=
|
|
57
|
-
eodag/plugins/search/qssearch.py,sha256
|
|
56
|
+
eodag/plugins/search/data_request_search.py,sha256=NS2yiIZqf0mSy6OnmTEJRg4lZUWWxIU_6d6VY85wW5k,26691
|
|
57
|
+
eodag/plugins/search/qssearch.py,sha256=utYO-ed60aN9pvaTNkhVYrHrxUbgNEr8uTF5eOvl4DE,92379
|
|
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=OIepZt4pxvAjSBadwmDK4fIqzKOgFV5scAVPTVtpr_4,3132555
|
|
61
61
|
eodag/resources/locations_conf_template.yml,sha256=_eBv-QKHYMIKhY0b0kp4Ee33RsayxN8LWH3kDXxfFSk,986
|
|
62
62
|
eodag/resources/product_types.yml,sha256=vN-VNxKmRbMmRfdjMI3Tc3vs66yhU3Oep8_v2AXWH9Y,409966
|
|
63
|
-
eodag/resources/providers.yml,sha256=
|
|
63
|
+
eodag/resources/providers.yml,sha256=wz2Ks4hvRpzx4VEFjtjDAmLQEjEZgzCM51OD70Va_-E,223449
|
|
64
64
|
eodag/resources/stac.yml,sha256=XgQFkJEfu_f2ZiVM5L1flkew7wq55p_PJmDuVkOG3fs,10442
|
|
65
65
|
eodag/resources/stac_api.yml,sha256=2FdQL_qBTIUlu6KH836T4CXBKO9AvVxA_Ub3J1RP81A,68881
|
|
66
66
|
eodag/resources/stac_provider.yml,sha256=2yfdnuhJYV1f5el3aFkunoPqHAcD8oCDzvASbmldIvY,6703
|
|
@@ -77,25 +77,25 @@ eodag/rest/config.py,sha256=qWXukdSB6cSpkZszkPSGPGn5oiVfKEC3rPGp0q-2c4E,2112
|
|
|
77
77
|
eodag/rest/constants.py,sha256=XsNgjzv0Qvw1hhjeuscDuyQpCm99g3O-hEyslPSiFzQ,945
|
|
78
78
|
eodag/rest/core.py,sha256=P4o9Fjb-1xE1mhKMai1m0D2J90pSkw_hxE3XI4iGXBg,26550
|
|
79
79
|
eodag/rest/errors.py,sha256=YDbPrneeGuJGZygWBH2R_TWGice0jyvkSTTwFFQIiH4,6507
|
|
80
|
-
eodag/rest/server.py,sha256=
|
|
80
|
+
eodag/rest/server.py,sha256=HyZKXcieYdwyZuUsgzX1kGn5fqK8QMtDLP0IlG9gYUk,18290
|
|
81
81
|
eodag/rest/server.wsgi,sha256=ssM4JQi8tZpOYj03CTdM0weyUF1b3Lbh38pdD-vBfXs,152
|
|
82
|
-
eodag/rest/stac.py,sha256=
|
|
82
|
+
eodag/rest/stac.py,sha256=mX69gVBAmUQQw5tCTrgj5bUmc-TA6fDKq5jRuilcBUI,35815
|
|
83
83
|
eodag/rest/templates/README,sha256=qFgCBE6XC4YiXkpPoSHkYbMTQr8Zg5Wc5eAKVcooXmw,57
|
|
84
84
|
eodag/rest/types/__init__.py,sha256=Bu0C3dzXHe8kocnz2PIHV0GjQWlAQas6ToIfwusNPQs,742
|
|
85
85
|
eodag/rest/types/collections_search.py,sha256=TRZI72a1W29a2e_mg9cQpFUcTTEG3_SSsfYrZZuXMLA,1527
|
|
86
86
|
eodag/rest/types/eodag_search.py,sha256=uN96xejktaQRojKZm2BGAgxvcWcwBkle4_I2z7jlDzw,14281
|
|
87
|
-
eodag/rest/types/queryables.py,sha256=
|
|
87
|
+
eodag/rest/types/queryables.py,sha256=x_pvUJCkw4ktjkYhVSSY7waOodg2eBhTvIDA2B6kQ5k,6458
|
|
88
88
|
eodag/rest/types/stac_search.py,sha256=a_m7ATLPFttvUo9_hfsIAQKtNhBvX3U86lNWv_8_oIM,8765
|
|
89
89
|
eodag/rest/utils/__init__.py,sha256=VRTxZFU15mB4izpYd8e30_xR1iZlJRsoW1jeCZ7bk1o,6560
|
|
90
90
|
eodag/rest/utils/cql_evaluate.py,sha256=aMcdowtYbQpU1H9oX1IM2PMot6XTy49Q6H2k-YBEtco,4087
|
|
91
91
|
eodag/rest/utils/rfc3339.py,sha256=_kaK7_8sxXyCAAs99ltVoinUw02frtZckl72ytI6IjQ,2234
|
|
92
|
-
eodag/types/__init__.py,sha256=
|
|
92
|
+
eodag/types/__init__.py,sha256=CCNBBM1NTq5UkN7s5zdl-uZdT8nOGX0z9Y8g7kwEyAw,16150
|
|
93
93
|
eodag/types/bbox.py,sha256=jbfX58KOKIl0OoGZc93kAYhG_mEOjuBQGJtR2hl3-_Y,4354
|
|
94
94
|
eodag/types/download_args.py,sha256=urSl5KbLRN1XetMa2XzxYltny8CCFmHpjxU3j3BEGO8,1565
|
|
95
|
-
eodag/types/queryables.py,sha256=
|
|
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=R27rTqmAEGqokM2C1lgQPsl0TLII6uhozewyajUz2Ys,53608
|
|
99
99
|
eodag/utils/exceptions.py,sha256=hYeq5GzMqW50o6mSUUlvOpsfU0eRjwhpqXTSE5MFv9Q,4452
|
|
100
100
|
eodag/utils/import_system.py,sha256=1vwcSRlsZwuaP8ssrpRBP5jldZ54eLv2ttNCdLf0TtA,3901
|
|
101
101
|
eodag/utils/logging.py,sha256=KoMsyS1f6O1hr_SMDOIxvt842mOJgmu_yLUk0-0EKFs,3507
|
|
@@ -105,9 +105,9 @@ eodag/utils/requests.py,sha256=avNHKrOZ7Kp6lUA7u4kqupIth9MoirLzDsMrrmQDt4s,4560
|
|
|
105
105
|
eodag/utils/rest.py,sha256=a9tlG_Y9iQXLeyeLyecxFNbopGHV-8URecMSRs0UXu0,3348
|
|
106
106
|
eodag/utils/s3.py,sha256=2mspYgEYGA1IDbruMMDdJ2DoxyX3riSlV7PDIu7carg,7989
|
|
107
107
|
eodag/utils/stac_reader.py,sha256=8r6amio5EtwGF9iu9zHaGDz4oUPKKeXRuyTzPNakrO4,9406
|
|
108
|
-
eodag-3.4.
|
|
109
|
-
eodag-3.4.
|
|
110
|
-
eodag-3.4.
|
|
111
|
-
eodag-3.4.
|
|
112
|
-
eodag-3.4.
|
|
113
|
-
eodag-3.4.
|
|
108
|
+
eodag-3.4.3.dist-info/licenses/LICENSE,sha256=4MAecetnRTQw5DlHtiikDSzKWO1xVLwzM5_DsPMYlnE,10172
|
|
109
|
+
eodag-3.4.3.dist-info/METADATA,sha256=bGEpMOCNRwPWnm0u8fHCIMToaAv_ofnMe7AaBKI92f4,15489
|
|
110
|
+
eodag-3.4.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
111
|
+
eodag-3.4.3.dist-info/entry_points.txt,sha256=krdrBOQso6kAcSekV9ItEYAkE8syTC4Ev75bI781VgE,2561
|
|
112
|
+
eodag-3.4.3.dist-info/top_level.txt,sha256=025IMTmVe5eDjIPP4KEFQKespOPMQdne4U4jOy8nftM,6
|
|
113
|
+
eodag-3.4.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|