eodag 3.1.0b1__py3-none-any.whl → 3.2.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.
Files changed (85) hide show
  1. eodag/api/core.py +69 -63
  2. eodag/api/product/_assets.py +49 -13
  3. eodag/api/product/_product.py +41 -30
  4. eodag/api/product/drivers/__init__.py +81 -4
  5. eodag/api/product/drivers/base.py +65 -4
  6. eodag/api/product/drivers/generic.py +65 -0
  7. eodag/api/product/drivers/sentinel1.py +97 -0
  8. eodag/api/product/drivers/sentinel2.py +95 -0
  9. eodag/api/product/metadata_mapping.py +85 -79
  10. eodag/api/search_result.py +13 -23
  11. eodag/cli.py +4 -4
  12. eodag/config.py +77 -80
  13. eodag/plugins/apis/base.py +1 -1
  14. eodag/plugins/apis/ecmwf.py +12 -15
  15. eodag/plugins/apis/usgs.py +12 -11
  16. eodag/plugins/authentication/aws_auth.py +16 -13
  17. eodag/plugins/authentication/base.py +5 -3
  18. eodag/plugins/authentication/header.py +3 -3
  19. eodag/plugins/authentication/keycloak.py +4 -4
  20. eodag/plugins/authentication/oauth.py +7 -3
  21. eodag/plugins/authentication/openid_connect.py +20 -14
  22. eodag/plugins/authentication/sas_auth.py +4 -4
  23. eodag/plugins/authentication/token.py +7 -7
  24. eodag/plugins/authentication/token_exchange.py +1 -1
  25. eodag/plugins/base.py +4 -4
  26. eodag/plugins/crunch/base.py +4 -4
  27. eodag/plugins/crunch/filter_date.py +4 -4
  28. eodag/plugins/crunch/filter_latest_intersect.py +6 -6
  29. eodag/plugins/crunch/filter_latest_tpl_name.py +7 -7
  30. eodag/plugins/crunch/filter_overlap.py +4 -4
  31. eodag/plugins/crunch/filter_property.py +4 -4
  32. eodag/plugins/download/aws.py +137 -77
  33. eodag/plugins/download/base.py +8 -17
  34. eodag/plugins/download/creodias_s3.py +2 -2
  35. eodag/plugins/download/http.py +30 -32
  36. eodag/plugins/download/s3rest.py +5 -4
  37. eodag/plugins/manager.py +10 -20
  38. eodag/plugins/search/__init__.py +6 -5
  39. eodag/plugins/search/base.py +38 -42
  40. eodag/plugins/search/build_search_result.py +286 -336
  41. eodag/plugins/search/cop_marine.py +22 -12
  42. eodag/plugins/search/creodias_s3.py +8 -78
  43. eodag/plugins/search/csw.py +11 -11
  44. eodag/plugins/search/data_request_search.py +19 -18
  45. eodag/plugins/search/qssearch.py +84 -151
  46. eodag/plugins/search/stac_list_assets.py +85 -0
  47. eodag/plugins/search/static_stac_search.py +4 -4
  48. eodag/resources/ext_product_types.json +1 -1
  49. eodag/resources/product_types.yml +848 -398
  50. eodag/resources/providers.yml +1038 -1115
  51. eodag/resources/stac_api.yml +2 -2
  52. eodag/resources/user_conf_template.yml +10 -9
  53. eodag/rest/cache.py +2 -2
  54. eodag/rest/config.py +3 -3
  55. eodag/rest/core.py +24 -24
  56. eodag/rest/errors.py +5 -5
  57. eodag/rest/server.py +3 -11
  58. eodag/rest/stac.py +41 -38
  59. eodag/rest/types/collections_search.py +3 -3
  60. eodag/rest/types/eodag_search.py +23 -23
  61. eodag/rest/types/queryables.py +40 -28
  62. eodag/rest/types/stac_search.py +15 -25
  63. eodag/rest/utils/__init__.py +11 -21
  64. eodag/rest/utils/cql_evaluate.py +6 -6
  65. eodag/rest/utils/rfc3339.py +2 -2
  66. eodag/types/__init__.py +97 -29
  67. eodag/types/bbox.py +2 -2
  68. eodag/types/download_args.py +2 -2
  69. eodag/types/queryables.py +5 -2
  70. eodag/types/search_args.py +4 -4
  71. eodag/types/whoosh.py +1 -3
  72. eodag/utils/__init__.py +82 -41
  73. eodag/utils/exceptions.py +2 -2
  74. eodag/utils/import_system.py +2 -2
  75. eodag/utils/requests.py +2 -2
  76. eodag/utils/rest.py +2 -2
  77. eodag/utils/s3.py +231 -0
  78. eodag/utils/stac_reader.py +10 -10
  79. {eodag-3.1.0b1.dist-info → eodag-3.2.0.dist-info}/METADATA +12 -10
  80. eodag-3.2.0.dist-info/RECORD +113 -0
  81. {eodag-3.1.0b1.dist-info → eodag-3.2.0.dist-info}/WHEEL +1 -1
  82. {eodag-3.1.0b1.dist-info → eodag-3.2.0.dist-info}/entry_points.txt +1 -0
  83. eodag-3.1.0b1.dist-info/RECORD +0 -108
  84. {eodag-3.1.0b1.dist-info → eodag-3.2.0.dist-info/licenses}/LICENSE +0 -0
  85. {eodag-3.1.0b1.dist-info → eodag-3.2.0.dist-info}/top_level.txt +0 -0
@@ -20,7 +20,7 @@ from __future__ import annotations
20
20
  import logging
21
21
  import re
22
22
  import socket
23
- from typing import Any, Callable, Dict, List, Optional, Union
23
+ from typing import Any, Callable, Optional, Union
24
24
  from urllib.error import URLError
25
25
  from urllib.request import urlopen
26
26
 
@@ -108,7 +108,7 @@ def fetch_stac_items(
108
108
  max_connections: int = 100,
109
109
  timeout: int = HTTP_REQ_TIMEOUT,
110
110
  ssl_verify: bool = True,
111
- ) -> List[Dict[str, Any]]:
111
+ ) -> list[dict[str, Any]]:
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
@@ -142,13 +142,13 @@ def _fetch_stac_items_from_catalog(
142
142
  recursive: bool,
143
143
  max_connections: int,
144
144
  _text_opener: Callable[[str, bool], Any],
145
- ) -> List[Any]:
145
+ ) -> list[Any]:
146
146
  """Fetch items from a STAC catalog"""
147
- items: List[Dict[Any, Any]] = []
147
+ items: list[dict[Any, Any]] = []
148
148
 
149
149
  # pystac cannot yet return links from a single file catalog, see:
150
150
  # https://github.com/stac-utils/pystac/issues/256
151
- extensions: Optional[Union[List[str], str]] = getattr(cat, "stac_extensions", None)
151
+ extensions: Optional[Union[list[str], str]] = getattr(cat, "stac_extensions", None)
152
152
  if extensions:
153
153
  extensions = extensions if isinstance(extensions, list) else [extensions]
154
154
  if "single-file-stac" in extensions:
@@ -157,7 +157,7 @@ def _fetch_stac_items_from_catalog(
157
157
 
158
158
  # Making the links absolutes allow for both relative and absolute links to be handled.
159
159
  if not recursive:
160
- hrefs: List[Optional[str]] = [
160
+ hrefs: list[Optional[str]] = [
161
161
  link.get_absolute_href() for link in cat.get_item_links()
162
162
  ]
163
163
  else:
@@ -188,7 +188,7 @@ def fetch_stac_collections(
188
188
  max_connections: int = 100,
189
189
  timeout: int = HTTP_REQ_TIMEOUT,
190
190
  ssl_verify: bool = True,
191
- ) -> List[Dict[str, Any]]:
191
+ ) -> list[dict[str, Any]]:
192
192
  """Fetch STAC collection(s) from a catalog.
193
193
 
194
194
  :param stac_path: A STAC object filepath
@@ -217,12 +217,12 @@ def _fetch_stac_collections_from_catalog(
217
217
  collection: Optional[str],
218
218
  max_connections: int,
219
219
  _text_opener: Callable[[str, bool], Any],
220
- ) -> List[Any]:
220
+ ) -> list[Any]:
221
221
  """Fetch collections from a STAC catalog"""
222
- collections: List[Dict[Any, Any]] = []
222
+ collections: list[dict[Any, Any]] = []
223
223
 
224
224
  # Making the links absolutes allow for both relative and absolute links to be handled.
225
- hrefs: List[Optional[str]] = [
225
+ hrefs: list[Optional[str]] = [
226
226
  link.get_absolute_href()
227
227
  for link in cat.get_child_links()
228
228
  if collection is not None and link.title == collection
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: eodag
3
- Version: 3.1.0b1
3
+ Version: 3.2.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
@@ -36,10 +36,9 @@ Requires-Dist: boto3
36
36
  Requires-Dist: botocore
37
37
  Requires-Dist: click
38
38
  Requires-Dist: geojson
39
- Requires-Dist: jsonpath-ng<1.6.0
39
+ Requires-Dist: jsonpath-ng
40
40
  Requires-Dist: lxml
41
- Requires-Dist: orjson<3.10.0; python_version >= "3.12" and platform_system == "Windows"
42
- Requires-Dist: orjson; python_version < "3.12" or platform_system != "Windows"
41
+ Requires-Dist: orjson
43
42
  Requires-Dist: pydantic!=2.10.0,>=2.1.0
44
43
  Requires-Dist: pydantic_core
45
44
  Requires-Dist: PyJWT[crypto]>=2.5.0
@@ -77,7 +76,7 @@ Provides-Extra: notebook
77
76
  Requires-Dist: tqdm[notebook]; extra == "notebook"
78
77
  Provides-Extra: tutorials
79
78
  Requires-Dist: eodag[ecmwf,notebook]; extra == "tutorials"
80
- Requires-Dist: eodag-cube>=0.2.0; extra == "tutorials"
79
+ Requires-Dist: eodag-cube>=0.6.0b2; extra == "tutorials"
81
80
  Requires-Dist: jupyter; extra == "tutorials"
82
81
  Requires-Dist: ipyleaflet>=0.10.0; extra == "tutorials"
83
82
  Requires-Dist: ipywidgets; extra == "tutorials"
@@ -86,24 +85,25 @@ Requires-Dist: folium; extra == "tutorials"
86
85
  Requires-Dist: imageio; extra == "tutorials"
87
86
  Requires-Dist: rasterio; extra == "tutorials"
88
87
  Requires-Dist: netcdf4; extra == "tutorials"
88
+ Requires-Dist: cartopy; extra == "tutorials"
89
89
  Provides-Extra: dev
90
90
  Requires-Dist: eodag[all-providers,csw,server,stubs]; extra == "dev"
91
91
  Requires-Dist: pytest; extra == "dev"
92
92
  Requires-Dist: pytest-cov; extra == "dev"
93
93
  Requires-Dist: py>=1.8.2; extra == "dev"
94
- Requires-Dist: pytest-html<3.2.0; extra == "dev"
94
+ Requires-Dist: pytest-html!=3.2.0; extra == "dev"
95
95
  Requires-Dist: pytest-xdist; extra == "dev"
96
96
  Requires-Dist: pytest-socket; extra == "dev"
97
97
  Requires-Dist: pytest-instafail; extra == "dev"
98
98
  Requires-Dist: tox; extra == "dev"
99
99
  Requires-Dist: tox-uv; extra == "dev"
100
100
  Requires-Dist: faker; extra == "dev"
101
- Requires-Dist: moto; extra == "dev"
101
+ Requires-Dist: moto>=5; extra == "dev"
102
102
  Requires-Dist: twine; extra == "dev"
103
103
  Requires-Dist: wheel; extra == "dev"
104
104
  Requires-Dist: flake8; extra == "dev"
105
105
  Requires-Dist: pre-commit; extra == "dev"
106
- Requires-Dist: responses<0.24.0; extra == "dev"
106
+ Requires-Dist: responses!=0.24.0; extra == "dev"
107
107
  Requires-Dist: fastapi[all]; extra == "dev"
108
108
  Requires-Dist: stdlib-list; extra == "dev"
109
109
  Requires-Dist: mypy; extra == "dev"
@@ -113,6 +113,7 @@ Requires-Dist: types-lxml; extra == "stubs"
113
113
  Requires-Dist: types-cachetools; extra == "stubs"
114
114
  Requires-Dist: types-requests; extra == "stubs"
115
115
  Requires-Dist: types-python-dateutil; extra == "stubs"
116
+ Requires-Dist: types-PyYAML; extra == "stubs"
116
117
  Requires-Dist: types-setuptools; extra == "stubs"
117
118
  Requires-Dist: types-tqdm; extra == "stubs"
118
119
  Requires-Dist: types-urllib3; extra == "stubs"
@@ -125,6 +126,7 @@ Requires-Dist: sphinx-tabs; extra == "docs"
125
126
  Requires-Dist: nbsphinx; extra == "docs"
126
127
  Requires-Dist: sphinx_autodoc_typehints; extra == "docs"
127
128
  Requires-Dist: sphinxemoji; extra == "docs"
129
+ Dynamic: license-file
128
130
 
129
131
  .. image:: https://eodag.readthedocs.io/en/latest/_static/eodag_bycs.png
130
132
  :target: https://github.com/CS-SI/eodag
@@ -315,7 +317,7 @@ An eodag instance can be exposed through a STAC compliant REST api from the comm
315
317
 
316
318
  .. code-block:: bash
317
319
 
318
- docker run -p 5000:5000 --rm csspace/eodag-server:3.1.0b1
320
+ docker run -p 5000:5000 --rm csspace/eodag-server:3.2.0
319
321
 
320
322
  You can also browse over your STAC API server using `STAC Browser <https://github.com/radiantearth/stac-browser>`_.
321
323
  Simply run:
@@ -0,0 +1,113 @@
1
+ eodag/__init__.py,sha256=qADIO6H3KR0CMs0qePdJROjSzcGnHaYpv-RFIk18WGQ,1608
2
+ eodag/cli.py,sha256=63QvLzyZEf6dsTB1jK_80lOTtp6fbjoSJROqKIL-mR4,29959
3
+ eodag/config.py,sha256=WUL9yLwVXyXArnZ8RYI8Dnf7Ujnd04dl3M0dc9UTwWE,45837
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=tGMdrgJnm_7D5b2VoMCt-QeMOnOOfnhYiOwufDxpF6k,109426
8
+ eodag/api/search_result.py,sha256=ri3-5Jxr1Ik8V0uQtuXvnd3L3tSGS_niqpmHeaI2Obw,8176
9
+ eodag/api/product/__init__.py,sha256=klSKudmnHHeXvcwIX6Y30UTiP39tMfTwLNexSnAZnx0,1154
10
+ eodag/api/product/_assets.py,sha256=9bWIe_SYvsQO-q_lQFd7SxhUIWv7feze2-wnXOe8hhs,7570
11
+ eodag/api/product/_product.py,sha256=1Jz-oPg65Njc7DOWw4ADT9QmNXReiD1LeXFDosnXsOA,23458
12
+ eodag/api/product/metadata_mapping.py,sha256=URGvZX2coTTm5TNWoDoV1pDsSV17Xtg1ZZ2xpKUrmlw,72234
13
+ eodag/api/product/drivers/__init__.py,sha256=Sy9bGmDhWCAxvxRUf3QGijjQoQvzS1LSUMN34Usq6fM,3357
14
+ eodag/api/product/drivers/base.py,sha256=iPAE5Jx3isxmHHFPP-jysdUylYbsbIq6UejU3qsMROE,4111
15
+ eodag/api/product/drivers/generic.py,sha256=RER088E5_mqyGw1Pa4Kxea5YMFakAHFNcZEQINRiDwM,2069
16
+ eodag/api/product/drivers/sentinel1.py,sha256=xpvhOvVhpuwVihPMo_q79VI67ru-FqKtbRa5kA79D3k,3253
17
+ eodag/api/product/drivers/sentinel2.py,sha256=dMfIrcwF4h8KoyUj94yPUhRiN7FIef4mTzfbkkhLIc8,3124
18
+ eodag/plugins/__init__.py,sha256=KQkD5aVwb9I6C-Rmi5ABEG1-j8w5FP1zKN12vagsT9Y,739
19
+ eodag/plugins/base.py,sha256=bBp4k8QYJFEE6CRctrVwjws6suBwQdCLrLmvoGAmG3A,2670
20
+ eodag/plugins/manager.py,sha256=EYz5zliB3e3pxTvP4QIwtMtXfwPhxXJxjdYIsJsvFx0,20373
21
+ eodag/plugins/apis/__init__.py,sha256=PyY4f7P2iu3MkLPnw5eOrVew2fuavbBL3Asci3Ulwoo,744
22
+ eodag/plugins/apis/base.py,sha256=oCEKVtIbOjzNgM3lzaCCtO-DhU2PvGfKaATG6OxR-V8,2818
23
+ eodag/plugins/apis/ecmwf.py,sha256=CnFeuxx2GghuSQF9oGhCWC2ixL3q9aO_lpMRZehLueI,11455
24
+ eodag/plugins/apis/usgs.py,sha256=42vrVZ_fKi1-Z8nUt5-9wapUE7v75_hzgZHbKD23Auo,19625
25
+ eodag/plugins/authentication/__init__.py,sha256=_LVw42Bb1IhGAZH5xHRaS4b1iFoF9e27KDZOyoSoJHY,1039
26
+ eodag/plugins/authentication/aws_auth.py,sha256=6qeULjxljV9WTPqZjJJ6E0DWeiaGmzGR3rM0at75CFQ,3199
27
+ eodag/plugins/authentication/base.py,sha256=7vwX7O9xxvcKA9cMZ85F2eOkcdb7HyNbanUC5J0f9SA,2643
28
+ eodag/plugins/authentication/generic.py,sha256=LlOVPjvwRpbMDl62Brd7Ao34WmktKWoo0LP7D4T6zPg,2385
29
+ eodag/plugins/authentication/header.py,sha256=U_KnUqgZTLHXM5OKdGbH6jRqoQ0uIfOoxO6krUeAAcQ,4284
30
+ eodag/plugins/authentication/keycloak.py,sha256=f0AnWkvtsmLmWqgGfT3XB6AqbfCPU_ZHkDu07Zwf3E4,7178
31
+ eodag/plugins/authentication/oauth.py,sha256=fCMx7OxS3JNO9lLZhQNnL9lsBB9nFwZJLEYXI49QRtw,1952
32
+ eodag/plugins/authentication/openid_connect.py,sha256=LbpQzekxin_bLrKfk7bzU3LGxlfaABSm1fwx7S1O58M,24913
33
+ eodag/plugins/authentication/qsauth.py,sha256=bkepO_sFRIhYm3Dzecx3VJP0Ap37vUuJSRmEY8HrV1U,3947
34
+ eodag/plugins/authentication/sas_auth.py,sha256=gZp5UDeAi6iEi-IXv_RjrmAVpQCD5s9A0b3V7HV6KnU,4773
35
+ eodag/plugins/authentication/token.py,sha256=5mipX9SuNSNJtLntLRLm8KS7kqwylurvzkQq57fxWg0,12879
36
+ eodag/plugins/authentication/token_exchange.py,sha256=m0KHc4KOhlw0YYXCWEAwB7n7cJLScq3pXa6M6fiXNAQ,4902
37
+ eodag/plugins/crunch/__init__.py,sha256=58D7kJhEpHJWobIKaNFPynfbSqAWgS90BiHzitqS5Ds,746
38
+ eodag/plugins/crunch/base.py,sha256=XW4HISgR0UswiEZmE4t42HxnSxknZBtVpuK8XVLYHzU,1415
39
+ eodag/plugins/crunch/filter_date.py,sha256=zdOFuXiAZxdLedsUd8hbsJCsItVoN7zPTEtnOugRs70,4440
40
+ eodag/plugins/crunch/filter_latest_intersect.py,sha256=EkOyHEXFMrLQ7ZlTbzNs9lXZVDsbYTwgkPPK4JAkalY,4426
41
+ eodag/plugins/crunch/filter_latest_tpl_name.py,sha256=pP4EDP73mQg1zvkVm1Uo4nGAgwhNsMWe7_ecOBDbA0E,3679
42
+ eodag/plugins/crunch/filter_overlap.py,sha256=mkm5_ljgK_7QOOp-KgJjDjbVfss4gwRjIYUTMyKrw5o,7272
43
+ eodag/plugins/crunch/filter_property.py,sha256=5V0_S11iAnvZqRzYN0Jox96zZwIxPGC13IWQwNYyYrU,3193
44
+ eodag/plugins/download/__init__.py,sha256=zqszaeNgYP0YHlZDkLMf6odcwNw0KrAahGpcA-l0kAw,740
45
+ eodag/plugins/download/aws.py,sha256=SwyiF1j2MBvUJi-LwVT8NmQfxZYRfi7kk5Uxd8vFVW8,58623
46
+ eodag/plugins/download/base.py,sha256=ulkGfiY2qMtzyEPdUlP8CZ6w5Bqi2hckuX-sGqpkVeQ,29994
47
+ eodag/plugins/download/creodias_s3.py,sha256=RoEhYHtsPDbfrZhBllYoek0r7YzP8Upf5CPgc-PnlZM,4151
48
+ eodag/plugins/download/http.py,sha256=FhvkCVxj_ENV31Nm2ulT3DRlPQYBM6eQtf2of9M0T2o,56707
49
+ eodag/plugins/download/s3rest.py,sha256=BYkKglGhTVyR0A-8ls5gLhWOPwc_DgB4aydj79wpqoM,14825
50
+ eodag/plugins/search/__init__.py,sha256=bBrl3TffoU1wVpaeXmTEIailoh9W6fla4IP-8SWqA9U,2019
51
+ eodag/plugins/search/base.py,sha256=b9zAPLQITBSOJ9n5zBxtiHlPkQwACjjJkD894oYZ7L8,18555
52
+ eodag/plugins/search/build_search_result.py,sha256=FbVJvviyhSU-cuY7ctoJbXR0QKMbUFfTVpt7WsHx4mE,45426
53
+ eodag/plugins/search/cop_marine.py,sha256=pRWNY9MXY-XzlpQjqOI8ImOiNUehv9pwNl6oR9r171w,19720
54
+ eodag/plugins/search/creodias_s3.py,sha256=rBZf3Uza7z3VuBdoUJQ9kuufGgACKVsEvK3phUo7C7M,3379
55
+ eodag/plugins/search/csw.py,sha256=de8CNjz4bjEny27V0RXC7V8LRz0Ik3yqQVjTAc_JlyA,12548
56
+ eodag/plugins/search/data_request_search.py,sha256=yrKu3EXhn6Utyai3qv5NPnH-V4EuGIAIxw6XzJA4IIw,26715
57
+ eodag/plugins/search/qssearch.py,sha256=WZYKd0cySgbcF6RKObz-Sc55c3gXRZQCKJXM1sdtR84,91586
58
+ eodag/plugins/search/stac_list_assets.py,sha256=OOCMyjD8XD-m39k0SyKMrRi4K8Ii5mOQsA6zSAeQDGI,3435
59
+ eodag/plugins/search/static_stac_search.py,sha256=rfcKBD-0-gDFg6jbR_XCsVH1t9Yf9HIlnFE_Drr0BAs,9259
60
+ eodag/resources/ext_product_types.json,sha256=bXZ3hzLAUgHac5yxff0fQD2hD0KYBu_VoiH5Jpu1EfA,3160813
61
+ eodag/resources/locations_conf_template.yml,sha256=_eBv-QKHYMIKhY0b0kp4Ee33RsayxN8LWH3kDXxfFSk,986
62
+ eodag/resources/product_types.yml,sha256=vN-VNxKmRbMmRfdjMI3Tc3vs66yhU3Oep8_v2AXWH9Y,409966
63
+ eodag/resources/providers.yml,sha256=dHhapMifpnq_Rc85ykGxNWZekP6-tN0QpVehxyoDHrQ,221207
64
+ eodag/resources/stac.yml,sha256=XgQFkJEfu_f2ZiVM5L1flkew7wq55p_PJmDuVkOG3fs,10442
65
+ eodag/resources/stac_api.yml,sha256=2FdQL_qBTIUlu6KH836T4CXBKO9AvVxA_Ub3J1RP81A,68881
66
+ eodag/resources/stac_provider.yml,sha256=2yfdnuhJYV1f5el3aFkunoPqHAcD8oCDzvASbmldIvY,6703
67
+ eodag/resources/user_conf_template.yml,sha256=VitU2oHwcWNd7CoONfHabMBGwCPfYjwyU3cX63oJaIs,7765
68
+ eodag/resources/shp/ne_110m_admin_0_map_units.VERSION.txt,sha256=CHSo_jbv-4d4D0MYRbWn2FvmV_K9mYzo7qznF4YNO3g,7
69
+ eodag/resources/shp/ne_110m_admin_0_map_units.cpg,sha256=FG1nif_gM6UpfBrQRuamLuNTGbhrAhRE8FtuoqqKH0o,6
70
+ eodag/resources/shp/ne_110m_admin_0_map_units.dbf,sha256=uEEO22hZ_crWxMNhuQ_ix889c1Us1awYXAglxbf1K-s,393747
71
+ eodag/resources/shp/ne_110m_admin_0_map_units.prj,sha256=oaohy2UQUlLMiTy3HhYS1Kurl_7z3A3LYcOmVf_TbNo,148
72
+ eodag/resources/shp/ne_110m_admin_0_map_units.shp,sha256=GMVJQ1pe0JfaJnVfAew0MvembDJDkfUs0To2Qc82Aos,181628
73
+ eodag/resources/shp/ne_110m_admin_0_map_units.shx,sha256=N74fDl6sQAljmHQ_e9DO7suO6BXuwC0LwmriAnDBH-U,1564
74
+ eodag/rest/__init__.py,sha256=v4SI9gLuFP81YXi5_k98lvVNGzz6h8YZ_aUdhKAbE2M,916
75
+ eodag/rest/cache.py,sha256=dSgpw6uWDq45qxfD25LXkB-9Qk0OEb5L8UOl7yuMPEU,2097
76
+ eodag/rest/config.py,sha256=qWXukdSB6cSpkZszkPSGPGn5oiVfKEC3rPGp0q-2c4E,2112
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=R_zs9NILVnZ5qIpVgPtjprv_BalJxZEqr-LSZ0VVV8k,6192
80
+ eodag/rest/server.py,sha256=dqwP_mf856gPKxZCtdmH5WoYYji7edSab3Q_PzEQuUE,18308
81
+ eodag/rest/server.wsgi,sha256=ssM4JQi8tZpOYj03CTdM0weyUF1b3Lbh38pdD-vBfXs,152
82
+ eodag/rest/stac.py,sha256=t0xuFmJYbPvzBvJBs_8PQLCOJc5fJ8mbV9AbJxbMgVk,35827
83
+ eodag/rest/templates/README,sha256=qFgCBE6XC4YiXkpPoSHkYbMTQr8Zg5Wc5eAKVcooXmw,57
84
+ eodag/rest/types/__init__.py,sha256=Bu0C3dzXHe8kocnz2PIHV0GjQWlAQas6ToIfwusNPQs,742
85
+ eodag/rest/types/collections_search.py,sha256=TRZI72a1W29a2e_mg9cQpFUcTTEG3_SSsfYrZZuXMLA,1527
86
+ eodag/rest/types/eodag_search.py,sha256=uN96xejktaQRojKZm2BGAgxvcWcwBkle4_I2z7jlDzw,14281
87
+ eodag/rest/types/queryables.py,sha256=e3IMM2eIYnUsjrErw54CNZjMLuFDTMxSbLRHDFFvVMw,6470
88
+ eodag/rest/types/stac_search.py,sha256=a_m7ATLPFttvUo9_hfsIAQKtNhBvX3U86lNWv_8_oIM,8765
89
+ eodag/rest/utils/__init__.py,sha256=VRTxZFU15mB4izpYd8e30_xR1iZlJRsoW1jeCZ7bk1o,6560
90
+ eodag/rest/utils/cql_evaluate.py,sha256=aMcdowtYbQpU1H9oX1IM2PMot6XTy49Q6H2k-YBEtco,4087
91
+ eodag/rest/utils/rfc3339.py,sha256=_kaK7_8sxXyCAAs99ltVoinUw02frtZckl72ytI6IjQ,2234
92
+ eodag/types/__init__.py,sha256=FPDFHvjMnHBFNPx-B4TN-6qZhZ8VI5ICort6U6hCTYo,15612
93
+ eodag/types/bbox.py,sha256=jbfX58KOKIl0OoGZc93kAYhG_mEOjuBQGJtR2hl3-_Y,4354
94
+ eodag/types/download_args.py,sha256=urSl5KbLRN1XetMa2XzxYltny8CCFmHpjxU3j3BEGO8,1565
95
+ eodag/types/queryables.py,sha256=9Jllvoq0SgCKQUmnhVNqj55_xdMq2Yw49-1SWFh_nI8,9880
96
+ eodag/types/search_args.py,sha256=EtG8nXnApBnYrFo5FVvsvvEqRlqTxJ0lrmIem9Wtg8c,5649
97
+ eodag/types/whoosh.py,sha256=VXpWAZaXLR_RRnI9gh5iwkqn1n63krVGj2SX0rB2mQo,7225
98
+ eodag/utils/__init__.py,sha256=bdV7WMU9Zz9c6a7D63bTTNKuZmu7aEIyCm9QoS8rj9Y,52779
99
+ eodag/utils/exceptions.py,sha256=hYeq5GzMqW50o6mSUUlvOpsfU0eRjwhpqXTSE5MFv9Q,4452
100
+ eodag/utils/import_system.py,sha256=1vwcSRlsZwuaP8ssrpRBP5jldZ54eLv2ttNCdLf0TtA,3901
101
+ eodag/utils/logging.py,sha256=KoMsyS1f6O1hr_SMDOIxvt842mOJgmu_yLUk0-0EKFs,3507
102
+ eodag/utils/notebook.py,sha256=AUxtayvu26qYf3x3Eu3ujRl1XDgy24EfQaETbqmXSZw,2703
103
+ eodag/utils/repr.py,sha256=o6NhScogBPI69m83GsHh3hXONb9-byPfuWgJ1U39Kfw,5463
104
+ eodag/utils/requests.py,sha256=avNHKrOZ7Kp6lUA7u4kqupIth9MoirLzDsMrrmQDt4s,4560
105
+ eodag/utils/rest.py,sha256=a9tlG_Y9iQXLeyeLyecxFNbopGHV-8URecMSRs0UXu0,3348
106
+ eodag/utils/s3.py,sha256=2mspYgEYGA1IDbruMMDdJ2DoxyX3riSlV7PDIu7carg,7989
107
+ eodag/utils/stac_reader.py,sha256=d1tv82_E5dEmK9Vlw3TQfU1ndXg_iUGatxMeWMnIWPo,9236
108
+ eodag-3.2.0.dist-info/licenses/LICENSE,sha256=4MAecetnRTQw5DlHtiikDSzKWO1xVLwzM5_DsPMYlnE,10172
109
+ eodag-3.2.0.dist-info/METADATA,sha256=IDnRE0sHZTq6_wB4UCIcScGoRZU1wBkvtjT3RR_oLKA,15476
110
+ eodag-3.2.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
111
+ eodag-3.2.0.dist-info/entry_points.txt,sha256=krdrBOQso6kAcSekV9ItEYAkE8syTC4Ev75bI781VgE,2561
112
+ eodag-3.2.0.dist-info/top_level.txt,sha256=025IMTmVe5eDjIPP4KEFQKespOPMQdne4U4jOy8nftM,6
113
+ eodag-3.2.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.0)
2
+ Generator: setuptools (78.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -41,6 +41,7 @@ ODataV4Search = eodag.plugins.search.qssearch:ODataV4Search
41
41
  PostJsonSearch = eodag.plugins.search.qssearch:PostJsonSearch
42
42
  PostJsonSearchWithStacQueryables = eodag.plugins.search.qssearch:PostJsonSearchWithStacQueryables
43
43
  QueryStringSearch = eodag.plugins.search.qssearch:QueryStringSearch
44
+ StacListAssets = eodag.plugins.search.stac_list_assets:StacListAssets
44
45
  StacSearch = eodag.plugins.search.qssearch:StacSearch
45
46
  StaticStacSearch = eodag.plugins.search.static_stac_search:StaticStacSearch
46
47
  WekeoECMWFSearch = eodag.plugins.search.build_search_result:WekeoECMWFSearch
@@ -1,108 +0,0 @@
1
- eodag/__init__.py,sha256=qADIO6H3KR0CMs0qePdJROjSzcGnHaYpv-RFIk18WGQ,1608
2
- eodag/cli.py,sha256=WMU23Zv0riOuKkFwftIBmH0_OJSnSiaYMAVgKEe15i0,29976
3
- eodag/config.py,sha256=1LTniwtMPW9jAJUUfFQf4EWTZgECH9ve5vIXgUMHZL0,45723
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=R5hyr2fcKjmoIIt6fyfxO4xiBl7lT1RhQBbvRfvMLCo,109248
8
- eodag/api/search_result.py,sha256=LnWBHoMlkoaeqwEukg-MOwOCJvxm367g3AH6Llrk8zI,8236
9
- eodag/api/product/__init__.py,sha256=klSKudmnHHeXvcwIX6Y30UTiP39tMfTwLNexSnAZnx0,1154
10
- eodag/api/product/_assets.py,sha256=1fqCRT6Jd27qMJ95WJ5_bre5YsVPYidFit03wM_UmAM,6290
11
- eodag/api/product/_product.py,sha256=E1rP0DOtksk6kUWfkRkHjRFLJfo0SLW6lw46PZsaHkY,22980
12
- eodag/api/product/metadata_mapping.py,sha256=txlnpzGUBwGh1XDzXIs20kZZzhOG0O2l1SWi_eStKJY,71751
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=efFycwmr5sZcICv-YnkCJ4qof3ew8c8nQuzVw5A3Kb4,20398
18
- eodag/plugins/apis/__init__.py,sha256=PyY4f7P2iu3MkLPnw5eOrVew2fuavbBL3Asci3Ulwoo,744
19
- eodag/plugins/apis/base.py,sha256=5QOjqD1jgUIOzCt53XJbTG4XX-4Lkd03h5ILBiEl8lE,2818
20
- eodag/plugins/apis/ecmwf.py,sha256=co6W9ThokUr8YNNX67H9HT9O8lCPbMlgTeOBOeIDrb0,11496
21
- eodag/plugins/apis/usgs.py,sha256=QLzdKrb3OocwvVW__uC2-TUwEweBRkwWZjZVbAfOQk4,19566
22
- eodag/plugins/authentication/__init__.py,sha256=_LVw42Bb1IhGAZH5xHRaS4b1iFoF9e27KDZOyoSoJHY,1039
23
- eodag/plugins/authentication/aws_auth.py,sha256=N9o_SSTja6x8e1Wf1am-O_vkxJpv6SSngjRIuCX4YwI,3073
24
- eodag/plugins/authentication/base.py,sha256=-qnWabuC6FyeKYzMnbSccm4skMEIsj3ZVEWMDAMKZjY,2603
25
- eodag/plugins/authentication/generic.py,sha256=LlOVPjvwRpbMDl62Brd7Ao34WmktKWoo0LP7D4T6zPg,2385
26
- eodag/plugins/authentication/header.py,sha256=lgkNZpFj4himyhjgjsK500KBZeiQus-HWG6dHSgV3u4,4290
27
- eodag/plugins/authentication/keycloak.py,sha256=M0V9hU-wYO1IRtbg7aMdyizSvw5UJto5tfeX_fOQ9ik,7184
28
- eodag/plugins/authentication/oauth.py,sha256=tWs_kk77QG1G8fcsl-RIb1qj5HJ9ZHIcZ0ll3Vz8joI,1860
29
- eodag/plugins/authentication/openid_connect.py,sha256=iJ9NGYnxbQE6RAx86JnxI571mwSI44oQxE629hN-QdY,24723
30
- eodag/plugins/authentication/qsauth.py,sha256=bkepO_sFRIhYm3Dzecx3VJP0Ap37vUuJSRmEY8HrV1U,3947
31
- eodag/plugins/authentication/sas_auth.py,sha256=QIigbkKjRsdPdq0MP8c0jGOzrL_H7UIdgdhsmx6gk6U,4779
32
- eodag/plugins/authentication/token.py,sha256=HKrNvfzsStaWDqKklFt8EfznJjbEJ0wOFpH7S-e2Iy0,12885
33
- eodag/plugins/authentication/token_exchange.py,sha256=5HJfwC8FrPE6dhH-xRGM1W-lkpgJHMgQ6q7fiFNh5Oo,4902
34
- eodag/plugins/crunch/__init__.py,sha256=58D7kJhEpHJWobIKaNFPynfbSqAWgS90BiHzitqS5Ds,746
35
- eodag/plugins/crunch/base.py,sha256=vCaI2KsxMZp0TJ6IYHx4ssaachzrTxH98tKJh_fsuPM,1427
36
- eodag/plugins/crunch/filter_date.py,sha256=CGRx4Pj7sT1her4E96ITgT2vYNPG3k0NaUGdtPfwJFw,4446
37
- eodag/plugins/crunch/filter_latest_intersect.py,sha256=viDECk8RAKYxVeQGZ6m3Ff14bsnCcq3xYFX7bNx0blM,4438
38
- eodag/plugins/crunch/filter_latest_tpl_name.py,sha256=NAQNz1xuf1qDCF-of9-qhJCgR5uFkTdLv6k2u-c85Ew,3695
39
- eodag/plugins/crunch/filter_overlap.py,sha256=GdqS0yYvTp4yYNucXpYVIwO9E7KhmsmJSi3XWUtBfKM,7278
40
- eodag/plugins/crunch/filter_property.py,sha256=1tqYzVwB7z9wTdoNH_t4h8JInEJ6IkuMyvpfPk78xiw,3199
41
- eodag/plugins/download/__init__.py,sha256=zqszaeNgYP0YHlZDkLMf6odcwNw0KrAahGpcA-l0kAw,740
42
- eodag/plugins/download/aws.py,sha256=NN1ZFrCKTtfvpn6JUi20pw2x3H7_wcc8618XKUgwu0I,55722
43
- eodag/plugins/download/base.py,sha256=FkQlql0gSvCvPtizMSCU9L-6YWW7gwVS9V3g6DZ4oNw,30007
44
- eodag/plugins/download/creodias_s3.py,sha256=DoFX4XpIpFbahVE2IPEA_z4eYVHv70g77LUafsCSBO0,4164
45
- eodag/plugins/download/http.py,sha256=UxglJzHlw_aSy7brkId82uIMTlLiKmuqzqPmEhwNH5w,56325
46
- eodag/plugins/download/s3rest.py,sha256=XgFWnB56CgPl-ZtZDVcOZjFt53AuPFQW7WOlWRyjezg,14792
47
- eodag/plugins/search/__init__.py,sha256=-1M-AB81A8KwLSEhSiNNEA77ecUvmvp4dUL8J1C1wFA,1986
48
- eodag/plugins/search/base.py,sha256=7ohTJFy9o8JWMst_jJq22-DCn9UTEBJsr_iR3VDAHLc,18750
49
- eodag/plugins/search/build_search_result.py,sha256=-n65mAPXTFU_ca1CU3kWAYeN4ki1wfHt8mHrZ7RIplY,47925
50
- eodag/plugins/search/cop_marine.py,sha256=3JOFtN6Adb0PDW8DfaViMIwXCO1mScEisDhcIDvruJM,19343
51
- eodag/plugins/search/creodias_s3.py,sha256=eAHSOIvrunuxmR6B7R8oIUqyLfkZXBWsaxGn4Im1E8M,6350
52
- eodag/plugins/search/csw.py,sha256=rZ-0ctszEixZuM6_VTkglTgGqmT83TG3bTPWSgB5BC8,12567
53
- eodag/plugins/search/data_request_search.py,sha256=VDduqvpKo0UWC6c_sH19mCXaw1P3qfArGQ8Q9EvPk-g,26682
54
- eodag/plugins/search/qssearch.py,sha256=t-pfGAh9ap-UyF8fOac8m9mCnNkCzZxUKlbjXvNPTmw,94356
55
- eodag/plugins/search/static_stac_search.py,sha256=EBBd4AB5R2Kiab3Ssc-b6A4McqcNRMjltgGW25ErH8g,9263
56
- eodag/resources/ext_product_types.json,sha256=_qVPEQzedjBaPx-ksc_HB6-bMfI2FXfF_ZIOXZnAe3Q,3196797
57
- eodag/resources/locations_conf_template.yml,sha256=_eBv-QKHYMIKhY0b0kp4Ee33RsayxN8LWH3kDXxfFSk,986
58
- eodag/resources/product_types.yml,sha256=eTkkbsnwEGV3acPNuEeW5lb9ArdHM6EFCvg2jBgEcwE,393028
59
- eodag/resources/providers.yml,sha256=u03b3KA3QmkQ43OEY5lIU3l8EMo95caDboesbfwNu2c,225513
60
- eodag/resources/stac.yml,sha256=XgQFkJEfu_f2ZiVM5L1flkew7wq55p_PJmDuVkOG3fs,10442
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=M6JiyEV8M8__KNynXu6zr6qdWFw3yxYvgAHpPhr8wuY,7707
64
- eodag/resources/shp/ne_110m_admin_0_map_units.VERSION.txt,sha256=CHSo_jbv-4d4D0MYRbWn2FvmV_K9mYzo7qznF4YNO3g,7
65
- eodag/resources/shp/ne_110m_admin_0_map_units.cpg,sha256=FG1nif_gM6UpfBrQRuamLuNTGbhrAhRE8FtuoqqKH0o,6
66
- eodag/resources/shp/ne_110m_admin_0_map_units.dbf,sha256=uEEO22hZ_crWxMNhuQ_ix889c1Us1awYXAglxbf1K-s,393747
67
- eodag/resources/shp/ne_110m_admin_0_map_units.prj,sha256=oaohy2UQUlLMiTy3HhYS1Kurl_7z3A3LYcOmVf_TbNo,148
68
- eodag/resources/shp/ne_110m_admin_0_map_units.shp,sha256=GMVJQ1pe0JfaJnVfAew0MvembDJDkfUs0To2Qc82Aos,181628
69
- eodag/resources/shp/ne_110m_admin_0_map_units.shx,sha256=N74fDl6sQAljmHQ_e9DO7suO6BXuwC0LwmriAnDBH-U,1564
70
- eodag/rest/__init__.py,sha256=v4SI9gLuFP81YXi5_k98lvVNGzz6h8YZ_aUdhKAbE2M,916
71
- eodag/rest/cache.py,sha256=zGqVt8AAbqwhRmWmAbRPLMJgEb1ZD67WO-QnWwoe3a4,2103
72
- eodag/rest/config.py,sha256=Bw4VH3M0iaz6rR3hkJuGF2ZNU-GQyqn3SeKrggUtM9g,2118
73
- eodag/rest/constants.py,sha256=XsNgjzv0Qvw1hhjeuscDuyQpCm99g3O-hEyslPSiFzQ,945
74
- eodag/rest/core.py,sha256=2vs0PIoY1aFcn_SOeOfHxT1NzulkFfxOXYW8sT8wCKg,26562
75
- eodag/rest/errors.py,sha256=2tWYuPK67SFoxFVnu4HEx9WWdqzBAwv3_WCoJRAYspI,6211
76
- eodag/rest/server.py,sha256=2NxRPhRNla8GnKk1CWscY-QH8ydODZeOyAgqbOUbNNk,18347
77
- eodag/rest/server.wsgi,sha256=ssM4JQi8tZpOYj03CTdM0weyUF1b3Lbh38pdD-vBfXs,152
78
- eodag/rest/stac.py,sha256=JtuCFa4bldO4exe-G8MUHYhuNVvOA7q_GxzU99xQPyI,35788
79
- eodag/rest/templates/README,sha256=qFgCBE6XC4YiXkpPoSHkYbMTQr8Zg5Wc5eAKVcooXmw,57
80
- eodag/rest/types/__init__.py,sha256=Bu0C3dzXHe8kocnz2PIHV0GjQWlAQas6ToIfwusNPQs,742
81
- eodag/rest/types/collections_search.py,sha256=76dvL9y_Cq0ERoJdAn6btXx-0EFWxlfPYSoO7xkFA7c,1533
82
- eodag/rest/types/eodag_search.py,sha256=iSGnWut-xJH1xAOpKBkVRm7BmBovmocefTcIBk4EPpQ,14300
83
- eodag/rest/types/queryables.py,sha256=4VCIlA6_08SOJw8SRFPoM3n2ZNu8P8F4nBTagHwnPnA,6225
84
- eodag/rest/types/stac_search.py,sha256=0_gheVqe9BVxeWttVsrEQoWRkhyrD21ACm8sUmiCa9M,8825
85
- eodag/rest/utils/__init__.py,sha256=7z4GhubM3AW4zHpnpFtDeiPTZs2KZmMDEklYSQ98EvA,6613
86
- eodag/rest/utils/cql_evaluate.py,sha256=cren4gxNyi_3gIEq0CADpqyi5sVnr93rY26CXWCyM3Y,4106
87
- eodag/rest/utils/rfc3339.py,sha256=pZf6PXpUiQCNLAd-EJwgQ0sHJdTwac2RDEUv92LG3Os,2241
88
- eodag/types/__init__.py,sha256=1nwTiComVYVsIqK4sIEthl_89oUHygV8Q6_xC2erzn0,13203
89
- eodag/types/bbox.py,sha256=okc8oFgvoSTQnXJew740i41HArAoSD36Xjr_XmZ1Q4M,4373
90
- eodag/types/download_args.py,sha256=WoK1u1N_qb3mrR2kh9rIlc14RVoVxy3wqFmfZgaPles,1571
91
- eodag/types/queryables.py,sha256=bcmQvNSY1GFR86vflGmIPb7wTBMPEP1nmvDXOpGIbD8,9833
92
- eodag/types/search_args.py,sha256=YqVb04BAPnwhnyafcJo3sRiyOlQA46lTIjnctH_H5b0,5668
93
- eodag/types/whoosh.py,sha256=0EwUxeNGmXdtmI63p9ow5DimoSPleEScPKpuDP5wDiQ,7250
94
- eodag/utils/__init__.py,sha256=PVquvxHSFz3rEMKPAf21af3JApAGfH9yxQLf_wA0XOo,51205
95
- eodag/utils/exceptions.py,sha256=QoI5QtwIwZPtnvYLvsXKNarOwT3f9vJEZEwOQAQg7Gs,4457
96
- eodag/utils/import_system.py,sha256=TqfRi_Kl0mzqNBapnOr3A7Y3qjCAgd7wYZ0bkPLeuJU,3908
97
- eodag/utils/logging.py,sha256=KoMsyS1f6O1hr_SMDOIxvt842mOJgmu_yLUk0-0EKFs,3507
98
- eodag/utils/notebook.py,sha256=AUxtayvu26qYf3x3Eu3ujRl1XDgy24EfQaETbqmXSZw,2703
99
- eodag/utils/repr.py,sha256=o6NhScogBPI69m83GsHh3hXONb9-byPfuWgJ1U39Kfw,5463
100
- eodag/utils/requests.py,sha256=PcZnzz3y7YvTwypman8zVX3uWvkI_MVZcW-QFldItKE,4567
101
- eodag/utils/rest.py,sha256=Jd7HMbPCaGW5fFK1Ud0FyocEXqGInwneLFdB7mNRW9A,3361
102
- eodag/utils/stac_reader.py,sha256=OcSsGCegA39awgM6VanFe6_kO-9CG8YzKjuzoSGVJSo,9248
103
- eodag-3.1.0b1.dist-info/LICENSE,sha256=4MAecetnRTQw5DlHtiikDSzKWO1xVLwzM5_DsPMYlnE,10172
104
- eodag-3.1.0b1.dist-info/METADATA,sha256=0SsXFv4CGxUdsimi9n8WLbaryNEZ6HhDMcRD47oGtUM,15511
105
- eodag-3.1.0b1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
106
- eodag-3.1.0b1.dist-info/entry_points.txt,sha256=CRwS41drMrG6V6lnvfUPPLnhxeTzWIxCuaMkwe-IEK8,2491
107
- eodag-3.1.0b1.dist-info/top_level.txt,sha256=025IMTmVe5eDjIPP4KEFQKespOPMQdne4U4jOy8nftM,6
108
- eodag-3.1.0b1.dist-info/RECORD,,