eodag 3.0.0b3__tar.gz → 3.1.0__tar.gz

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 (293) hide show
  1. {eodag-3.0.0b3 → eodag-3.1.0}/.github/workflows/deploy.yml +12 -16
  2. {eodag-3.0.0b3 → eodag-3.1.0}/.github/workflows/fetch.yml +16 -24
  3. eodag-3.1.0/.github/workflows/github-pages.yml +38 -0
  4. {eodag-3.0.0b3 → eodag-3.1.0}/.github/workflows/test.yml +41 -90
  5. {eodag-3.0.0b3 → eodag-3.1.0}/.gitignore +1 -0
  6. {eodag-3.0.0b3 → eodag-3.1.0}/BREAKING_CHANGES.rst +8 -8
  7. {eodag-3.0.0b3 → eodag-3.1.0}/CHANGES.rst +441 -152
  8. {eodag-3.0.0b3 → eodag-3.1.0}/CONTRIBUTING.rst +2 -2
  9. {eodag-3.0.0b3/eodag.egg-info → eodag-3.1.0}/PKG-INFO +21 -21
  10. {eodag-3.0.0b3 → eodag-3.1.0}/README.rst +4 -9
  11. {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/Chart.yaml +2 -2
  12. {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/templates/deployment.yaml +1 -1
  13. {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/values.yaml +1 -1
  14. {eodag-3.0.0b3 → eodag-3.1.0}/docker/stac-server.dockerfile +2 -1
  15. {eodag-3.0.0b3 → eodag-3.1.0}/docs/_static/custom.css +19 -0
  16. eodag-3.1.0/docs/_static/eodag_overview.png +0 -0
  17. eodag-3.1.0/docs/_static/eodag_stac_client.png +0 -0
  18. eodag-3.1.0/docs/_static/eodag_stac_server.png +0 -0
  19. eodag-3.1.0/docs/_static/params_mapping_extra.csv +34 -0
  20. eodag-3.1.0/docs/_static/params_mapping_offline_infos.json +1 -0
  21. eodag-3.1.0/docs/_static/params_mapping_opensearch.csv +45 -0
  22. {eodag-3.0.0b3 → eodag-3.1.0}/docs/_static/product_types_information.csv +280 -243
  23. eodag-3.1.0/docs/_static/stac_browser_example.png +0 -0
  24. eodag-3.1.0/docs/_static/stac_browser_example_600.png +0 -0
  25. eodag-3.1.0/docs/add_product_type.rst +105 -0
  26. {eodag-3.0.0b3 → eodag-3.1.0}/docs/add_provider.rst +48 -41
  27. eodag-3.1.0/docs/api_reference/assets.rst +32 -0
  28. eodag-3.1.0/docs/api_reference/eoproduct.rst +56 -0
  29. eodag-3.1.0/docs/api_reference/exceptions.rst +13 -0
  30. {eodag-3.0.0b3 → eodag-3.1.0}/docs/api_reference/index.rst +1 -0
  31. {eodag-3.0.0b3 → eodag-3.1.0}/docs/api_reference/types.rst +3 -0
  32. eodag-3.1.0/docs/api_reference/utils.rst +48 -0
  33. {eodag-3.0.0b3 → eodag-3.1.0}/docs/api_user_guide.rst +6 -5
  34. {eodag-3.0.0b3 → eodag-3.1.0}/docs/cli_user_guide.rst +2 -2
  35. {eodag-3.0.0b3 → eodag-3.1.0}/docs/conf.py +57 -7
  36. eodag-3.1.0/docs/drivers.rst +46 -0
  37. {eodag-3.0.0b3 → eodag-3.1.0}/docs/getting_started_guide/configure.rst +2 -1
  38. {eodag-3.0.0b3 → eodag-3.1.0}/docs/getting_started_guide/index.rst +1 -1
  39. {eodag-3.0.0b3 → eodag-3.1.0}/docs/getting_started_guide/install.rst +10 -0
  40. {eodag-3.0.0b3 → eodag-3.1.0}/docs/getting_started_guide/product_storage_status.rst +1 -1
  41. {eodag-3.0.0b3 → eodag-3.1.0}/docs/getting_started_guide/product_types.rst +1 -1
  42. {eodag-3.0.0b3 → eodag-3.1.0}/docs/getting_started_guide/providers.rst +21 -22
  43. eodag-3.1.0/docs/getting_started_guide/register.rst +273 -0
  44. {eodag-3.0.0b3 → eodag-3.1.0}/docs/index.rst +27 -15
  45. eodag-3.1.0/docs/notebooks/api_user_guide/1_overview.ipynb +32785 -0
  46. {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/api_user_guide/2_providers_products_available.ipynb +182 -52
  47. {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/api_user_guide/3_configuration.ipynb +17 -16
  48. {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/api_user_guide/4_search.ipynb +3613 -600
  49. eodag-3.1.0/docs/notebooks/api_user_guide/5_queryables.ipynb +1683 -0
  50. eodag-3.0.0b3/docs/notebooks/api_user_guide/5_serialize_deserialize.ipynb → eodag-3.1.0/docs/notebooks/api_user_guide/6_serialize_deserialize.ipynb +6 -6
  51. eodag-3.0.0b3/docs/notebooks/api_user_guide/7_download.ipynb → eodag-3.1.0/docs/notebooks/api_user_guide/8_download.ipynb +1 -1
  52. eodag-3.1.0/docs/notebooks/api_user_guide/9_post_process.ipynb +2725 -0
  53. eodag-3.1.0/docs/notebooks/api_user_guide/data/crunch_search_results.geojson +1 -0
  54. eodag-3.1.0/docs/notebooks/api_user_guide/data/download_search_results.geojson +1 -0
  55. {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/intro_notebooks.ipynb +15 -7
  56. eodag-3.1.0/docs/notebooks/tutos/tuto_cds.ipynb +1824 -0
  57. {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/tutos/tuto_cop_dem.ipynb +21 -21
  58. eodag-3.1.0/docs/notebooks/tutos/tuto_ecmwf.ipynb +1243 -0
  59. eodag-3.1.0/docs/notebooks/tutos/tuto_meteoblue.ipynb +1265 -0
  60. eodag-3.1.0/docs/notebooks/tutos/tuto_search_location_tile.ipynb +886 -0
  61. {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/tutos/tuto_stac_client.ipynb +21 -25
  62. {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/tutos/tuto_wekeo.ipynb +24 -171
  63. eodag-3.1.0/docs/params_mapping.rst +78 -0
  64. eodag-3.1.0/docs/plugins.rst +269 -0
  65. eodag-3.1.0/docs/plugins_reference/auth.rst +35 -0
  66. {eodag-3.0.0b3 → eodag-3.1.0}/docs/plugins_reference/search.rst +6 -2
  67. {eodag-3.0.0b3 → eodag-3.1.0}/docs/stac.rst +3 -3
  68. {eodag-3.0.0b3 → eodag-3.1.0}/docs/stac_rest.rst +20 -25
  69. {eodag-3.0.0b3 → eodag-3.1.0}/docs/tutos.rst +1 -1
  70. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/api/core.py +347 -247
  71. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/api/product/_assets.py +44 -15
  72. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/api/product/_product.py +58 -47
  73. eodag-3.1.0/eodag/api/product/drivers/__init__.py +106 -0
  74. eodag-3.1.0/eodag/api/product/drivers/base.py +106 -0
  75. eodag-3.1.0/eodag/api/product/drivers/generic.py +65 -0
  76. eodag-3.1.0/eodag/api/product/drivers/sentinel1.py +97 -0
  77. eodag-3.1.0/eodag/api/product/drivers/sentinel2.py +95 -0
  78. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/api/product/metadata_mapping.py +129 -93
  79. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/api/search_result.py +28 -12
  80. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/cli.py +61 -24
  81. eodag-3.1.0/eodag/config.py +1047 -0
  82. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/apis/base.py +10 -4
  83. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/apis/ecmwf.py +53 -23
  84. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/apis/usgs.py +41 -17
  85. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/authentication/aws_auth.py +30 -18
  86. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/authentication/base.py +14 -3
  87. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/authentication/generic.py +14 -3
  88. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/authentication/header.py +14 -6
  89. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/authentication/keycloak.py +44 -25
  90. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/authentication/oauth.py +18 -4
  91. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/authentication/openid_connect.py +192 -171
  92. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/authentication/qsauth.py +12 -4
  93. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/authentication/sas_auth.py +22 -5
  94. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/authentication/token.py +95 -17
  95. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/authentication/token_exchange.py +19 -19
  96. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/base.py +4 -4
  97. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/crunch/base.py +8 -5
  98. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/crunch/filter_date.py +9 -6
  99. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/crunch/filter_latest_intersect.py +9 -8
  100. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/crunch/filter_latest_tpl_name.py +8 -8
  101. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/crunch/filter_overlap.py +9 -11
  102. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/crunch/filter_property.py +10 -10
  103. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/download/aws.py +181 -105
  104. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/download/base.py +49 -67
  105. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/download/creodias_s3.py +40 -2
  106. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/download/http.py +247 -223
  107. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/download/s3rest.py +29 -28
  108. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/manager.py +176 -41
  109. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/search/__init__.py +6 -5
  110. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/search/base.py +123 -60
  111. eodag-3.1.0/eodag/plugins/search/build_search_result.py +1229 -0
  112. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/search/cop_marine.py +132 -39
  113. eodag-3.1.0/eodag/plugins/search/creodias_s3.py +85 -0
  114. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/search/csw.py +48 -8
  115. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/search/data_request_search.py +124 -23
  116. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/search/qssearch.py +531 -310
  117. eodag-3.1.0/eodag/plugins/search/stac_list_assets.py +85 -0
  118. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/search/static_stac_search.py +23 -24
  119. eodag-3.1.0/eodag/resources/ext_product_types.json +1 -0
  120. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/resources/product_types.yml +1295 -355
  121. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/resources/providers.yml +1819 -3010
  122. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/resources/stac.yml +3 -163
  123. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/resources/stac_api.yml +2 -2
  124. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/resources/user_conf_template.yml +115 -99
  125. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/cache.py +2 -2
  126. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/config.py +3 -4
  127. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/constants.py +0 -1
  128. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/core.py +157 -117
  129. eodag-3.1.0/eodag/rest/errors.py +181 -0
  130. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/server.py +57 -339
  131. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/stac.py +133 -581
  132. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/types/collections_search.py +3 -3
  133. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/types/eodag_search.py +41 -30
  134. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/types/queryables.py +42 -32
  135. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/types/stac_search.py +15 -16
  136. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/utils/__init__.py +14 -21
  137. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/utils/cql_evaluate.py +6 -6
  138. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/utils/rfc3339.py +2 -2
  139. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/types/__init__.py +153 -32
  140. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/types/bbox.py +2 -2
  141. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/types/download_args.py +4 -4
  142. eodag-3.1.0/eodag/types/queryables.py +234 -0
  143. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/types/search_args.py +6 -6
  144. eodag-3.1.0/eodag/types/whoosh.py +203 -0
  145. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/utils/__init__.py +228 -106
  146. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/utils/exceptions.py +47 -26
  147. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/utils/import_system.py +2 -2
  148. eodag-3.1.0/eodag/utils/logging.py +120 -0
  149. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/utils/repr.py +65 -6
  150. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/utils/requests.py +13 -15
  151. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/utils/rest.py +2 -2
  152. eodag-3.1.0/eodag/utils/s3.py +231 -0
  153. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/utils/stac_reader.py +11 -11
  154. {eodag-3.0.0b3 → eodag-3.1.0/eodag.egg-info}/PKG-INFO +21 -21
  155. {eodag-3.0.0b3 → eodag-3.1.0}/eodag.egg-info/SOURCES.txt +16 -7
  156. {eodag-3.0.0b3 → eodag-3.1.0}/eodag.egg-info/entry_points.txt +5 -2
  157. {eodag-3.0.0b3 → eodag-3.1.0}/eodag.egg-info/requires.txt +14 -13
  158. eodag-3.1.0/get_pypi_latest_version.sh +3 -0
  159. {eodag-3.0.0b3 → eodag-3.1.0}/pyproject.toml +4 -1
  160. {eodag-3.0.0b3 → eodag-3.1.0}/pytest.ini +1 -0
  161. {eodag-3.0.0b3 → eodag-3.1.0}/setup.cfg +20 -12
  162. {eodag-3.0.0b3 → eodag-3.1.0}/tox.ini +6 -4
  163. {eodag-3.0.0b3 → eodag-3.1.0}/utils/params_mapping_to_csv.py +2 -3
  164. {eodag-3.0.0b3 → eodag-3.1.0}/utils/product_types_information_to_csv.py +3 -3
  165. eodag-3.0.0b3/docs/_static/eodag_overview.png +0 -0
  166. eodag-3.0.0b3/docs/_static/eodag_stac_client.png +0 -0
  167. eodag-3.0.0b3/docs/_static/eodag_stac_server.png +0 -0
  168. eodag-3.0.0b3/docs/_static/params_mapping_extra.csv +0 -142
  169. eodag-3.0.0b3/docs/_static/params_mapping_offline_infos.json +0 -1
  170. eodag-3.0.0b3/docs/_static/params_mapping_opensearch.csv +0 -47
  171. eodag-3.0.0b3/docs/_static/stac_browser_example.png +0 -0
  172. eodag-3.0.0b3/docs/_static/stac_browser_example_600.png +0 -0
  173. eodag-3.0.0b3/docs/api_reference/eoproduct.rst +0 -39
  174. eodag-3.0.0b3/docs/api_reference/exceptions.rst +0 -6
  175. eodag-3.0.0b3/docs/api_reference/utils.rst +0 -23
  176. eodag-3.0.0b3/docs/getting_started_guide/register.rst +0 -162
  177. eodag-3.0.0b3/docs/notebooks/api_user_guide/1_overview.ipynb +0 -923
  178. eodag-3.0.0b3/docs/notebooks/api_user_guide/8_post_process.ipynb +0 -986
  179. eodag-3.0.0b3/docs/notebooks/api_user_guide/data/crunch_search_results.geojson +0 -1
  180. eodag-3.0.0b3/docs/notebooks/api_user_guide/data/download_search_results.geojson +0 -1
  181. eodag-3.0.0b3/docs/notebooks/tutos/tuto_cds.ipynb +0 -870
  182. eodag-3.0.0b3/docs/notebooks/tutos/tuto_ecmwf.ipynb +0 -782
  183. eodag-3.0.0b3/docs/notebooks/tutos/tuto_meteoblue.ipynb +0 -1079
  184. eodag-3.0.0b3/docs/notebooks/tutos/tuto_search_location_tile.ipynb +0 -886
  185. eodag-3.0.0b3/docs/plugins.rst +0 -284
  186. eodag-3.0.0b3/docs/plugins_reference/auth.rst +0 -25
  187. eodag-3.0.0b3/eodag/api/product/drivers/__init__.py +0 -29
  188. eodag-3.0.0b3/eodag/api/product/drivers/base.py +0 -45
  189. eodag-3.0.0b3/eodag/config.py +0 -757
  190. eodag-3.0.0b3/eodag/plugins/search/build_search_result.py +0 -538
  191. eodag-3.0.0b3/eodag/plugins/search/creodias_s3.py +0 -134
  192. eodag-3.0.0b3/eodag/resources/constraints/climate-dt.json +0 -13
  193. eodag-3.0.0b3/eodag/resources/constraints/extremes-dt.json +0 -8
  194. eodag-3.0.0b3/eodag/resources/ext_product_types.json +0 -1
  195. eodag-3.0.0b3/eodag/types/queryables.py +0 -124
  196. eodag-3.0.0b3/eodag/types/whoosh.py +0 -79
  197. eodag-3.0.0b3/eodag/utils/constraints.py +0 -244
  198. eodag-3.0.0b3/eodag/utils/logging.py +0 -160
  199. eodag-3.0.0b3/get_pypi_latest_version.sh +0 -4
  200. {eodag-3.0.0b3 → eodag-3.1.0}/.dockerignore +0 -0
  201. {eodag-3.0.0b3 → eodag-3.1.0}/.editorconfig +0 -0
  202. {eodag-3.0.0b3 → eodag-3.1.0}/.gitattributes +0 -0
  203. {eodag-3.0.0b3 → eodag-3.1.0}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  204. {eodag-3.0.0b3 → eodag-3.1.0}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  205. {eodag-3.0.0b3 → eodag-3.1.0}/.github/pull_request_template.md +0 -0
  206. {eodag-3.0.0b3 → eodag-3.1.0}/.pre-commit-config.yaml +0 -0
  207. {eodag-3.0.0b3 → eodag-3.1.0}/CODE_OF_CONDUCT.md +0 -0
  208. {eodag-3.0.0b3 → eodag-3.1.0}/LICENSE +0 -0
  209. {eodag-3.0.0b3 → eodag-3.1.0}/MANIFEST.in +0 -0
  210. {eodag-3.0.0b3 → eodag-3.1.0}/NOTICE +0 -0
  211. {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/Chart.lock +0 -0
  212. {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/README.md +0 -0
  213. {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/templates/NOTES.txt +0 -0
  214. {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/templates/_helpers.tpl +0 -0
  215. {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/templates/configmap.yaml +0 -0
  216. {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/templates/extra-list.yaml +0 -0
  217. {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/templates/hpa.yaml +0 -0
  218. {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/templates/ingress.yaml +0 -0
  219. {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/templates/pv.yaml +0 -0
  220. {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/templates/pvc.yaml +0 -0
  221. {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/templates/secret.yaml +0 -0
  222. {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/templates/service.yaml +0 -0
  223. {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/templates/serviceaccount.yaml +0 -0
  224. {eodag-3.0.0b3 → eodag-3.1.0}/docker/run-stac-server.sh +0 -0
  225. {eodag-3.0.0b3 → eodag-3.1.0}/docker/stac-browser.dockerfile +0 -0
  226. {eodag-3.0.0b3 → eodag-3.1.0}/docker-compose.yml +0 -0
  227. {eodag-3.0.0b3 → eodag-3.1.0}/docs/Makefile +0 -0
  228. {eodag-3.0.0b3 → eodag-3.1.0}/docs/_static/download_methods.png +0 -0
  229. {eodag-3.0.0b3 → eodag-3.1.0}/docs/_static/eodag_advanced_calls_graph.svg +0 -0
  230. {eodag-3.0.0b3 → eodag-3.1.0}/docs/_static/eodag_bycs.png +0 -0
  231. {eodag-3.0.0b3 → eodag-3.1.0}/docs/_static/eodag_fetch_product_types.png +0 -0
  232. {eodag-3.0.0b3 → eodag-3.1.0}/docs/_static/eodag_logo_160.png +0 -0
  233. {eodag-3.0.0b3 → eodag-3.1.0}/docs/_static/eodag_logo_160r.png +0 -0
  234. {eodag-3.0.0b3 → eodag-3.1.0}/docs/_static/eodag_main_calls_graph.svg +0 -0
  235. {eodag-3.0.0b3 → eodag-3.1.0}/docs/_static/favicon-32x32.png +0 -0
  236. {eodag-3.0.0b3 → eodag-3.1.0}/docs/_static/progress_1.png +0 -0
  237. {eodag-3.0.0b3 → eodag-3.1.0}/docs/_static/progress_1_none.png +0 -0
  238. {eodag-3.0.0b3 → eodag-3.1.0}/docs/_static/progress_2.png +0 -0
  239. {eodag-3.0.0b3 → eodag-3.1.0}/docs/_static/progress_2_none.png +0 -0
  240. {eodag-3.0.0b3 → eodag-3.1.0}/docs/api_reference/call_graphs.rst +0 -0
  241. {eodag-3.0.0b3 → eodag-3.1.0}/docs/api_reference/core.rst +0 -0
  242. {eodag-3.0.0b3 → eodag-3.1.0}/docs/api_reference/searchresult.rst +0 -0
  243. {eodag-3.0.0b3 → eodag-3.1.0}/docs/breaking_changes.rst +0 -0
  244. {eodag-3.0.0b3 → eodag-3.1.0}/docs/changelog.rst +0 -0
  245. {eodag-3.0.0b3 → eodag-3.1.0}/docs/contribute.rst +0 -0
  246. {eodag-3.0.0b3 → eodag-3.1.0}/docs/getting_started_guide/overview.rst +0 -0
  247. {eodag-3.0.0b3 → eodag-3.1.0}/docs/getting_started_guide/side_projects.rst +0 -0
  248. {eodag-3.0.0b3 → eodag-3.1.0}/docs/make.bat +0 -0
  249. /eodag-3.0.0b3/docs/notebooks/api_user_guide/6_crunch.ipynb → /eodag-3.1.0/docs/notebooks/api_user_guide/7_crunch.ipynb +0 -0
  250. {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.cpg +0 -0
  251. {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.dbf +0 -0
  252. {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.prj +0 -0
  253. {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.qix +0 -0
  254. {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.qpj +0 -0
  255. {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.shp +0 -0
  256. {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.shx +0 -0
  257. {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/tutos/auxdata/sentinel2_tiling_grid_centroids.zip +0 -0
  258. {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/tutos/tuto_burnt_areas_snappy.ipynb +0 -0
  259. {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/tutos/tuto_ship_detection.ipynb +0 -0
  260. {eodag-3.0.0b3 → eodag-3.1.0}/docs/plugins_reference/api.rst +0 -0
  261. {eodag-3.0.0b3 → eodag-3.1.0}/docs/plugins_reference/crunch.rst +0 -0
  262. {eodag-3.0.0b3 → eodag-3.1.0}/docs/plugins_reference/download.rst +0 -0
  263. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/__init__.py +0 -0
  264. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/api/__init__.py +0 -0
  265. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/api/product/__init__.py +0 -0
  266. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/crunch.py +0 -0
  267. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/__init__.py +0 -0
  268. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/apis/__init__.py +0 -0
  269. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/authentication/__init__.py +0 -0
  270. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/crunch/__init__.py +0 -0
  271. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/download/__init__.py +0 -0
  272. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/py.typed +0 -0
  273. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/resources/locations_conf_template.yml +0 -0
  274. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/resources/shp/ne_110m_admin_0_map_units.VERSION.txt +0 -0
  275. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/resources/shp/ne_110m_admin_0_map_units.cpg +0 -0
  276. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/resources/shp/ne_110m_admin_0_map_units.dbf +0 -0
  277. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/resources/shp/ne_110m_admin_0_map_units.prj +0 -0
  278. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/resources/shp/ne_110m_admin_0_map_units.shp +0 -0
  279. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/resources/shp/ne_110m_admin_0_map_units.shx +0 -0
  280. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/resources/stac_provider.yml +0 -0
  281. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/__init__.py +0 -0
  282. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/server.wsgi +0 -0
  283. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/templates/README +0 -0
  284. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/types/__init__.py +0 -0
  285. {eodag-3.0.0b3 → eodag-3.1.0}/eodag/utils/notebook.py +0 -0
  286. {eodag-3.0.0b3 → eodag-3.1.0}/eodag.egg-info/dependency_links.txt +0 -0
  287. {eodag-3.0.0b3 → eodag-3.1.0}/eodag.egg-info/top_level.txt +0 -0
  288. {eodag-3.0.0b3 → eodag-3.1.0}/readthedocs.yml +0 -0
  289. {eodag-3.0.0b3 → eodag-3.1.0}/requirements-dev.txt +0 -0
  290. {eodag-3.0.0b3 → eodag-3.1.0}/requirements-docs.txt +0 -0
  291. {eodag-3.0.0b3 → eodag-3.1.0}/requirements-tutorials.txt +0 -0
  292. {eodag-3.0.0b3 → eodag-3.1.0}/requirements.txt +0 -0
  293. {eodag-3.0.0b3 → eodag-3.1.0}/setup.py +0 -0
@@ -14,18 +14,18 @@ jobs:
14
14
  steps:
15
15
  - name: Checkout source
16
16
  uses: actions/checkout@v4
17
- - name: Get history and tags for SCM versioning to work
18
- run: |
19
- git fetch --prune --unshallow
20
- git fetch --depth=1 origin +refs/tags/*:refs/tags/*
21
- - name: Set up Python 3.8
22
- uses: actions/setup-python@v5
23
17
  with:
24
- python-version: "3.8"
25
-
18
+ # Get history and tags for SCM versioning to work
19
+ fetch-depth: 0
20
+ - name: Install the latest version of uv with cache enabled
21
+ uses: astral-sh/setup-uv@v3
22
+ with:
23
+ version: "latest"
24
+ enable-cache: true
25
+ cache-dependency-glob: ""
26
26
  - name: Check that the current version isn't already on PyPi
27
27
  run: |
28
- if [ "$(./get_pypi_latest_version.sh)" != "$(python setup.py --version)" ]
28
+ if [ "$(./get_pypi_latest_version.sh)" != "$(git describe --tags)" ]
29
29
  then
30
30
  echo "Current version is not on PyPI, proceed with bulding"
31
31
  else
@@ -34,15 +34,11 @@ jobs:
34
34
  fi
35
35
 
36
36
  - name: Check long description is OK for PyPI with tox
37
- run: |
38
- python -m pip install --upgrade pip
39
- python -m pip install tox sphinx
40
- tox -e pypi
37
+ run: uvx --with tox-uv --with sphinx tox -e pypi
41
38
 
42
39
  - name: Build a binary wheel and a source tarball
43
- run: |
44
- python -m pip install build
45
- python -m build --sdist --wheel
40
+ run: uvx --from build pyproject-build --sdist --wheel
41
+
46
42
  - name: Publish distribution to PyPI
47
43
  uses: pypa/gh-action-pypi-publish@release/v1
48
44
  with:
@@ -14,34 +14,26 @@ jobs:
14
14
  steps:
15
15
  - name: Checkout the repo
16
16
  uses: actions/checkout@v4
17
- - name: Get history and tags for SCM versioning to work
18
- run: |
19
- git fetch --prune --unshallow
20
- git fetch --depth=1 origin +refs/tags/*:refs/tags/*
21
- - name: Set up Python 3.8
22
- uses: actions/setup-python@v5
23
17
  with:
24
- python-version: "3.8"
25
- - name: Update pip
26
- run: python -m pip install --upgrade pip
27
- - name: Get pip cache dir
28
- id: pip-cache
29
- shell: bash
30
- run: echo "DIR=$(pip cache dir)" >> $GITHUB_OUTPUT
31
- - name: Get current week number
32
- id: get-week
33
- shell: bash
34
- run: echo "WEEK=$(date +'%V')" >> $GITHUB_OUTPUT
35
- - name: Pip cache
36
- uses: actions/cache@v4
18
+ # Get history and tags for SCM versioning to work
19
+ fetch-depth: 0
20
+ - name: Install the latest version of uv with cache enabled
21
+ uses: astral-sh/setup-uv@v3
37
22
  with:
38
- path: ${{ steps.pip-cache.outputs.DIR }}
39
- key: ${{ runner.os }}-pip-${{ steps.get-week.outputs.WEEK }}-${{ hashFiles('setup.cfg') }}
40
- - name: Install eodag
23
+ version: "latest"
24
+ enable-cache: true
25
+ cache-dependency-glob: ""
26
+ - name: Install eodag in venv
41
27
  run: |
42
- python -m pip install ".[all-providers]"
28
+ uv venv
29
+ source .venv/bin/activate
30
+ uv pip install ".[all-providers]"
43
31
  - name: Fetch and update external product types reference
32
+ env:
33
+ EODAG__WEKEO_MAIN__AUTH__CREDENTIALS__USERNAME: ${{ secrets.EODAG__WEKEO_MAIN__AUTH__CREDENTIALS__USERNAME }}
34
+ EODAG__WEKEO_MAIN__AUTH__CREDENTIALS__PASSWORD: ${{ secrets.EODAG__WEKEO_MAIN__AUTH__CREDENTIALS__PASSWORD }}
44
35
  run: |
36
+ source .venv/bin/activate
45
37
  export JSON_OUTPUT_FILE="eodag/resources/ext_product_types.json"
46
38
  export JSON_REF_FILE=$(python -c "import eodag; print(eodag.config.EXT_PRODUCT_TYPES_CONF_URI)")
47
39
  eodag -vvv discover --storage ${JSON_OUTPUT_FILE}
@@ -59,7 +51,7 @@ jobs:
59
51
  echo "commit [${COMMIT_SHA}](${COMMIT_URL})" >> $GITHUB_STEP_SUMMARY
60
52
  echo '```diff' >> $GITHUB_STEP_SUMMARY
61
53
  git show --name-only --format=tformat: >> $GITHUB_STEP_SUMMARY
62
- (diff <(curl ${JSON_REF_FILE}) <(cat ${JSON_OUTPUT_FILE}) || true) >> $GITHUB_STEP_SUMMARY
54
+ (diff <(curl ${JSON_REF_FILE} | jq) <(cat ${JSON_OUTPUT_FILE} | jq) || true) >> $GITHUB_STEP_SUMMARY
63
55
  echo '```' >> $GITHUB_STEP_SUMMARY
64
56
  # truncated PR body (too long causes error)
65
57
  full_update_summary=$(cat $GITHUB_STEP_SUMMARY)
@@ -0,0 +1,38 @@
1
+ name: Deploy static content to GitHub Pages
2
+
3
+ on:
4
+ workflow_dispatch:
5
+ push:
6
+ branches: [develop]
7
+
8
+ # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
9
+ permissions:
10
+ contents: read
11
+ pages: write
12
+ id-token: write
13
+
14
+ # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
15
+ # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
16
+ concurrency:
17
+ group: "pages"
18
+ cancel-in-progress: false
19
+
20
+ jobs:
21
+ deploy:
22
+ environment:
23
+ name: github-pages
24
+ url: ${{ steps.deployment.outputs.page_url }}
25
+ runs-on: ubuntu-latest
26
+ steps:
27
+ - name: Checkout
28
+ uses: actions/checkout@v4
29
+ - name: Setup Pages
30
+ uses: actions/configure-pages@v5
31
+ - name: Upload artifact
32
+ uses: actions/upload-pages-artifact@v3
33
+ with:
34
+ # Upload entire repository
35
+ path: '.'
36
+ - name: Deploy to GitHub Pages
37
+ id: deployment
38
+ uses: actions/deploy-pages@v4
@@ -11,62 +11,47 @@ on:
11
11
 
12
12
  jobs:
13
13
  lint:
14
- name: Linting (pre-commit)
14
+ name: Linting (pre-commit and mypy)
15
15
  runs-on: ubuntu-latest
16
16
  steps:
17
17
  - name: Checkout the repo
18
18
  uses: actions/checkout@v4
19
- - name: Get history and tags for SCM versioning to work
20
- run: |
21
- git fetch --prune --unshallow
22
- git fetch --depth=1 origin +refs/tags/*:refs/tags/*
23
- - name: Set up Python 3.8
24
- uses: actions/setup-python@v5
25
19
  with:
26
- python-version: "3.8"
27
- - name: Run pre-commit action
28
- uses: pre-commit/action@v3.0.1
20
+ # Get history and tags for SCM versioning to work
21
+ fetch-depth: 0
22
+ - name: Install the latest version of uv with cache enabled
23
+ uses: astral-sh/setup-uv@v3
24
+ with:
25
+ version: "latest"
26
+ enable-cache: true
27
+ cache-dependency-glob: ""
28
+ - name: Run linters with tox
29
+ run: uvx --python 3.9 --with tox-uv tox -e linters
29
30
 
30
31
  tests:
31
32
  name: Test it!
32
33
  runs-on: ${{ matrix.os }}
33
34
  strategy:
34
35
  matrix:
35
- python-version: [3.8, "3.12"]
36
+ python-version: [3.9, "3.13"]
36
37
  os: [ubuntu-latest, windows-latest]
37
38
  steps:
38
39
  - name: Checkout the repo
39
40
  uses: actions/checkout@v4
40
- - name: Get history and tags for SCM versioning to work
41
- run: |
42
- git fetch --prune --unshallow
43
- git fetch --depth=1 origin +refs/tags/*:refs/tags/*
44
- - name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}
45
- uses: actions/setup-python@v5
46
41
  with:
47
- python-version: ${{ matrix.python-version }}
48
- - name: Update pip
49
- run: python -m pip install --upgrade pip
50
- - name: Get pip cache dir
51
- id: pip-cache
52
- shell: bash
53
- run: echo "DIR=$(pip cache dir)" >> $GITHUB_OUTPUT
54
- - name: Get current week number
55
- id: get-week
56
- shell: bash
57
- run: echo "WEEK=$(date +'%V')" >> $GITHUB_OUTPUT
58
- - name: Pip cache
59
- uses: actions/cache@v4
42
+ # Get history and tags for SCM versioning to work
43
+ fetch-depth: 0
44
+ - name: Install the latest version of uv with cache enabled
45
+ uses: astral-sh/setup-uv@v3
60
46
  with:
61
- path: ${{ steps.pip-cache.outputs.DIR }}
62
- key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ steps.get-week.outputs.WEEK }}-${{ hashFiles('setup.cfg') }}
63
- - name: Install tox and tox-gh-actions
64
- run: python -m pip install tox tox-gh-actions
47
+ version: "latest"
48
+ enable-cache: true
49
+ cache-dependency-glob: ""
65
50
  - name: Test with tox
66
- run: tox
51
+ run: uvx --python ${{ matrix.python-version }} --with tox-uv --with tox-gh-actions tox
67
52
  - name: Upload Unit Test Results
68
53
  if: always()
69
- uses: actions/upload-artifact@v3
54
+ uses: actions/upload-artifact@v4
70
55
  with:
71
56
  name: unit-test-results-python${{ matrix.python-version }}-${{ matrix.os }}
72
57
  path: |
@@ -81,7 +66,7 @@ jobs:
81
66
 
82
67
  steps:
83
68
  - name: Download Artifacts
84
- uses: actions/download-artifact@v3
69
+ uses: actions/download-artifact@v4
85
70
  with:
86
71
  path: artifacts
87
72
 
@@ -95,7 +80,7 @@ jobs:
95
80
  uses: insightsengineering/coverage-action@v2
96
81
  with:
97
82
  # Path to the Cobertura XML report.
98
- path: artifacts/unit-test-results-python3.12-ubuntu-latest/coverage.xml
83
+ path: artifacts/unit-test-results-python3.13-ubuntu-latest/coverage.xml
99
84
  # Minimum total coverage, if you want to the
100
85
  # workflow to enforce it as a standard.
101
86
  # This has no effect if the `fail` arg is set to `false`.
@@ -125,7 +110,7 @@ jobs:
125
110
  uses: insightsengineering/coverage-action@v2
126
111
  with:
127
112
  # Path to the Cobertura XML report.
128
- path: artifacts/unit-test-results-python3.12-windows-latest/coverage.xml
113
+ path: artifacts/unit-test-results-python3.13-windows-latest/coverage.xml
129
114
  # Minimum total coverage, if you want to the
130
115
  # workflow to enforce it as a standard.
131
116
  # This has no effect if the `fail` arg is set to `false`.
@@ -157,38 +142,21 @@ jobs:
157
142
  steps:
158
143
  - name: Checkout the repo
159
144
  uses: actions/checkout@v4
160
- - name: Get history and tags for SCM versioning to work
161
- run: |
162
- git fetch --prune --unshallow
163
- git fetch --depth=1 origin +refs/tags/*:refs/tags/*
164
- - name: Set up Python 3.8
165
- uses: actions/setup-python@v5
166
145
  with:
167
- python-version: "3.8"
168
- - name: Update pip
169
- run: python -m pip install --upgrade pip
170
- - name: Get pip cache dir
171
- id: pip-cache
172
- shell: bash
173
- run: echo "DIR=$(pip cache dir)" >> $GITHUB_OUTPUT
174
- - name: Get current week number
175
- id: get-week
176
- shell: bash
177
- run: echo "WEEK=$(date +'%V')" >> $GITHUB_OUTPUT
178
- - name: Pip cache
179
- uses: actions/cache@v4
146
+ # Get history and tags for SCM versioning to work
147
+ fetch-depth: 0
148
+ - name: Install the latest version of uv with cache enabled
149
+ uses: astral-sh/setup-uv@v3
180
150
  with:
181
- path: ${{ steps.pip-cache.outputs.DIR }}
182
- key: ${{ runner.os }}-pip-${{ steps.get-week.outputs.WEEK }}-${{ hashFiles('setup.cfg') }}
151
+ version: "latest"
152
+ enable-cache: true
153
+ cache-dependency-glob: ""
183
154
  - name: Install pandoc
184
155
  run: |
185
156
  curl -s https://api.github.com/repos/jgm/pandoc/releases/latest | grep -o "https.*amd64.deb" | wget -O pandoc.deb -qi -
186
157
  sudo dpkg -i pandoc.deb && rm pandoc.deb
187
- - name: Install tox
188
- run: |
189
- python -m pip install tox
190
158
  - name: Testing with tox
191
- run: python -m tox -e docs
159
+ run: uvx --with tox-uv tox -e docs
192
160
 
193
161
  check-pypi:
194
162
  name: Long description check for PyPI
@@ -196,31 +164,14 @@ jobs:
196
164
  steps:
197
165
  - name: Checkout the repo
198
166
  uses: actions/checkout@v4
199
- - name: Get history and tags for SCM versioning to work
200
- run: |
201
- git fetch --prune --unshallow
202
- git fetch --depth=1 origin +refs/tags/*:refs/tags/*
203
- - name: Set up Python 3.8
204
- uses: actions/setup-python@v5
205
167
  with:
206
- python-version: "3.8"
207
- - name: Update pip
208
- run: python -m pip install --upgrade pip
209
- - name: Get pip cache dir
210
- id: pip-cache
211
- shell: bash
212
- run: echo "DIR=$(pip cache dir)" >> $GITHUB_OUTPUT
213
- - name: Get current week number
214
- id: get-week
215
- shell: bash
216
- run: echo "WEEK=$(date +'%V')" >> $GITHUB_OUTPUT
217
- - name: Pip cache
218
- uses: actions/cache@v4
168
+ # Get history and tags for SCM versioning to work
169
+ fetch-depth: 0
170
+ - name: Install the latest version of uv with cache enabled
171
+ uses: astral-sh/setup-uv@v3
219
172
  with:
220
- path: ${{ steps.pip-cache.outputs.DIR }}
221
- key: ${{ runner.os }}-pip-${{ steps.get-week.outputs.WEEK }}-${{ hashFiles('setup.cfg') }}
222
- - name: Install tox and sphinx (to have rst2html.py utility available)
223
- run: |
224
- python -m pip install tox sphinx
225
- - name: Testing with tox
226
- run: python -m tox -e pypi
173
+ version: "latest"
174
+ enable-cache: true
175
+ cache-dependency-glob: ""
176
+ - name: Testing with tox and sphinx (to have rst2html.py utility available)
177
+ run: uvx --with tox-uv --with sphinx tox -e pypi
@@ -94,6 +94,7 @@ ENV/
94
94
 
95
95
  # Autogenerated docs by sphinx
96
96
  docs/plugins_reference/generated/*.rst
97
+ docs/drivers_generated/*.rst
97
98
 
98
99
  docs/notebooks/api_user_guide/*workspace*
99
100
  docs/notebooks/tutos/*workspace*
@@ -3,14 +3,14 @@ Breaking changes
3
3
 
4
4
  Full changelog available in `Release history <changelog.html>`_.
5
5
 
6
- 3.0.0b3
7
- +++++++
6
+ v3.0.0b3
7
+ ++++++++
8
8
 
9
9
  * :meth:`~eodag.api.core.EODataAccessGateway.download` / :class:`~eodag.types.download_args.DownloadConf` parameters
10
10
  ``outputs_prefix`` and ``outputs_extension`` renamed to ``output_dir`` and ``output_extension``.
11
11
 
12
- 3.0.0b1
13
- +++++++
12
+ v3.0.0b1
13
+ ++++++++
14
14
 
15
15
  * :meth:`~eodag.api.core.EODataAccessGateway.search` method now returns only a
16
16
  :class:`~eodag.api.search_result.SearchResult` instead of a 2 values tuple. It can optionally store the estimated
@@ -45,14 +45,14 @@ Full changelog available in `Release history <changelog.html>`_.
45
45
  # install eodag with all available providers supported
46
46
  pip install "eodag[all-providers]"
47
47
 
48
- 2.0b1
49
- +++++
48
+ v2.0b1
49
+ ++++++
50
50
 
51
51
  - STAC API compliant REST server
52
52
  - Common configuration for STAC providers
53
53
 
54
- 1.0
55
- +++
54
+ v1.0
55
+ ++++
56
56
 
57
57
  - Adds product type search functionality
58
58
  - The cli arguments are now fully compliant with opensearch geo(bbox)/time extensions