eodag 3.0.0b3__py3-none-any.whl → 3.0.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.
Files changed (71) hide show
  1. eodag/api/core.py +189 -125
  2. eodag/api/product/metadata_mapping.py +12 -3
  3. eodag/api/search_result.py +29 -3
  4. eodag/cli.py +35 -19
  5. eodag/config.py +412 -116
  6. eodag/plugins/apis/base.py +10 -4
  7. eodag/plugins/apis/ecmwf.py +14 -4
  8. eodag/plugins/apis/usgs.py +25 -2
  9. eodag/plugins/authentication/aws_auth.py +14 -5
  10. eodag/plugins/authentication/base.py +10 -1
  11. eodag/plugins/authentication/generic.py +14 -3
  12. eodag/plugins/authentication/header.py +12 -4
  13. eodag/plugins/authentication/keycloak.py +41 -22
  14. eodag/plugins/authentication/oauth.py +11 -1
  15. eodag/plugins/authentication/openid_connect.py +178 -163
  16. eodag/plugins/authentication/qsauth.py +12 -4
  17. eodag/plugins/authentication/sas_auth.py +19 -2
  18. eodag/plugins/authentication/token.py +57 -10
  19. eodag/plugins/authentication/token_exchange.py +19 -19
  20. eodag/plugins/crunch/base.py +4 -1
  21. eodag/plugins/crunch/filter_date.py +5 -2
  22. eodag/plugins/crunch/filter_latest_intersect.py +5 -4
  23. eodag/plugins/crunch/filter_latest_tpl_name.py +1 -1
  24. eodag/plugins/crunch/filter_overlap.py +5 -7
  25. eodag/plugins/crunch/filter_property.py +4 -3
  26. eodag/plugins/download/aws.py +39 -22
  27. eodag/plugins/download/base.py +11 -11
  28. eodag/plugins/download/creodias_s3.py +11 -2
  29. eodag/plugins/download/http.py +86 -52
  30. eodag/plugins/download/s3rest.py +20 -18
  31. eodag/plugins/manager.py +168 -23
  32. eodag/plugins/search/base.py +33 -14
  33. eodag/plugins/search/build_search_result.py +55 -51
  34. eodag/plugins/search/cop_marine.py +112 -29
  35. eodag/plugins/search/creodias_s3.py +20 -5
  36. eodag/plugins/search/csw.py +41 -1
  37. eodag/plugins/search/data_request_search.py +109 -9
  38. eodag/plugins/search/qssearch.py +532 -152
  39. eodag/plugins/search/static_stac_search.py +20 -21
  40. eodag/resources/ext_product_types.json +1 -1
  41. eodag/resources/product_types.yml +187 -56
  42. eodag/resources/providers.yml +1610 -1701
  43. eodag/resources/stac.yml +3 -163
  44. eodag/resources/user_conf_template.yml +112 -97
  45. eodag/rest/config.py +1 -2
  46. eodag/rest/constants.py +0 -1
  47. eodag/rest/core.py +61 -51
  48. eodag/rest/errors.py +181 -0
  49. eodag/rest/server.py +24 -325
  50. eodag/rest/stac.py +93 -544
  51. eodag/rest/types/eodag_search.py +13 -8
  52. eodag/rest/types/queryables.py +1 -2
  53. eodag/rest/types/stac_search.py +11 -2
  54. eodag/types/__init__.py +15 -3
  55. eodag/types/download_args.py +1 -1
  56. eodag/types/queryables.py +1 -2
  57. eodag/types/search_args.py +3 -3
  58. eodag/utils/__init__.py +77 -57
  59. eodag/utils/exceptions.py +23 -9
  60. eodag/utils/logging.py +37 -77
  61. eodag/utils/requests.py +1 -3
  62. eodag/utils/stac_reader.py +1 -1
  63. {eodag-3.0.0b3.dist-info → eodag-3.0.1.dist-info}/METADATA +11 -12
  64. eodag-3.0.1.dist-info/RECORD +109 -0
  65. {eodag-3.0.0b3.dist-info → eodag-3.0.1.dist-info}/WHEEL +1 -1
  66. {eodag-3.0.0b3.dist-info → eodag-3.0.1.dist-info}/entry_points.txt +1 -0
  67. eodag/resources/constraints/climate-dt.json +0 -13
  68. eodag/resources/constraints/extremes-dt.json +0 -8
  69. eodag-3.0.0b3.dist-info/RECORD +0 -110
  70. {eodag-3.0.0b3.dist-info → eodag-3.0.1.dist-info}/LICENSE +0 -0
  71. {eodag-3.0.0b3.dist-info → eodag-3.0.1.dist-info}/top_level.txt +0 -0
eodag/utils/logging.py CHANGED
@@ -37,88 +37,48 @@ def setup_logging(verbose: int, no_progress_bar: bool = False) -> None:
37
37
  global disable_tqdm
38
38
  disable_tqdm = no_progress_bar
39
39
 
40
+ if verbose > 3:
41
+ raise ValueError("'verbose' must be one of: 0, 1, 2, 3")
42
+
40
43
  if verbose < 1:
41
44
  disable_tqdm = True
42
45
 
43
- if verbose <= 1:
44
- logging.config.dictConfig(
45
- {
46
- "version": 1,
47
- "disable_existing_loggers": False,
48
- "handlers": {
49
- "null": {"level": "DEBUG", "class": "logging.NullHandler"}
50
- },
51
- "loggers": {
52
- "eodag": {"handlers": ["null"], "propagate": True, "level": "INFO"}
53
- },
54
- }
55
- )
56
- elif verbose == 2:
57
- logging.config.dictConfig(
58
- {
59
- "version": 1,
60
- "disable_existing_loggers": False,
61
- "formatters": {
62
- "standard": {
63
- "format": "%(asctime)-15s %(name)-32s [%(levelname)-8s] %(message)s"
64
- }
65
- },
66
- "handlers": {
67
- "console": {
68
- "level": "DEBUG",
69
- "class": "logging.StreamHandler",
70
- "formatter": "standard",
71
- }
72
- },
73
- "loggers": {
74
- "eodag": {
75
- "handlers": ["console"],
76
- "propagate": True,
77
- "level": "INFO",
78
- },
79
- "sentinelsat": {
80
- "handlers": ["console"],
81
- "propagate": True,
82
- "level": "INFO",
83
- },
84
- },
85
- }
86
- )
87
- elif verbose == 3:
88
- logging.config.dictConfig(
89
- {
90
- "version": 1,
91
- "disable_existing_loggers": False,
92
- "formatters": {
93
- "verbose": {
94
- "format": (
95
- "%(asctime)-15s %(name)-32s [%(levelname)-8s] (tid=%(thread)d) %(message)s"
96
- )
97
- }
98
- },
99
- "handlers": {
100
- "console": {
101
- "level": "DEBUG",
102
- "class": "logging.StreamHandler",
103
- "formatter": "verbose",
104
- }
46
+ level = "DEBUG" if verbose == 3 else "INFO"
47
+
48
+ handlers = {
49
+ "console": {
50
+ "level": level,
51
+ "class": "logging.StreamHandler",
52
+ "formatter": "standard",
53
+ },
54
+ "null": {"level": level, "class": "logging.NullHandler"},
55
+ }
56
+ handler = "console" if verbose > 1 else "null"
57
+
58
+ logging.config.dictConfig(
59
+ {
60
+ "version": 1,
61
+ "disable_existing_loggers": False,
62
+ "formatters": {
63
+ "standard": {
64
+ "format": "%(asctime)-15s %(name)-32s [%(levelname)-8s] %(message)s"
65
+ }
66
+ },
67
+ "handlers": handlers,
68
+ "loggers": {
69
+ "eodag": {
70
+ "handlers": [handler],
71
+ "propagate": True,
72
+ "level": f"{level}",
105
73
  },
106
- "loggers": {
107
- "eodag": {
108
- "handlers": ["console"],
109
- "propagate": True,
110
- "level": "DEBUG",
111
- },
112
- "sentinelsat": {
113
- "handlers": ["console"],
114
- "propagate": True,
115
- "level": "DEBUG",
116
- },
74
+ "eodag-cube": {
75
+ "handlers": [handler],
76
+ "propagate": True,
77
+ "level": f"{level}",
117
78
  },
118
- }
119
- )
120
- else:
121
- raise ValueError("'verbose' must be one of: 0, 1, 2, 3")
79
+ },
80
+ }
81
+ )
122
82
 
123
83
 
124
84
  def get_logging_verbose() -> Optional[int]:
eodag/utils/requests.py CHANGED
@@ -63,9 +63,7 @@ def fetch_json(
63
63
  except requests.exceptions.Timeout as exc:
64
64
  raise TimeOutError(exc, timeout=HTTP_REQ_TIMEOUT) from exc
65
65
  except requests.exceptions.RequestException as exc:
66
- raise RequestError(
67
- f"Unable to fetch {file_url}: {str(exc)}",
68
- ) from exc
66
+ raise RequestError.from_error(exc, f"Unable to fetch {file_url}") from exc
69
67
  else:
70
68
  return res.json()
71
69
 
@@ -113,7 +113,7 @@ def fetch_stac_items(
113
113
 
114
114
  :param stac_path: A STAC object filepath
115
115
  :param recursive: (optional) Browse recursively in child nodes if True
116
- :param max_connections: (optional) Maximum number of connections for HTTP requests
116
+ :param max_connections: (optional) Maximum number of connections for concurrent HTTP requests
117
117
  :param timeout: (optional) Timeout in seconds for each internal HTTP request
118
118
  :param ssl_verify: (optional) SSL Verification for HTTP request
119
119
  :returns: The items found in `stac_path`
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: eodag
3
- Version: 3.0.0b3
3
+ Version: 3.0.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
@@ -18,11 +18,11 @@ Classifier: Operating System :: Microsoft :: Windows
18
18
  Classifier: Operating System :: POSIX :: Linux
19
19
  Classifier: Programming Language :: Python
20
20
  Classifier: Programming Language :: Python :: 3
21
- Classifier: Programming Language :: Python :: 3.8
22
21
  Classifier: Programming Language :: Python :: 3.9
23
22
  Classifier: Programming Language :: Python :: 3.10
24
23
  Classifier: Programming Language :: Python :: 3.11
25
24
  Classifier: Programming Language :: Python :: 3.12
25
+ Classifier: Programming Language :: Python :: 3.13
26
26
  Classifier: Programming Language :: Python :: Implementation :: CPython
27
27
  Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
28
28
  Classifier: Topic :: Scientific/Engineering :: GIS
@@ -40,6 +40,7 @@ Requires-Dist: jsonpath-ng <1.6.0
40
40
  Requires-Dist: lxml
41
41
  Requires-Dist: pydantic >=2.1.0
42
42
  Requires-Dist: pydantic-core
43
+ Requires-Dist: PyJWT >=2.5.0
43
44
  Requires-Dist: pyproj >=2.1.0
44
45
  Requires-Dist: pyshp
45
46
  Requires-Dist: pystac >=1.0.0b1
@@ -47,7 +48,7 @@ Requires-Dist: python-dateutil
47
48
  Requires-Dist: PyYAML
48
49
  Requires-Dist: requests
49
50
  Requires-Dist: setuptools
50
- Requires-Dist: shapely >=2.0.0
51
+ Requires-Dist: shapely >=2.0.6
51
52
  Requires-Dist: stream-zip
52
53
  Requires-Dist: tqdm
53
54
  Requires-Dist: typing-extensions >=4.8.0
@@ -71,6 +72,7 @@ Requires-Dist: pytest-xdist ; extra == 'dev'
71
72
  Requires-Dist: pytest-socket ; extra == 'dev'
72
73
  Requires-Dist: pytest-instafail ; extra == 'dev'
73
74
  Requires-Dist: tox ; extra == 'dev'
75
+ Requires-Dist: tox-uv ; extra == 'dev'
74
76
  Requires-Dist: faker ; extra == 'dev'
75
77
  Requires-Dist: moto ; extra == 'dev'
76
78
  Requires-Dist: twine ; extra == 'dev'
@@ -89,6 +91,7 @@ Requires-Dist: sphinx-copybutton ; extra == 'docs'
89
91
  Requires-Dist: sphinx-tabs ; extra == 'docs'
90
92
  Requires-Dist: nbsphinx ; extra == 'docs'
91
93
  Requires-Dist: sphinx-autodoc-typehints ; extra == 'docs'
94
+ Requires-Dist: sphinxemoji ; extra == 'docs'
92
95
  Provides-Extra: ecmwf
93
96
  Requires-Dist: ecmwf-api-client ; extra == 'ecmwf'
94
97
  Provides-Extra: notebook
@@ -108,6 +111,7 @@ Requires-Dist: types-requests ; extra == 'stubs'
108
111
  Requires-Dist: types-python-dateutil ; extra == 'stubs'
109
112
  Requires-Dist: types-setuptools ; extra == 'stubs'
110
113
  Requires-Dist: types-tqdm ; extra == 'stubs'
114
+ Requires-Dist: types-urllib3 ; extra == 'stubs'
111
115
  Provides-Extra: tutorials
112
116
  Requires-Dist: eodag[ecmwf,notebook] ; extra == 'tutorials'
113
117
  Requires-Dist: eodag-cube >=0.2.0 ; extra == 'tutorials'
@@ -298,25 +302,20 @@ An eodag instance can be exposed through a STAC compliant REST api from the comm
298
302
  | jq ".numberMatched"
299
303
  6
300
304
 
301
- # browse for items
302
- $ curl "http://127.0.0.1:5000/catalogs/S2_MSI_L1C/country/FRA/year/2021/month/01/day/25/cloud_cover/10/items" \
303
- | jq ".numberMatched"
304
- 9
305
-
306
305
  # get download link
307
- $ curl "http://127.0.0.1:5000/catalogs/S2_MSI_L1C/country/FRA/year/2021/month/01/day/25/cloud_cover/10/items" \
306
+ $ curl "http://127.0.0.1:5000/collections/S2_MSI_L1C/items" \
308
307
  | jq ".features[0].assets.downloadLink.href"
309
- "http://127.0.0.1:5000/catalogs/S2_MSI_L1C/country/FRA/year/2021/month/01/day/25/cloud_cover/10/items/S2A_MSIL1C_20210125T105331_N0209_R051_T31UCR_20210125T130733/download"
308
+ "http://127.0.0.1:5002/collections/S2_MSI_L1C/items/S2B_MSIL1C_20240917T115259_N0511_R137_T21CWS_20240917T145134/download"
310
309
 
311
310
  # download
312
- $ wget "http://127.0.0.1:5000/catalogs/S2_MSI_L1C/country/FRA/year/2021/month/01/day/25/cloud_cover/10/items/S2A_MSIL1C_20210125T105331_N0209_R051_T31UCR_20210125T130733/download"
311
+ $ wget "http://127.0.0.1:5002/collections/S2_MSI_L1C/items/S2B_MSIL1C_20240917T115259_N0511_R137_T21CWS_20240917T145134/download"
313
312
 
314
313
 
315
314
  ``eodag-server`` is available on `https://hub.docker.com/r/csspace/eodag-server <https://hub.docker.com/r/csspace/eodag-server>`_:
316
315
 
317
316
  .. code-block:: bash
318
317
 
319
- docker run -p 5000:5000 --rm csspace/eodag-server:3.0.0b3
318
+ docker run -p 5000:5000 --rm csspace/eodag-server:3.0.1
320
319
 
321
320
  You can also browse over your STAC API server using `STAC Browser <https://github.com/radiantearth/stac-browser>`_.
322
321
  Simply run:
@@ -0,0 +1,109 @@
1
+ eodag/__init__.py,sha256=qADIO6H3KR0CMs0qePdJROjSzcGnHaYpv-RFIk18WGQ,1608
2
+ eodag/cli.py,sha256=hq_mJmHSKisxdT0rddcXIGEFpjPINtgt0AEdWmh8niQ,29398
3
+ eodag/config.py,sha256=yBArQy5gqVjWfWWuQ7rzIgZNcROFbBTI2R9A-orFHf8,45643
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=jS3TQVluul1lO-hwbtIV8uaaBFHEWGJBWG7FkjMKkEg,107335
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=FfV9K_bsQzx0ZZ-xblK-t4kRlVYaER8eQJit6pRGsO4,6287
11
+ eodag/api/product/_product.py,sha256=40RcEBGkLE-iCaQCVofVNOrDdeldoecKMgGcX7gT7-g,22990
12
+ eodag/api/product/metadata_mapping.py,sha256=Zcem_4PYXUgSPhDBjgWX84L9GbXMt32TQ8Pw9kdDhK4,70436
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=_WzUXxhXpcpRShfZroOXEbLNf3K49edXPtFt3cTGRVI,10672
21
+ eodag/plugins/apis/usgs.py,sha256=Lrt-cac4NfK8tFH1BxsZ6rbTDZx4E3j5dGOvLyy1AsY,19552
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=R59gKip5E0T8gTiveDVgYD2V4gr036te3jdzAFAtNXQ,24665
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=9N1ECiNk61wcrxLSEf9rr-Vzscko22q6GNTe8ujtTTA,10872
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=eZdwmOa6u0sfh2R-hqcIpzAQNkZuzfcw0vGA1SQYteU,3229
41
+ eodag/plugins/download/__init__.py,sha256=zqszaeNgYP0YHlZDkLMf6odcwNw0KrAahGpcA-l0kAw,740
42
+ eodag/plugins/download/aws.py,sha256=doWLzoxHYOVPsMA9Bb8sX1orFPUqq_A17TRe11dyn0w,55693
43
+ eodag/plugins/download/base.py,sha256=8Q_Vdxq-M_V7gZ5fZG7JEgskOzhbcP927V68oCKNLP0,30157
44
+ eodag/plugins/download/creodias_s3.py,sha256=XZFYVP0aEj6GLe4WUGwJQUyPrTOPzpACYr0GC97WNFg,2875
45
+ eodag/plugins/download/http.py,sha256=PkvSPVYR3H40HPUJHK0zsX4qkYNMyxehVm_-E7RqEhQ,57406
46
+ eodag/plugins/download/s3rest.py,sha256=HVdkKfG17l2RfsxjZ46ytJJniEzWIAvZsPy3G_p6-fM,14836
47
+ eodag/plugins/search/__init__.py,sha256=-1M-AB81A8KwLSEhSiNNEA77ecUvmvp4dUL8J1C1wFA,1986
48
+ eodag/plugins/search/base.py,sha256=ZNf9ZuSJBwk-CoRHEo03Qoyz0GHcGsYbDUQzX4kYVDY,16292
49
+ eodag/plugins/search/build_search_result.py,sha256=mPyS6YKtcdVrhGmCUOxNkX5zW0maXs-hKB3UYNlpeVc,21573
50
+ eodag/plugins/search/cop_marine.py,sha256=3JOFtN6Adb0PDW8DfaViMIwXCO1mScEisDhcIDvruJM,19343
51
+ eodag/plugins/search/creodias_s3.py,sha256=v0dnt8b93iqmFW8fifLgj9R24_O5BOVeRTIDnGlY1R8,6083
52
+ eodag/plugins/search/csw.py,sha256=rZ-0ctszEixZuM6_VTkglTgGqmT83TG3bTPWSgB5BC8,12567
53
+ eodag/plugins/search/data_request_search.py,sha256=Ikt1o2eJPLBeof9SSSDWKQpFnWoYDfITDm6q40qKOdU,26683
54
+ eodag/plugins/search/qssearch.py,sha256=KaurdbgzuQUDRU6NWp92qXmF673TGWmXuhWSlYkO8hs,98306
55
+ eodag/plugins/search/static_stac_search.py,sha256=EBBd4AB5R2Kiab3Ssc-b6A4McqcNRMjltgGW25ErH8g,9263
56
+ eodag/resources/ext_product_types.json,sha256=RjMd40oPMF7UwLklQ0LneO7Hy3lKrx_-5mUh9D3k-3c,2872656
57
+ eodag/resources/locations_conf_template.yml,sha256=_eBv-QKHYMIKhY0b0kp4Ee33RsayxN8LWH3kDXxfFSk,986
58
+ eodag/resources/product_types.yml,sha256=r3Ni9X5U-iMR31wWgClIW_qdBQa50JhOjsmTAMDguiQ,375381
59
+ eodag/resources/providers.yml,sha256=9WIRx6QASRjPjFxPkd0yr--DsGoQcING9qCKDElXnNU,252626
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=s_zxBL0ySYV7YW-tQjBEAbpXkiUUyFlMnqVTvq9gAec,25100
75
+ eodag/rest/errors.py,sha256=2tWYuPK67SFoxFVnu4HEx9WWdqzBAwv3_WCoJRAYspI,6211
76
+ eodag/rest/server.py,sha256=r3KxAIUE-ZTb-8OsNwpyTT108syx-SRfUItsHYErD_Q,17641
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=DPfXp2zV0cNIUl4wGMumspP7vN47ew3rJY0xuSox5To,14001
83
+ eodag/rest/types/queryables.py,sha256=sEcXdLjYkpdIqVNdNINfugfmJSoC_jjguAPHQpNY4Hc,6287
84
+ eodag/rest/types/stac_search.py,sha256=0_gheVqe9BVxeWttVsrEQoWRkhyrD21ACm8sUmiCa9M,8825
85
+ eodag/rest/utils/__init__.py,sha256=D6SWRK_UF3yY-s1PweehJ1Oesnyw6ySMrhxQzjn3dJs,6544
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=36DX-ot1E4Y8DzaduQ0kxx-V7TEqKP5RDB-aseiwLU4,11816
89
+ eodag/types/bbox.py,sha256=okc8oFgvoSTQnXJew740i41HArAoSD36Xjr_XmZ1Q4M,4373
90
+ eodag/types/download_args.py,sha256=OeT7xc2JpFRqaZ1QdDwUqgWx8HI1zjGLEPBjLvbL1f8,1551
91
+ eodag/types/queryables.py,sha256=yDpKE5qI8_o_lllxdsFttC0qXI-FNj61UWF5KXuQqUg,5981
92
+ eodag/types/search_args.py,sha256=YqVb04BAPnwhnyafcJo3sRiyOlQA46lTIjnctH_H5b0,5668
93
+ eodag/types/whoosh.py,sha256=dmfS8UIjmdP4kLkeFK99lfiS0owzHa4bLUfB4hrXb5w,2503
94
+ eodag/utils/__init__.py,sha256=0QADbT5O5QW-4pabQocgurLeu0bztboy3ZiCbjswsZY,49236
95
+ eodag/utils/constraints.py,sha256=NAFI-UzrC0zMCG3rVzB_UeutC-sFaZPGRhlI0ytQbbE,9560
96
+ eodag/utils/exceptions.py,sha256=TCT91f04dhY6ThazJC1ZVjIrZUKTR1NLVZZB4yLWs7c,4117
97
+ eodag/utils/import_system.py,sha256=TqfRi_Kl0mzqNBapnOr3A7Y3qjCAgd7wYZ0bkPLeuJU,3908
98
+ eodag/utils/logging.py,sha256=KoMsyS1f6O1hr_SMDOIxvt842mOJgmu_yLUk0-0EKFs,3507
99
+ eodag/utils/notebook.py,sha256=AUxtayvu26qYf3x3Eu3ujRl1XDgy24EfQaETbqmXSZw,2703
100
+ eodag/utils/repr.py,sha256=6ocR8WyatAvh0oAM40bj_FvIt_XMmu-sW0nPxbH9UnM,3683
101
+ eodag/utils/requests.py,sha256=YfN37yA9a_rIEpzhIaG1AL-vpCZitVECicdrKgKgp3A,4604
102
+ eodag/utils/rest.py,sha256=Jd7HMbPCaGW5fFK1Ud0FyocEXqGInwneLFdB7mNRW9A,3361
103
+ eodag/utils/stac_reader.py,sha256=OcSsGCegA39awgM6VanFe6_kO-9CG8YzKjuzoSGVJSo,9248
104
+ eodag-3.0.1.dist-info/LICENSE,sha256=4MAecetnRTQw5DlHtiikDSzKWO1xVLwzM5_DsPMYlnE,10172
105
+ eodag-3.0.1.dist-info/METADATA,sha256=EGhAC2s1sFmSg2DJxrPMuGyNVpNGGGrEctxZAJjd1_E,15567
106
+ eodag-3.0.1.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
107
+ eodag-3.0.1.dist-info/entry_points.txt,sha256=iKQHH0DeP96tHvTTPGLBhsJm-2Iyh1k02UbcMyTpcec,2438
108
+ eodag-3.0.1.dist-info/top_level.txt,sha256=025IMTmVe5eDjIPP4KEFQKespOPMQdne4U4jOy8nftM,6
109
+ eodag-3.0.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (72.1.0)
2
+ Generator: setuptools (75.3.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -39,6 +39,7 @@ CreodiasS3Search = eodag.plugins.search.creodias_s3:CreodiasS3Search
39
39
  DataRequestSearch = eodag.plugins.search.data_request_search:DataRequestSearch
40
40
  ODataV4Search = eodag.plugins.search.qssearch:ODataV4Search
41
41
  PostJsonSearch = eodag.plugins.search.qssearch:PostJsonSearch
42
+ PostJsonSearchWithStacQueryables = eodag.plugins.search.qssearch:PostJsonSearchWithStacQueryables
42
43
  QueryStringSearch = eodag.plugins.search.qssearch:QueryStringSearch
43
44
  StacSearch = eodag.plugins.search.qssearch:StacSearch
44
45
  StaticStacSearch = eodag.plugins.search.static_stac_search:StaticStacSearch