eodag 3.4.3__py3-none-any.whl → 3.5.1__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.
@@ -3396,11 +3396,15 @@
3396
3396
  productType: EO:EEA:DAT:CORINE
3397
3397
  providerProductType: Corine Land Cover 2018
3398
3398
  format: GeoTiff100mt
3399
+ discover_metadata:
3400
+ raise_mtd_discovery_error: true
3399
3401
  metadata_mapping:
3400
3402
  id: '$.id'
3401
3403
  providerProductType:
3402
3404
  - '{{"product_type": "{providerProductType}"}}'
3403
3405
  - '$.null'
3406
+ startTimeFromAscendingNode: '$.properties.startdate'
3407
+ completionTimeFromAscendingNode: '$.properties.enddate'
3404
3408
  defaultGeometry: 'POLYGON((180 -90, 180 90, -180 90, -180 -90, 180 -90))'
3405
3409
  orderLink: 'https://gateway.prod.wekeo2.eu/hda-broker/api/v1/dataaccess/download?{{"location": "{downloadLink}","product_id":"{id}", "dataset_id": "EO:EEA:DAT:CORINE"}}'
3406
3410
  CLMS_GLO_FCOVER_333M:
eodag/rest/core.py CHANGED
@@ -370,6 +370,7 @@ async def all_collections(
370
370
  instrument: Optional[str] = None,
371
371
  constellation: Optional[str] = None,
372
372
  datetime: Optional[str] = None,
373
+ bbox: Optional[str] = None,
373
374
  ) -> dict[str, Any]:
374
375
  """Build STAC collections
375
376
 
@@ -395,6 +396,7 @@ async def all_collections(
395
396
  instrument=instrument,
396
397
  constellation=constellation,
397
398
  datetime=datetime,
399
+ bbox=bbox,
398
400
  )
399
401
 
400
402
  # # parse f-strings
@@ -414,7 +416,7 @@ async def all_collections(
414
416
  return collections
415
417
 
416
418
  hashed_collections = hash(
417
- f"{provider}:{q}:{platform}:{instrument}:{constellation}:{datetime}"
419
+ f"{provider}:{q}:{platform}:{instrument}:{constellation}:{datetime}:{bbox}"
418
420
  )
419
421
  cache_key = f"{CACHE_KEY_COLLECTIONS}:{hashed_collections}"
420
422
  return await cached(_fetch, cache_key, request)
eodag/rest/errors.py CHANGED
@@ -16,6 +16,7 @@
16
16
  # See the License for the specific language governing permissions and
17
17
  # limitations under the License.
18
18
  import logging
19
+ import re
19
20
  from typing import Union
20
21
 
21
22
  from fastapi import FastAPI, Request
@@ -95,10 +96,14 @@ class ResponseSearchError(Exception):
95
96
 
96
97
  if type(exception) is ValidationError:
97
98
  for error_param in exception.parameters:
98
- stac_param = EODAGSearch.to_stac(error_param)
99
- exception.message = exception.message.replace(
100
- error_param, stac_param
101
- )
99
+ error_param_pattern = rf"\b{error_param}\b"
100
+ if re.search(error_param_pattern, exception.message):
101
+ stac_param = EODAGSearch.to_stac(error_param)
102
+ exception.message = re.sub(
103
+ error_param_pattern,
104
+ stac_param,
105
+ exception.message,
106
+ )
102
107
  error_dict["message"] = exception.message
103
108
 
104
109
  error_list.append(error_dict)
eodag/rest/server.py CHANGED
@@ -437,6 +437,7 @@ async def collections(
437
437
  request: Request,
438
438
  provider: Optional[str] = None,
439
439
  q: Optional[str] = None,
440
+ bbox: Optional[str] = None,
440
441
  platform: Optional[str] = None,
441
442
  instrument: Optional[str] = None,
442
443
  constellation: Optional[str] = None,
@@ -450,8 +451,9 @@ async def collections(
450
451
  logger.info(f"{request.method} {request.state.url}")
451
452
 
452
453
  collections = await all_collections(
453
- request, provider, q, platform, instrument, constellation, datetime
454
+ request, provider, q, platform, instrument, constellation, datetime, bbox
454
455
  )
456
+
455
457
  return ORJSONResponse(collections)
456
458
 
457
459
 
eodag/rest/stac.py CHANGED
@@ -34,6 +34,7 @@ from urllib.parse import (
34
34
 
35
35
  import geojson
36
36
  from jsonpath_ng.jsonpath import Child
37
+ from shapely.geometry import Polygon
37
38
 
38
39
  from eodag.api.product.metadata_mapping import (
39
40
  DEFAULT_METADATA_MAPPING,
@@ -41,6 +42,7 @@ from eodag.api.product.metadata_mapping import (
41
42
  get_metadata_path,
42
43
  )
43
44
  from eodag.rest.config import Settings
45
+ from eodag.rest.types.stac_search import SearchPostRequest
44
46
  from eodag.rest.utils.rfc3339 import str_to_interval
45
47
  from eodag.utils import (
46
48
  deepcopy,
@@ -56,6 +58,7 @@ from eodag.utils.exceptions import (
56
58
  NotAvailableError,
57
59
  RequestError,
58
60
  TimeOutError,
61
+ ValidationError,
59
62
  )
60
63
  from eodag.utils.requests import fetch_json
61
64
 
@@ -818,6 +821,7 @@ class StacCollection(StacCommon):
818
821
  instrument: Optional[str] = None,
819
822
  constellation: Optional[str] = None,
820
823
  datetime: Optional[str] = None,
824
+ bbox: Optional[str] = None,
821
825
  ) -> list[dict[str, Any]]:
822
826
  """Build STAC collections list
823
827
 
@@ -852,13 +856,30 @@ class StacCollection(StacCommon):
852
856
  else:
853
857
  product_types = all_pt
854
858
 
859
+ _bbox_poly = None
860
+ if bbox:
861
+ try:
862
+ _bbox = [float(x) for x in bbox.split(",")]
863
+ SearchPostRequest.validate_bbox(_bbox) # type: ignore
864
+ _bbox_poly = Polygon.from_bounds(*_bbox)
865
+ except ValueError as e:
866
+ raise ValidationError(f"Wrong bbox: {e}")
867
+
855
868
  # list product types with all metadata using guessed ids
856
869
  collection_list: list[dict[str, Any]] = []
857
870
  for product_type in product_types:
858
871
  stac_collection = self.__generate_stac_collection(
859
872
  collection_model, product_type
860
873
  )
861
- collection_list.append(stac_collection)
874
+ # Apply bbox filter
875
+ if _bbox_poly:
876
+ _other_bbox_poly = Polygon.from_bounds(
877
+ *stac_collection["extent"]["spatial"]["bbox"][0]
878
+ )
879
+ if _bbox_poly.intersects(_other_bbox_poly):
880
+ collection_list.append(stac_collection)
881
+ else:
882
+ collection_list.append(stac_collection)
862
883
 
863
884
  return collection_list
864
885
 
eodag/utils/__init__.py CHANGED
@@ -140,6 +140,9 @@ DEFAULT_MAX_ITEMS_PER_PAGE = 50
140
140
  # default product-types start date
141
141
  DEFAULT_MISSION_START_DATE = "2015-01-01T00:00:00.000Z"
142
142
 
143
+ # default token expiration margin in seconds
144
+ DEFAULT_TOKEN_EXPIRATION_MARGIN = 60
145
+
143
146
  # update missing mimetypes
144
147
  mimetypes.add_type("text/xml", ".xsd")
145
148
  mimetypes.add_type("application/x-grib", ".grib")
eodag/utils/cache.py ADDED
@@ -0,0 +1,68 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Copyright 2025, CS GROUP - France, https://www.cs-soprasteria.com/
3
+ #
4
+ # This file is part of EODAG project
5
+ # https://www.github.com/CS-SI/EODAG
6
+ #
7
+ # Licensed under the Apache License, Version 2.0 (the "License");
8
+ # you may not use this file except in compliance with the License.
9
+ # You may obtain a copy of the License at
10
+ #
11
+ # http://www.apache.org/licenses/LICENSE-2.0
12
+ #
13
+ # Unless required by applicable law or agreed to in writing, software
14
+ # distributed under the License is distributed on an "AS IS" BASIS,
15
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ # See the License for the specific language governing permissions and
17
+ # limitations under the License.
18
+ import functools
19
+ import logging
20
+ from typing import Any, Callable, TypeVar
21
+
22
+ logger = logging.getLogger("eodag.cache")
23
+
24
+ R = TypeVar("R")
25
+
26
+
27
+ def instance_cached_method(
28
+ maxsize: int = 128,
29
+ ) -> Callable[[Callable[..., R]], Callable[..., R]]:
30
+ """
31
+ Decorator to cache an instance method using functools.lru_cache on a per-instance basis.
32
+
33
+ This decorator creates a separate LRU cache for each instance of the class,
34
+ ensuring that cached results are not shared across instances.
35
+
36
+ The cache stores up to `maxsize` entries (default 128), which matches the
37
+ default cache size of functools.lru_cache. This default provides a good balance
38
+ between memory consumption and cache hit rate for most use cases.
39
+
40
+ :param maxsize: Maximum number of cached calls to store per instance.
41
+ Defaults to 128, consistent with functools.lru_cache.
42
+ :return: Decorated method with per-instance caching enabled.
43
+ """
44
+
45
+ def decorator(method: Callable[..., R]) -> Callable[..., R]:
46
+ @functools.wraps(method)
47
+ def wrapper(self: Any, *args: Any, **kwargs: Any) -> R:
48
+ cache_name = f"_cached_{method.__name__}"
49
+ if not hasattr(self, cache_name):
50
+ cached = functools.lru_cache(maxsize=maxsize)(
51
+ method.__get__(self, type(self))
52
+ )
53
+ setattr(self, cache_name, cached)
54
+
55
+ cached_func = getattr(self, cache_name)
56
+ before_hits = cached_func.cache_info().hits
57
+ result = cached_func(*args, **kwargs)
58
+ after_hits = cached_func.cache_info().hits
59
+
60
+ if after_hits > before_hits:
61
+ logger.debug(
62
+ f"Cache hit for {method.__qualname__} with args={args}, kwargs={kwargs}"
63
+ )
64
+ return result
65
+
66
+ return wrapper
67
+
68
+ return decorator
eodag/utils/env.py ADDED
@@ -0,0 +1,29 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Copyright 2024, CS GROUP - France, https://www.csgroup.eu/
3
+ #
4
+ # This file is part of EODAG project
5
+ # https://www.github.com/CS-SI/EODAG
6
+ #
7
+ # Licensed under the Apache License, Version 2.0 (the "License");
8
+ # you may not use this file except in compliance with the License.
9
+ # You may obtain a copy of the License at
10
+ #
11
+ # http://www.apache.org/licenses/LICENSE-2.0
12
+ #
13
+ # Unless required by applicable law or agreed to in writing, software
14
+ # distributed under the License is distributed on an "AS IS" BASIS,
15
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ # See the License for the specific language governing permissions and
17
+ # limitations under the License.
18
+
19
+ import os
20
+
21
+
22
+ def is_env_var_true(var_name: str) -> bool:
23
+ """
24
+ Check if an environment variable is set to 'true' (case-insensitive).
25
+
26
+ :param var_name: Name of the environment variable to check.
27
+ :return: True if the environment variable is set to 'true', False otherwise.
28
+ """
29
+ return os.getenv(var_name, "").strip().lower() in ("1", "true", "yes", "on")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: eodag
3
- Version: 3.4.3
3
+ Version: 3.5.1
4
4
  Summary: Earth Observation Data Access Gateway
5
5
  Home-page: https://github.com/CS-SI/eodag
6
6
  Author: CS GROUP - France
@@ -64,7 +64,7 @@ Requires-Dist: OWSLib>=0.27.1; extra == "csw"
64
64
  Provides-Extra: ecmwf
65
65
  Requires-Dist: ecmwf-api-client; extra == "ecmwf"
66
66
  Provides-Extra: usgs
67
- Requires-Dist: usgs>=0.3.1; extra == "usgs"
67
+ Requires-Dist: usgs>=0.3.6; extra == "usgs"
68
68
  Provides-Extra: server
69
69
  Requires-Dist: fastapi>=0.93.0; extra == "server"
70
70
  Requires-Dist: pygeofilter; extra == "server"
@@ -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.3
320
+ docker run -p 5000:5000 --rm csspace/eodag-server:3.5.1
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=ZEt79WWEYcxbsW6r9_aSKL8AuzgTArRnZQGRqoFUKnk,46080
3
+ eodag/config.py,sha256=SxF082lEZL2Iq5V_jLJXFejitgodZ23y5YqkgNIda_g,48095
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=Mj1wzANFawqnUdXDtWxPlx6dr6JxVsUV4Grw7oAUzDA,109525
7
+ eodag/api/core.py,sha256=BAvM6tBSuAjsNQ_yo9rjspr59-UnZyB4ueJTyNOWow8,111644
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=QoP1NGiC5eB5rsiLj0Yrm_xf9FSiddCmWVbmspqOdCM,25380
12
- eodag/api/product/metadata_mapping.py,sha256=HRg4STWm0wbtwjewynQiOmMqmpF_lpgdDhiGEjPxIA0,72414
11
+ eodag/api/product/_product.py,sha256=UXCaWUtkAGWVCfF68zWCYDoEUUfxAdC0RGaNLZ3vUQ8,26794
12
+ eodag/api/product/metadata_mapping.py,sha256=-zcdnpPIrx3dDUKhRAOyV1S1R2Pd3tjEnpPSdpWuK_A,73554
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=gYNnZY4LqnHNxx_IiUtsV6QLcl7Xf7jWd2PBa_MOE6U,20151
20
+ eodag/plugins/manager.py,sha256=W_LO0gisjtHWgR50DHpduoD2wcP4yxx8YB4t4jl_mAw,20150
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
@@ -27,13 +27,13 @@ eodag/plugins/authentication/aws_auth.py,sha256=6qeULjxljV9WTPqZjJJ6E0DWeiaGmzGR
27
27
  eodag/plugins/authentication/base.py,sha256=7vwX7O9xxvcKA9cMZ85F2eOkcdb7HyNbanUC5J0f9SA,2643
28
28
  eodag/plugins/authentication/generic.py,sha256=z-u4WMixeG4nKwc70cUGVBXt3IVheDPA6tQWs2iDH4Q,2673
29
29
  eodag/plugins/authentication/header.py,sha256=U_KnUqgZTLHXM5OKdGbH6jRqoQ0uIfOoxO6krUeAAcQ,4284
30
- eodag/plugins/authentication/keycloak.py,sha256=f0AnWkvtsmLmWqgGfT3XB6AqbfCPU_ZHkDu07Zwf3E4,7178
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=rz5YlYb2WMBFHBlr1wMAWdhi7OlEf4t0gH4E__5xkD4,26568
32
+ eodag/plugins/authentication/openid_connect.py,sha256=jj1iAvENJTIlBr8nnlQJ5TW8-Qi9V_85QVBLExy41HA,27068
33
33
  eodag/plugins/authentication/qsauth.py,sha256=bkepO_sFRIhYm3Dzecx3VJP0Ap37vUuJSRmEY8HrV1U,3947
34
34
  eodag/plugins/authentication/sas_auth.py,sha256=bDqMgcteUH15Vs8vBoYCeA0hxCrCHIPwFYRrEtMtp9Y,4767
35
- eodag/plugins/authentication/token.py,sha256=Xjx2fRqxHORY4UdzpSAzra8T2EnKyK1R2LGSDAYsioE,15272
36
- eodag/plugins/authentication/token_exchange.py,sha256=m0KHc4KOhlw0YYXCWEAwB7n7cJLScq3pXa6M6fiXNAQ,4902
35
+ eodag/plugins/authentication/token.py,sha256=f2SossIJ_XlnBuOw_OprLNrF1p-uolL_KEX71_BhzKw,15798
36
+ eodag/plugins/authentication/token_exchange.py,sha256=raFIN8UnO9MpqQukDJg4Pog-LJLzq8Bk54_6k9cCwFc,4963
37
37
  eodag/plugins/crunch/__init__.py,sha256=58D7kJhEpHJWobIKaNFPynfbSqAWgS90BiHzitqS5Ds,746
38
38
  eodag/plugins/crunch/base.py,sha256=XW4HISgR0UswiEZmE4t42HxnSxknZBtVpuK8XVLYHzU,1415
39
39
  eodag/plugins/crunch/filter_date.py,sha256=dTpUg43KkGU81K2-BO7pL0VbbQbZiwweE2RRWKtXpyw,4356
@@ -42,25 +42,25 @@ 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=qJldBct8JekI0mAH8Jqecj88zS4XABsSHbcuNrGdRFo,58605
45
+ eodag/plugins/download/aws.py,sha256=zXlB6V9zJ-_dSxJA6tculCr3Oz9IMxdGByJ3oXwOahU,58592
46
46
  eodag/plugins/download/base.py,sha256=pyjTCNCL28wca2Q7Vy6vo7by8H6xbVgDFpMDM8d4ASY,30350
47
47
  eodag/plugins/download/creodias_s3.py,sha256=RoEhYHtsPDbfrZhBllYoek0r7YzP8Upf5CPgc-PnlZM,4151
48
48
  eodag/plugins/download/http.py,sha256=foXxlzn68foXZb1WCTJXFTB20L_QSIfOCq04mJ2L35U,58288
49
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=YEWAlm2NVExUzeAjQwk7uG_Q1fxAEMTMC-uKnXrNHxM,18803
52
- eodag/plugins/search/build_search_result.py,sha256=XO5-OQq7Lhb03Hkh1Pqnm02kXs3pefj1bEDI7TA12-w,57318
51
+ eodag/plugins/search/base.py,sha256=NqlEBCjdBlW_9jf6aaMwjs2jZ8BhhhDub7Q5GAZgSzg,18839
52
+ eodag/plugins/search/build_search_result.py,sha256=46hffonu2wQ6wWJzAjLDQ1OZj1A3TFYwWDK11TajWR0,57590
53
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=NS2yiIZqf0mSy6OnmTEJRg4lZUWWxIU_6d6VY85wW5k,26691
57
- eodag/plugins/search/qssearch.py,sha256=utYO-ed60aN9pvaTNkhVYrHrxUbgNEr8uTF5eOvl4DE,92379
56
+ eodag/plugins/search/data_request_search.py,sha256=IN6sgQqx5fedQI6jxOkUdUk_mRLAKmCRW8S7pHgOOnA,27332
57
+ eodag/plugins/search/qssearch.py,sha256=4YWO0s11L5lX5U18fS3zwl19QI38n6-Weh70mTXZjEg,92623
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=OIepZt4pxvAjSBadwmDK4fIqzKOgFV5scAVPTVtpr_4,3132555
60
+ eodag/resources/ext_product_types.json,sha256=l2SpHUKy9NpQwavw_Qys71CRdBf8a5XZe4DYx00Am6Q,3131725
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=wz2Ks4hvRpzx4VEFjtjDAmLQEjEZgzCM51OD70Va_-E,223449
63
+ eodag/resources/providers.yml,sha256=Lz92QQuyvN2aX6WLgMuXlY90qtKsyDCr7tgfCg5FXZk,223639
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
@@ -75,11 +75,11 @@ 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=P4o9Fjb-1xE1mhKMai1m0D2J90pSkw_hxE3XI4iGXBg,26550
79
- eodag/rest/errors.py,sha256=YDbPrneeGuJGZygWBH2R_TWGice0jyvkSTTwFFQIiH4,6507
80
- eodag/rest/server.py,sha256=HyZKXcieYdwyZuUsgzX1kGn5fqK8QMtDLP0IlG9gYUk,18290
78
+ eodag/rest/core.py,sha256=PFhYnp2k3IsreZvKwuzED4T6hvjDd8o3QFL3FqaP_Ds,26612
79
+ eodag/rest/errors.py,sha256=ShYTl_cQej3H20jRtX_HLNKpnB6J4mbl0uhJTifzDj0,6736
80
+ eodag/rest/server.py,sha256=nhcVdePnP46xzQE9bF4s2-K0OHR4IAhNq5wJsgVvI4o,18329
81
81
  eodag/rest/server.wsgi,sha256=ssM4JQi8tZpOYj03CTdM0weyUF1b3Lbh38pdD-vBfXs,152
82
- eodag/rest/stac.py,sha256=mX69gVBAmUQQw5tCTrgj5bUmc-TA6fDKq5jRuilcBUI,35815
82
+ eodag/rest/stac.py,sha256=5t7qsSr4qVINHhjebW2SyYZVE0yzSyD1xa9zOcIuvNs,36655
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
@@ -95,7 +95,9 @@ 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=R27rTqmAEGqokM2C1lgQPsl0TLII6uhozewyajUz2Ys,53608
98
+ eodag/utils/__init__.py,sha256=bO-CX8nBKyo4VeQmlkv090cGMtRvCiN8fOmtlpTemfU,53691
99
+ eodag/utils/cache.py,sha256=UNvnzhJnNBuKLdH_0KnhuTMlBvz4GS3nr2IH2Lj6Swc,2580
100
+ eodag/utils/env.py,sha256=_sgCzDmaJnMnCv1qk9xe9jBhBKqqXbEYmsyGYwYw4NI,1085
99
101
  eodag/utils/exceptions.py,sha256=hYeq5GzMqW50o6mSUUlvOpsfU0eRjwhpqXTSE5MFv9Q,4452
100
102
  eodag/utils/import_system.py,sha256=1vwcSRlsZwuaP8ssrpRBP5jldZ54eLv2ttNCdLf0TtA,3901
101
103
  eodag/utils/logging.py,sha256=KoMsyS1f6O1hr_SMDOIxvt842mOJgmu_yLUk0-0EKFs,3507
@@ -105,9 +107,9 @@ eodag/utils/requests.py,sha256=avNHKrOZ7Kp6lUA7u4kqupIth9MoirLzDsMrrmQDt4s,4560
105
107
  eodag/utils/rest.py,sha256=a9tlG_Y9iQXLeyeLyecxFNbopGHV-8URecMSRs0UXu0,3348
106
108
  eodag/utils/s3.py,sha256=2mspYgEYGA1IDbruMMDdJ2DoxyX3riSlV7PDIu7carg,7989
107
109
  eodag/utils/stac_reader.py,sha256=8r6amio5EtwGF9iu9zHaGDz4oUPKKeXRuyTzPNakrO4,9406
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,,
110
+ eodag-3.5.1.dist-info/licenses/LICENSE,sha256=4MAecetnRTQw5DlHtiikDSzKWO1xVLwzM5_DsPMYlnE,10172
111
+ eodag-3.5.1.dist-info/METADATA,sha256=nQJv4PteigvUDrLw1wG2S1_bK4CKHS0Dn0MvxTXim1U,15489
112
+ eodag-3.5.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
113
+ eodag-3.5.1.dist-info/entry_points.txt,sha256=krdrBOQso6kAcSekV9ItEYAkE8syTC4Ev75bI781VgE,2561
114
+ eodag-3.5.1.dist-info/top_level.txt,sha256=025IMTmVe5eDjIPP4KEFQKespOPMQdne4U4jOy8nftM,6
115
+ eodag-3.5.1.dist-info/RECORD,,
File without changes