eodag 3.0.0b2__tar.gz → 3.0.0b3__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 (254) hide show
  1. {eodag-3.0.0b2 → eodag-3.0.0b3}/.github/workflows/deploy.yml +2 -2
  2. {eodag-3.0.0b2 → eodag-3.0.0b3}/.github/workflows/fetch.yml +5 -5
  3. {eodag-3.0.0b2 → eodag-3.0.0b3}/.github/workflows/test.yml +12 -12
  4. eodag-3.0.0b3/BREAKING_CHANGES.rst +58 -0
  5. {eodag-3.0.0b2 → eodag-3.0.0b3}/CHANGES.rst +57 -8
  6. {eodag-3.0.0b2/eodag.egg-info → eodag-3.0.0b3}/PKG-INFO +32 -14
  7. {eodag-3.0.0b2 → eodag-3.0.0b3}/README.rst +16 -7
  8. {eodag-3.0.0b2 → eodag-3.0.0b3}/charts/eodag-server/Chart.yaml +2 -2
  9. {eodag-3.0.0b2 → eodag-3.0.0b3}/charts/eodag-server/values.yaml +6 -6
  10. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/_static/params_mapping_extra.csv +6 -1
  11. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/_static/params_mapping_offline_infos.json +1 -1
  12. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/_static/params_mapping_opensearch.csv +1 -1
  13. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/_static/product_types_information.csv +2 -1
  14. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/add_provider.rst +15 -9
  15. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/api_reference/core.rst +2 -8
  16. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/api_reference/searchresult.rst +2 -0
  17. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/api_reference/types.rst +3 -0
  18. eodag-3.0.0b3/docs/breaking_changes.rst +3 -0
  19. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/conf.py +10 -2
  20. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/getting_started_guide/configure.rst +5 -5
  21. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/getting_started_guide/install.rst +12 -1
  22. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/index.rst +7 -0
  23. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/notebooks/api_user_guide/1_overview.ipynb +4 -4
  24. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/notebooks/api_user_guide/3_configuration.ipynb +69 -38
  25. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/notebooks/api_user_guide/4_search.ipynb +4 -4
  26. eodag-3.0.0b3/docs/notebooks/api_user_guide/5_serialize_deserialize.ipynb +3758 -0
  27. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/notebooks/api_user_guide/7_download.ipynb +350 -112
  28. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/notebooks/api_user_guide/8_post_process.ipynb +1 -1
  29. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/notebooks/tutos/tuto_burnt_areas_snappy.ipynb +1 -1
  30. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/notebooks/tutos/tuto_cds.ipynb +1 -1
  31. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/notebooks/tutos/tuto_cop_dem.ipynb +1 -1
  32. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/notebooks/tutos/tuto_ecmwf.ipynb +1 -1
  33. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/notebooks/tutos/tuto_meteoblue.ipynb +1 -1
  34. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/notebooks/tutos/tuto_ship_detection.ipynb +1 -1
  35. eodag-3.0.0b3/docs/notebooks/tutos/tuto_stac_client.ipynb +24880 -0
  36. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/notebooks/tutos/tuto_wekeo.ipynb +2 -2
  37. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/plugins_reference/api.rst +2 -2
  38. eodag-3.0.0b3/docs/plugins_reference/auth.rst +25 -0
  39. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/plugins_reference/crunch.rst +5 -5
  40. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/plugins_reference/download.rst +4 -4
  41. eodag-3.0.0b3/docs/plugins_reference/search.rst +26 -0
  42. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/__init__.py +6 -8
  43. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/api/core.py +113 -169
  44. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/api/product/__init__.py +10 -4
  45. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/api/product/_assets.py +2 -14
  46. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/api/product/_product.py +16 -30
  47. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/api/product/drivers/__init__.py +7 -2
  48. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/api/product/drivers/base.py +0 -3
  49. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/api/product/metadata_mapping.py +0 -28
  50. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/api/search_result.py +4 -9
  51. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/config.py +45 -41
  52. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/apis/base.py +3 -3
  53. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/apis/ecmwf.py +2 -3
  54. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/apis/usgs.py +43 -14
  55. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/authentication/aws_auth.py +11 -2
  56. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/authentication/openid_connect.py +5 -4
  57. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/authentication/token.py +2 -1
  58. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/crunch/base.py +3 -1
  59. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/crunch/filter_date.py +3 -9
  60. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/crunch/filter_latest_intersect.py +0 -3
  61. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/crunch/filter_latest_tpl_name.py +1 -4
  62. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/crunch/filter_overlap.py +4 -8
  63. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/crunch/filter_property.py +5 -11
  64. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/download/aws.py +46 -78
  65. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/download/base.py +27 -68
  66. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/download/http.py +48 -57
  67. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/download/s3rest.py +17 -25
  68. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/manager.py +5 -18
  69. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/search/__init__.py +9 -9
  70. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/search/base.py +7 -26
  71. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/search/build_search_result.py +0 -13
  72. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/search/cop_marine.py +1 -3
  73. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/search/creodias_s3.py +0 -3
  74. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/search/data_request_search.py +10 -5
  75. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/search/qssearch.py +95 -53
  76. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/search/static_stac_search.py +6 -3
  77. eodag-3.0.0b3/eodag/resources/ext_product_types.json +1 -0
  78. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/resources/product_types.yml +24 -0
  79. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/resources/providers.yml +198 -154
  80. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/resources/user_conf_template.yml +27 -27
  81. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/rest/core.py +11 -43
  82. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/rest/server.py +1 -6
  83. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/rest/stac.py +13 -87
  84. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/rest/types/eodag_search.py +4 -7
  85. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/rest/types/queryables.py +4 -12
  86. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/rest/types/stac_search.py +7 -11
  87. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/rest/utils/rfc3339.py +0 -1
  88. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/types/__init__.py +9 -3
  89. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/types/download_args.py +14 -5
  90. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/types/search_args.py +7 -8
  91. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/types/whoosh.py +0 -2
  92. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/utils/__init__.py +20 -79
  93. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/utils/constraints.py +0 -8
  94. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/utils/import_system.py +0 -4
  95. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/utils/logging.py +0 -3
  96. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/utils/notebook.py +4 -4
  97. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/utils/requests.py +12 -20
  98. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/utils/rest.py +0 -4
  99. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/utils/stac_reader.py +2 -14
  100. {eodag-3.0.0b2 → eodag-3.0.0b3/eodag.egg-info}/PKG-INFO +32 -14
  101. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag.egg-info/SOURCES.txt +2 -0
  102. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag.egg-info/requires.txt +15 -6
  103. {eodag-3.0.0b2 → eodag-3.0.0b3}/pyproject.toml +12 -4
  104. {eodag-3.0.0b2 → eodag-3.0.0b3}/setup.cfg +13 -4
  105. {eodag-3.0.0b2 → eodag-3.0.0b3}/tox.ini +3 -3
  106. {eodag-3.0.0b2 → eodag-3.0.0b3}/utils/params_mapping_to_csv.py +0 -3
  107. {eodag-3.0.0b2 → eodag-3.0.0b3}/utils/product_types_information_to_csv.py +0 -1
  108. eodag-3.0.0b2/docs/notebooks/api_user_guide/5_serialize_deserialize.ipynb +0 -313
  109. eodag-3.0.0b2/docs/notebooks/tutos/tuto_stac_client.ipynb +0 -1171
  110. eodag-3.0.0b2/docs/plugins_reference/auth.rst +0 -25
  111. eodag-3.0.0b2/docs/plugins_reference/search.rst +0 -26
  112. eodag-3.0.0b2/eodag/resources/ext_product_types.json +0 -1
  113. {eodag-3.0.0b2 → eodag-3.0.0b3}/.dockerignore +0 -0
  114. {eodag-3.0.0b2 → eodag-3.0.0b3}/.editorconfig +0 -0
  115. {eodag-3.0.0b2 → eodag-3.0.0b3}/.gitattributes +0 -0
  116. {eodag-3.0.0b2 → eodag-3.0.0b3}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  117. {eodag-3.0.0b2 → eodag-3.0.0b3}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  118. {eodag-3.0.0b2 → eodag-3.0.0b3}/.github/pull_request_template.md +0 -0
  119. {eodag-3.0.0b2 → eodag-3.0.0b3}/.gitignore +0 -0
  120. {eodag-3.0.0b2 → eodag-3.0.0b3}/.pre-commit-config.yaml +0 -0
  121. {eodag-3.0.0b2 → eodag-3.0.0b3}/CODE_OF_CONDUCT.md +0 -0
  122. {eodag-3.0.0b2 → eodag-3.0.0b3}/CONTRIBUTING.rst +0 -0
  123. {eodag-3.0.0b2 → eodag-3.0.0b3}/LICENSE +0 -0
  124. {eodag-3.0.0b2 → eodag-3.0.0b3}/MANIFEST.in +0 -0
  125. {eodag-3.0.0b2 → eodag-3.0.0b3}/NOTICE +0 -0
  126. {eodag-3.0.0b2 → eodag-3.0.0b3}/charts/eodag-server/Chart.lock +0 -0
  127. {eodag-3.0.0b2 → eodag-3.0.0b3}/charts/eodag-server/README.md +0 -0
  128. {eodag-3.0.0b2 → eodag-3.0.0b3}/charts/eodag-server/templates/NOTES.txt +0 -0
  129. {eodag-3.0.0b2 → eodag-3.0.0b3}/charts/eodag-server/templates/_helpers.tpl +0 -0
  130. {eodag-3.0.0b2 → eodag-3.0.0b3}/charts/eodag-server/templates/configmap.yaml +0 -0
  131. {eodag-3.0.0b2 → eodag-3.0.0b3}/charts/eodag-server/templates/deployment.yaml +0 -0
  132. {eodag-3.0.0b2 → eodag-3.0.0b3}/charts/eodag-server/templates/extra-list.yaml +0 -0
  133. {eodag-3.0.0b2 → eodag-3.0.0b3}/charts/eodag-server/templates/hpa.yaml +0 -0
  134. {eodag-3.0.0b2 → eodag-3.0.0b3}/charts/eodag-server/templates/ingress.yaml +0 -0
  135. {eodag-3.0.0b2 → eodag-3.0.0b3}/charts/eodag-server/templates/pv.yaml +0 -0
  136. {eodag-3.0.0b2 → eodag-3.0.0b3}/charts/eodag-server/templates/pvc.yaml +0 -0
  137. {eodag-3.0.0b2 → eodag-3.0.0b3}/charts/eodag-server/templates/secret.yaml +0 -0
  138. {eodag-3.0.0b2 → eodag-3.0.0b3}/charts/eodag-server/templates/service.yaml +0 -0
  139. {eodag-3.0.0b2 → eodag-3.0.0b3}/charts/eodag-server/templates/serviceaccount.yaml +0 -0
  140. {eodag-3.0.0b2 → eodag-3.0.0b3}/docker/run-stac-server.sh +0 -0
  141. {eodag-3.0.0b2 → eodag-3.0.0b3}/docker/stac-browser.dockerfile +0 -0
  142. {eodag-3.0.0b2 → eodag-3.0.0b3}/docker/stac-server.dockerfile +0 -0
  143. {eodag-3.0.0b2 → eodag-3.0.0b3}/docker-compose.yml +0 -0
  144. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/Makefile +0 -0
  145. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/_static/custom.css +0 -0
  146. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/_static/download_methods.png +0 -0
  147. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/_static/eodag_advanced_calls_graph.svg +0 -0
  148. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/_static/eodag_bycs.png +0 -0
  149. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/_static/eodag_fetch_product_types.png +0 -0
  150. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/_static/eodag_logo_160.png +0 -0
  151. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/_static/eodag_logo_160r.png +0 -0
  152. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/_static/eodag_main_calls_graph.svg +0 -0
  153. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/_static/eodag_overview.png +0 -0
  154. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/_static/eodag_stac_client.png +0 -0
  155. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/_static/eodag_stac_server.png +0 -0
  156. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/_static/favicon-32x32.png +0 -0
  157. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/_static/progress_1.png +0 -0
  158. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/_static/progress_1_none.png +0 -0
  159. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/_static/progress_2.png +0 -0
  160. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/_static/progress_2_none.png +0 -0
  161. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/_static/stac_browser_example.png +0 -0
  162. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/_static/stac_browser_example_600.png +0 -0
  163. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/api_reference/call_graphs.rst +0 -0
  164. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/api_reference/eoproduct.rst +0 -0
  165. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/api_reference/exceptions.rst +0 -0
  166. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/api_reference/index.rst +0 -0
  167. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/api_reference/utils.rst +0 -0
  168. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/api_user_guide.rst +0 -0
  169. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/changelog.rst +0 -0
  170. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/cli_user_guide.rst +0 -0
  171. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/contribute.rst +0 -0
  172. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/getting_started_guide/index.rst +0 -0
  173. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/getting_started_guide/overview.rst +0 -0
  174. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/getting_started_guide/product_storage_status.rst +0 -0
  175. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/getting_started_guide/product_types.rst +0 -0
  176. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/getting_started_guide/providers.rst +0 -0
  177. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/getting_started_guide/register.rst +0 -0
  178. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/getting_started_guide/side_projects.rst +0 -0
  179. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/make.bat +0 -0
  180. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/notebooks/api_user_guide/2_providers_products_available.ipynb +0 -0
  181. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/notebooks/api_user_guide/6_crunch.ipynb +0 -0
  182. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/notebooks/api_user_guide/data/crunch_search_results.geojson +0 -0
  183. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/notebooks/api_user_guide/data/download_search_results.geojson +0 -0
  184. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/notebooks/intro_notebooks.ipynb +0 -0
  185. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.cpg +0 -0
  186. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.dbf +0 -0
  187. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.prj +0 -0
  188. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.qix +0 -0
  189. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.qpj +0 -0
  190. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.shp +0 -0
  191. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.shx +0 -0
  192. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/notebooks/tutos/auxdata/sentinel2_tiling_grid_centroids.zip +0 -0
  193. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/notebooks/tutos/tuto_search_location_tile.ipynb +0 -0
  194. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/plugins.rst +0 -0
  195. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/stac.rst +0 -0
  196. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/stac_rest.rst +0 -0
  197. {eodag-3.0.0b2 → eodag-3.0.0b3}/docs/tutos.rst +0 -0
  198. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/api/__init__.py +0 -0
  199. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/cli.py +0 -0
  200. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/crunch.py +0 -0
  201. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/__init__.py +0 -0
  202. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/apis/__init__.py +0 -0
  203. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/authentication/__init__.py +0 -0
  204. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/authentication/base.py +0 -0
  205. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/authentication/generic.py +0 -0
  206. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/authentication/header.py +0 -0
  207. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/authentication/keycloak.py +0 -0
  208. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/authentication/oauth.py +0 -0
  209. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/authentication/qsauth.py +0 -0
  210. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/authentication/sas_auth.py +0 -0
  211. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/authentication/token_exchange.py +0 -0
  212. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/base.py +0 -0
  213. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/crunch/__init__.py +0 -0
  214. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/download/__init__.py +0 -0
  215. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/download/creodias_s3.py +0 -0
  216. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/plugins/search/csw.py +0 -0
  217. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/py.typed +0 -0
  218. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/resources/constraints/climate-dt.json +0 -0
  219. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/resources/constraints/extremes-dt.json +0 -0
  220. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/resources/locations_conf_template.yml +0 -0
  221. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/resources/shp/ne_110m_admin_0_map_units.VERSION.txt +0 -0
  222. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/resources/shp/ne_110m_admin_0_map_units.cpg +0 -0
  223. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/resources/shp/ne_110m_admin_0_map_units.dbf +0 -0
  224. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/resources/shp/ne_110m_admin_0_map_units.prj +0 -0
  225. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/resources/shp/ne_110m_admin_0_map_units.shp +0 -0
  226. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/resources/shp/ne_110m_admin_0_map_units.shx +0 -0
  227. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/resources/stac.yml +0 -0
  228. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/resources/stac_api.yml +0 -0
  229. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/resources/stac_provider.yml +0 -0
  230. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/rest/__init__.py +0 -0
  231. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/rest/cache.py +0 -0
  232. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/rest/config.py +0 -0
  233. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/rest/constants.py +0 -0
  234. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/rest/server.wsgi +0 -0
  235. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/rest/templates/README +0 -0
  236. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/rest/types/__init__.py +0 -0
  237. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/rest/types/collections_search.py +0 -0
  238. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/rest/utils/__init__.py +0 -0
  239. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/rest/utils/cql_evaluate.py +0 -0
  240. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/types/bbox.py +0 -0
  241. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/types/queryables.py +0 -0
  242. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/utils/exceptions.py +0 -0
  243. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag/utils/repr.py +0 -0
  244. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag.egg-info/dependency_links.txt +0 -0
  245. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag.egg-info/entry_points.txt +0 -0
  246. {eodag-3.0.0b2 → eodag-3.0.0b3}/eodag.egg-info/top_level.txt +0 -0
  247. {eodag-3.0.0b2 → eodag-3.0.0b3}/get_pypi_latest_version.sh +0 -0
  248. {eodag-3.0.0b2 → eodag-3.0.0b3}/pytest.ini +0 -0
  249. {eodag-3.0.0b2 → eodag-3.0.0b3}/readthedocs.yml +0 -0
  250. {eodag-3.0.0b2 → eodag-3.0.0b3}/requirements-dev.txt +0 -0
  251. {eodag-3.0.0b2 → eodag-3.0.0b3}/requirements-docs.txt +0 -0
  252. {eodag-3.0.0b2 → eodag-3.0.0b3}/requirements-tutorials.txt +0 -0
  253. {eodag-3.0.0b2 → eodag-3.0.0b3}/requirements.txt +0 -0
  254. {eodag-3.0.0b2 → eodag-3.0.0b3}/setup.py +0 -0
@@ -13,13 +13,13 @@ jobs:
13
13
 
14
14
  steps:
15
15
  - name: Checkout source
16
- uses: actions/checkout@v3
16
+ uses: actions/checkout@v4
17
17
  - name: Get history and tags for SCM versioning to work
18
18
  run: |
19
19
  git fetch --prune --unshallow
20
20
  git fetch --depth=1 origin +refs/tags/*:refs/tags/*
21
21
  - name: Set up Python 3.8
22
- uses: actions/setup-python@v4
22
+ uses: actions/setup-python@v5
23
23
  with:
24
24
  python-version: "3.8"
25
25
 
@@ -3,7 +3,7 @@ name: Fetch product types
3
3
  on:
4
4
  workflow_dispatch:
5
5
  push:
6
- branches: [master, develop]
6
+ branches: [develop]
7
7
  schedule:
8
8
  - cron: "0 6 * * *"
9
9
 
@@ -13,13 +13,13 @@ jobs:
13
13
  runs-on: ubuntu-latest
14
14
  steps:
15
15
  - name: Checkout the repo
16
- uses: actions/checkout@v3
16
+ uses: actions/checkout@v4
17
17
  - name: Get history and tags for SCM versioning to work
18
18
  run: |
19
19
  git fetch --prune --unshallow
20
20
  git fetch --depth=1 origin +refs/tags/*:refs/tags/*
21
21
  - name: Set up Python 3.8
22
- uses: actions/setup-python@v4
22
+ uses: actions/setup-python@v5
23
23
  with:
24
24
  python-version: "3.8"
25
25
  - name: Update pip
@@ -33,7 +33,7 @@ jobs:
33
33
  shell: bash
34
34
  run: echo "WEEK=$(date +'%V')" >> $GITHUB_OUTPUT
35
35
  - name: Pip cache
36
- uses: actions/cache@v3
36
+ uses: actions/cache@v4
37
37
  with:
38
38
  path: ${{ steps.pip-cache.outputs.DIR }}
39
39
  key: ${{ runner.os }}-pip-${{ steps.get-week.outputs.WEEK }}-${{ hashFiles('setup.cfg') }}
@@ -59,7 +59,7 @@ jobs:
59
59
  echo "commit [${COMMIT_SHA}](${COMMIT_URL})" >> $GITHUB_STEP_SUMMARY
60
60
  echo '```diff' >> $GITHUB_STEP_SUMMARY
61
61
  git show --name-only --format=tformat: >> $GITHUB_STEP_SUMMARY
62
- (diff <(curl ${JSON_REF_FILE} | jq --sort-keys) <(cat ${JSON_OUTPUT_FILE} | jq --sort-keys) || true) >> $GITHUB_STEP_SUMMARY
62
+ (diff <(curl ${JSON_REF_FILE}) <(cat ${JSON_OUTPUT_FILE}) || true) >> $GITHUB_STEP_SUMMARY
63
63
  echo '```' >> $GITHUB_STEP_SUMMARY
64
64
  # truncated PR body (too long causes error)
65
65
  full_update_summary=$(cat $GITHUB_STEP_SUMMARY)
@@ -15,17 +15,17 @@ jobs:
15
15
  runs-on: ubuntu-latest
16
16
  steps:
17
17
  - name: Checkout the repo
18
- uses: actions/checkout@v3
18
+ uses: actions/checkout@v4
19
19
  - name: Get history and tags for SCM versioning to work
20
20
  run: |
21
21
  git fetch --prune --unshallow
22
22
  git fetch --depth=1 origin +refs/tags/*:refs/tags/*
23
23
  - name: Set up Python 3.8
24
- uses: actions/setup-python@v4
24
+ uses: actions/setup-python@v5
25
25
  with:
26
26
  python-version: "3.8"
27
27
  - name: Run pre-commit action
28
- uses: pre-commit/action@v3.0.0
28
+ uses: pre-commit/action@v3.0.1
29
29
 
30
30
  tests:
31
31
  name: Test it!
@@ -36,13 +36,13 @@ jobs:
36
36
  os: [ubuntu-latest, windows-latest]
37
37
  steps:
38
38
  - name: Checkout the repo
39
- uses: actions/checkout@v3
39
+ uses: actions/checkout@v4
40
40
  - name: Get history and tags for SCM versioning to work
41
41
  run: |
42
42
  git fetch --prune --unshallow
43
43
  git fetch --depth=1 origin +refs/tags/*:refs/tags/*
44
44
  - name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}
45
- uses: actions/setup-python@v4
45
+ uses: actions/setup-python@v5
46
46
  with:
47
47
  python-version: ${{ matrix.python-version }}
48
48
  - name: Update pip
@@ -56,7 +56,7 @@ jobs:
56
56
  shell: bash
57
57
  run: echo "WEEK=$(date +'%V')" >> $GITHUB_OUTPUT
58
58
  - name: Pip cache
59
- uses: actions/cache@v3
59
+ uses: actions/cache@v4
60
60
  with:
61
61
  path: ${{ steps.pip-cache.outputs.DIR }}
62
62
  key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ steps.get-week.outputs.WEEK }}-${{ hashFiles('setup.cfg') }}
@@ -156,13 +156,13 @@ jobs:
156
156
  runs-on: ubuntu-latest
157
157
  steps:
158
158
  - name: Checkout the repo
159
- uses: actions/checkout@v3
159
+ uses: actions/checkout@v4
160
160
  - name: Get history and tags for SCM versioning to work
161
161
  run: |
162
162
  git fetch --prune --unshallow
163
163
  git fetch --depth=1 origin +refs/tags/*:refs/tags/*
164
164
  - name: Set up Python 3.8
165
- uses: actions/setup-python@v4
165
+ uses: actions/setup-python@v5
166
166
  with:
167
167
  python-version: "3.8"
168
168
  - name: Update pip
@@ -176,7 +176,7 @@ jobs:
176
176
  shell: bash
177
177
  run: echo "WEEK=$(date +'%V')" >> $GITHUB_OUTPUT
178
178
  - name: Pip cache
179
- uses: actions/cache@v3
179
+ uses: actions/cache@v4
180
180
  with:
181
181
  path: ${{ steps.pip-cache.outputs.DIR }}
182
182
  key: ${{ runner.os }}-pip-${{ steps.get-week.outputs.WEEK }}-${{ hashFiles('setup.cfg') }}
@@ -195,13 +195,13 @@ jobs:
195
195
  runs-on: ubuntu-latest
196
196
  steps:
197
197
  - name: Checkout the repo
198
- uses: actions/checkout@v3
198
+ uses: actions/checkout@v4
199
199
  - name: Get history and tags for SCM versioning to work
200
200
  run: |
201
201
  git fetch --prune --unshallow
202
202
  git fetch --depth=1 origin +refs/tags/*:refs/tags/*
203
203
  - name: Set up Python 3.8
204
- uses: actions/setup-python@v4
204
+ uses: actions/setup-python@v5
205
205
  with:
206
206
  python-version: "3.8"
207
207
  - name: Update pip
@@ -215,7 +215,7 @@ jobs:
215
215
  shell: bash
216
216
  run: echo "WEEK=$(date +'%V')" >> $GITHUB_OUTPUT
217
217
  - name: Pip cache
218
- uses: actions/cache@v3
218
+ uses: actions/cache@v4
219
219
  with:
220
220
  path: ${{ steps.pip-cache.outputs.DIR }}
221
221
  key: ${{ runner.os }}-pip-${{ steps.get-week.outputs.WEEK }}-${{ hashFiles('setup.cfg') }}
@@ -0,0 +1,58 @@
1
+ Breaking changes
2
+ ----------------
3
+
4
+ Full changelog available in `Release history <changelog.html>`_.
5
+
6
+ 3.0.0b3
7
+ +++++++
8
+
9
+ * :meth:`~eodag.api.core.EODataAccessGateway.download` / :class:`~eodag.types.download_args.DownloadConf` parameters
10
+ ``outputs_prefix`` and ``outputs_extension`` renamed to ``output_dir`` and ``output_extension``.
11
+
12
+ 3.0.0b1
13
+ +++++++
14
+
15
+ * :meth:`~eodag.api.core.EODataAccessGateway.search` method now returns only a
16
+ :class:`~eodag.api.search_result.SearchResult` instead of a 2 values tuple. It can optionally store the estimated
17
+ total number of products in ``SearchResult.number_matched`` if the method is called with ``count=True``
18
+ (``False`` by default).
19
+
20
+ * **eodag < 3.0.0b1 syntax:**
21
+
22
+ .. code-block:: python
23
+
24
+ search_results, number_matched = dag.search(productType="S2_MSI_L1C")
25
+
26
+ | Traceback (most recent call last):
27
+ | File "<stdin>", line 1, in <module>
28
+ | ValueError: too many values to unpack (expected 2)
29
+
30
+ * **eodag >= 3.0.0b1 syntax:**
31
+
32
+ .. code-block:: python
33
+
34
+ search_results = dag.search(productType="S2_MSI_L1C")
35
+
36
+ * Packaging refactoring and new `optional dependencies
37
+ <getting_started_guide/install.html#optional-dependencies>`_. EODAG default
38
+ installs with a minimal set of dependencies.
39
+ New sets of extra requirements are: ``eodag[all]``, ``eodag[all-providers]``, ``eodag[ecmwf]``, ``eodag[usgs]``,
40
+ ``eodag[csw]``, ``eodag[server]``, ``eodag[stubs]``. Previous existing sets of extra requirements are also kept:
41
+ ``eodag[notebook]``, ``eodag[tutorials]``, ``eodag[dev]``, ``eodag[docs]``.
42
+
43
+ .. code-block:: sh
44
+
45
+ # install eodag with all available providers supported
46
+ pip install "eodag[all-providers]"
47
+
48
+ 2.0b1
49
+ +++++
50
+
51
+ - STAC API compliant REST server
52
+ - Common configuration for STAC providers
53
+
54
+ 1.0
55
+ +++
56
+
57
+ - Adds product type search functionality
58
+ - The cli arguments are now fully compliant with opensearch geo(bbox)/time extensions
@@ -1,6 +1,50 @@
1
1
  Release history
2
2
  ---------------
3
3
 
4
+ 3.0.0b3 (2024-08-01)
5
+ ++++++++++++++++++++
6
+
7
+ Breaking changes
8
+ ^^^^^^^^^^^^^^^^
9
+
10
+ * :meth:`~eodag.api.core.EODataAccessGateway.download` / :class:`~eodag.types.download_args.DownloadConf` parameters
11
+ ``outputs_prefix`` and ``outputs_extension`` renamed to ``output_dir`` and ``output_extension`` (:pull:`1279`)
12
+
13
+ Core features and fixes
14
+ ^^^^^^^^^^^^^^^^^^^^^^^
15
+
16
+ * New :meth:`~eodag.api.core.EODataAccessGateway.add_provider` method (:pull:`1260`)
17
+ * Handle integers as ``locations`` shapefile attributes (:pull:`1280`)
18
+ * Renames some parameters and methods to snake_case (:pull:`1271`)
19
+ * Sorted discovered product types (:pull:`1250`)
20
+
21
+ Providers and product types updates
22
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
23
+
24
+ * Fixes ``usgs`` search by id (:pull:`1262`)
25
+ * Adds ``S1_SAR_GRD_COG`` and new odata query parameters for ``cop_dataspace`` (:pull:`1277`, thanks
26
+ `@ninsbl <https://github.com/ninsbl>`_)
27
+ * Adds ``GRIDDED_GLACIERS_MASS_CHANGE`` on provider ``cop_cds`` (:pull:`1255`)
28
+ * Removes ``cacheable`` parameter for ``wekeo`` order requests (:pull:`1239`)
29
+
30
+ Plugins new features and fixes
31
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
32
+
33
+ * ``aws_session_token`` support in :class:`~eodag.plugins.authentication.aws_auth.AwsAuth` (:pull:`1267`)
34
+ * :class:`~eodag.plugins.download.http.HTTPDownload` asset ``HEAD`` check and ``ssl_verify`` (:pull:`1266`)
35
+ * Product types discovery disabled by default on :class:`~eodag.plugins.search.static_stac_search.StaticStacSearch`
36
+ (:pull:`1259`)
37
+
38
+ Miscellaneous
39
+ ^^^^^^^^^^^^^
40
+
41
+ * **[style]** type hints fixes and ``mypy`` in ``tox`` (:pull:`1253`)(:pull:`1269`)
42
+ * **[docs]** v3 breaking changes (:pull:`1281`), :meth:`~eodag.api.core.EODataAccessGateway.download` kwargs
43
+ (:pull:`1282`), autosummary fixes (:pull:`1264`) and changelog update (:pull:`1254`)
44
+ * **[ci]** Github actions updates (:pull:`1249`)
45
+ * **[test]** Fixed end-to-end tests (:pull:`1236`)
46
+ * External product types reference updates (:pull:`1244`)(:pull:`1246`)(:pull:`1251`)
47
+
4
48
  3.0.0b2 (2024-06-29)
5
49
  ++++++++++++++++++++
6
50
 
@@ -41,6 +85,7 @@ Breaking changes
41
85
  Core features and fixes
42
86
  ^^^^^^^^^^^^^^^^^^^^^^^
43
87
 
88
+ * Search results sort feature (:pull:`943`)
44
89
  * Providers groups (:pull:`1071`)
45
90
  * Configurable download timeout (:pull:`1124`)
46
91
  * `Search by id <https://eodag.readthedocs.io/en/stable/notebooks/api_user_guide/4_search.html#id-and-provider>`_ now
@@ -51,10 +96,11 @@ Core features and fixes
51
96
  <https://eodag.readthedocs.io/en/stable/notebooks/api_user_guide/6_crunch.html#Filter-by-property>`_ (:pull:`1070`),
52
97
  mission dates filtering support (:pull:`1222`)
53
98
  * Configurable requests ``ssl_verify`` (:pull:`1045`)
99
+ * Download record hash independent from provider (:pull:`1023`)
54
100
  * Fixed and refactored `queryables` (:pull:`1050`)(:pull:`1097`)(:pull:`1102`)(:pull:`1157`), authentication fix
55
101
  (:pull:`1194`), support for local constraints files (:pull:`1105`)
56
102
  * Fixed `metadata mapping` in templates detection (:pull:`1139`), ``format_query_params()`` fixes (:pull:`1145`) and
57
- refactor (:pull:`1142`)
103
+ refactor (:pull:`1142`). Configurable assets filtering (:pull:`1033`).
58
104
 
59
105
  Providers and product types updates
60
106
  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -79,6 +125,7 @@ Providers and product types updates
79
125
  Plugins new features and fixes
80
126
  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
81
127
 
128
+ * Standardized download output tree (:pull:`746`)
82
129
  * Refactored search plugins methods to use ``PreparedSearch`` and ``RawSearchResult`` new classes (:pull:`1191`)
83
130
  * Refresh token for :class:`~eodag.plugins.authentication.openid_connect.OIDCAuthorizationCodeFlowAuth` plugin
84
131
  (:pull:`1138`), tests (:pull:`1135`), and fix (:pull:`1232`)
@@ -89,10 +136,12 @@ Plugins new features and fixes
89
136
  * Allow no auth for :class:`~eodag.plugins.download.http.HTTPDownload` download requests (:pull:`1196`)
90
137
  * Refactorization of ``Api`` base plugin that now inherits from ``Search`` and ``Download`` (:pull:`1051`)
91
138
  * ``orderLink`` support in `build_search_result.*` plugins (:pull:`1082`), and parsing fix (:pull:`1091`)
139
+ * Fixed resume interrupted assets download using :class:`~eodag.plugins.download.http.HTTPDownload` (:pull:`1017`)
92
140
 
93
141
  Server mode
94
142
  ^^^^^^^^^^^
95
143
 
144
+ * Server-mode rework and cql2 support (:pull:`966`)
96
145
  * Offline products order handling (:pull:`918`)
97
146
  * External enhanced product types metadata (:pull:`1008`)(:pull:`1171`)(:pull:`1176`)(:pull:`1180`)(:pull:`1197`)
98
147
  * Collections search using updated :meth:`~eodag.api.core.EODataAccessGateway.guess_product_type` (:pull:`909`)
@@ -115,15 +164,15 @@ Miscellaneous
115
164
  (:pull:`1079`)
116
165
  * **[build]** Remove ``requests-ftp`` (:pull:`1085`)
117
166
  * **[style]** type hints related fixes and refactoring (:pull:`1052`)
118
- * **[docs]** sphinx theme updated and removed jquery (:pull:`1054`), newlines between badges fixes (:pull:`1109`), and other
119
- documentation fixes and updates (:pull:`1057`)(:pull:`1059`)(:pull:`1062`)(:pull:`1063`)(:pull:`1081`)(:pull:`1121`)
120
- (:pull:`1122`)
167
+ * **[docs]** sphinx theme updated and removed jquery (:pull:`1054`), newlines between badges fixes (:pull:`1109`), and
168
+ other documentation fixes and updates (:pull:`1057`)(:pull:`1059`)(:pull:`1062`)(:pull:`1063`)(:pull:`1081`)
169
+ (:pull:`1121`)(:pull:`1122`)
121
170
  * **[ci]** Fetch product types Github action updates (:pull:`1202`)(:pull:`1205`)
122
171
  * Various minor fixes and improvements (:pull:`1072`)(:pull:`1077`)(:pull:`1101`)(:pull:`1111`)(:pull:`1118`)
123
172
  (:pull:`1132`)(:pull:`1141`)(:pull:`1190`)
124
- * External product types reference updates (:pull:`1086`)(:pull:`1093`)(:pull:`1107`)(:pull:`1110`)(:pull:`1114`)
125
- (:pull:`1136`)(:pull:`1137`)(:pull:`1140`)(:pull:`1146`)(:pull:`1151`)(:pull:`1153`)(:pull:`1160`)(:pull:`1165`)
126
- (:pull:`1203`)(:pull:`1204`)(:pull:`1206`)(:pull:`1207`)(:pull:`1208`)(:pull:`1229`)
173
+ * External product types reference updates (:pull:`1027`)(:pull:`1028`)(:pull:`1086`)(:pull:`1093`)(:pull:`1107`)
174
+ (:pull:`1110`)(:pull:`1114`)(:pull:`1136`)(:pull:`1137`)(:pull:`1140`)(:pull:`1146`)(:pull:`1151`)(:pull:`1153`)
175
+ (:pull:`1160`)(:pull:`1165`)(:pull:`1203`)(:pull:`1204`)(:pull:`1206`)(:pull:`1207`)(:pull:`1208`)(:pull:`1229`)
127
176
 
128
177
  2.12.1 (2024-03-05)
129
178
  +++++++++++++++++++
@@ -277,7 +326,7 @@ Miscellaneous
277
326
  * `Product types catalog\
278
327
  <https://eodag.readthedocs.io/en/latest/getting_started_guide/product_types.html#product-types-information-csv>`_
279
328
  more visible in documentation (:pull:`603`)
280
- * Metadata mapping `to_geo_interface()` renammed to `to_geojson()`
329
+ * Metadata mapping `to_geo_interface()` renamed to `to_geojson()`
281
330
  (`d7565a4 <https://github.com/CS-SI/eodag/pull/604/commits/d7565a4984d356aca20310a87c02692cb879427e>`_)
282
331
  * Added support for `python3.11` (:pull:`552`)
283
332
  * Improved http asset size discovery in :class:`~eodag.plugins.download.http.HTTPDownload` (:pull:`566`)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: eodag
3
- Version: 3.0.0b2
3
+ Version: 3.0.0b3
4
4
  Summary: Earth Observation Data Access Gateway
5
5
  Home-page: https://github.com/CS-SI/eodag
6
6
  Author: CS GROUP - France
@@ -27,6 +27,7 @@ Classifier: Programming Language :: Python :: Implementation :: CPython
27
27
  Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
28
28
  Classifier: Topic :: Scientific/Engineering :: GIS
29
29
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
30
+ Classifier: Typing :: Typed
30
31
  Requires-Python: >=3.6
31
32
  Description-Content-Type: text/x-rst
32
33
  License-File: LICENSE
@@ -74,7 +75,7 @@ Requires-Dist: cachetools; extra == "server"
74
75
  Provides-Extra: notebook
75
76
  Requires-Dist: tqdm[notebook]; extra == "notebook"
76
77
  Provides-Extra: tutorials
77
- Requires-Dist: eodag[notebook]; extra == "tutorials"
78
+ Requires-Dist: eodag[ecmwf,notebook]; extra == "tutorials"
78
79
  Requires-Dist: eodag-cube>=0.2.0; extra == "tutorials"
79
80
  Requires-Dist: jupyter; extra == "tutorials"
80
81
  Requires-Dist: ipyleaflet>=0.10.0; extra == "tutorials"
@@ -85,7 +86,7 @@ Requires-Dist: imageio; extra == "tutorials"
85
86
  Requires-Dist: rasterio; extra == "tutorials"
86
87
  Requires-Dist: netcdf4; extra == "tutorials"
87
88
  Provides-Extra: dev
88
- Requires-Dist: eodag[all-providers,csw,server]; extra == "dev"
89
+ Requires-Dist: eodag[all-providers,csw,server,stubs]; extra == "dev"
89
90
  Requires-Dist: pytest; extra == "dev"
90
91
  Requires-Dist: pytest-cov; extra == "dev"
91
92
  Requires-Dist: py>=1.8.2; extra == "dev"
@@ -103,15 +104,23 @@ Requires-Dist: pre-commit; extra == "dev"
103
104
  Requires-Dist: responses<0.24.0; extra == "dev"
104
105
  Requires-Dist: fastapi[all]; extra == "dev"
105
106
  Requires-Dist: stdlib-list; extra == "dev"
106
- Requires-Dist: boto3-stubs[essential]; extra == "dev"
107
- Requires-Dist: types-lxml; extra == "dev"
107
+ Requires-Dist: mypy; extra == "dev"
108
+ Provides-Extra: stubs
109
+ Requires-Dist: boto3-stubs[essential]; extra == "stubs"
110
+ Requires-Dist: types-lxml; extra == "stubs"
111
+ Requires-Dist: types-cachetools; extra == "stubs"
112
+ Requires-Dist: types-requests; extra == "stubs"
113
+ Requires-Dist: types-python-dateutil; extra == "stubs"
114
+ Requires-Dist: types-setuptools; extra == "stubs"
115
+ Requires-Dist: types-tqdm; extra == "stubs"
108
116
  Provides-Extra: docs
109
- Requires-Dist: eodag[all]; extra == "docs"
117
+ Requires-Dist: eodag[all,stubs]; extra == "docs"
110
118
  Requires-Dist: sphinx; extra == "docs"
111
- Requires-Dist: sphinx-book-theme; extra == "docs"
119
+ Requires-Dist: sphinx-book-theme>=1.0.0; extra == "docs"
112
120
  Requires-Dist: sphinx-copybutton; extra == "docs"
113
121
  Requires-Dist: sphinx-tabs; extra == "docs"
114
122
  Requires-Dist: nbsphinx; extra == "docs"
123
+ Requires-Dist: sphinx_autodoc_typehints; extra == "docs"
115
124
 
116
125
  .. image:: https://eodag.readthedocs.io/en/latest/_static/eodag_bycs.png
117
126
  :target: https://github.com/CS-SI/eodag
@@ -138,8 +147,6 @@ Requires-Dist: nbsphinx; extra == "docs"
138
147
 
139
148
  |pypi-badge| |conda-badge| |rtd-badge| |gha-badge| |ghi-badge| |binder-badge|
140
149
 
141
- |
142
-
143
150
  .. |license-badge| image:: https://img.shields.io/pypi/l/eodag.svg
144
151
  :target: https://pypi.org/project/eodag/
145
152
 
@@ -199,8 +206,14 @@ And with ``conda`` from the `conda-forge channel <https://anaconda.org/conda-for
199
206
 
200
207
  conda install -c conda-forge eodag
201
208
 
202
- **[New in v3.0.0]** Please note that EODAG comes with a minimal set of dependencies. If you want more features, please install using one of
203
- the `available extras <https://eodag.readthedocs.io/en/latest/getting_started_guide/install.html#optional-dependencies>`_.
209
+ ..
210
+
211
+ [!IMPORTANT]
212
+
213
+ `Breaking change <https://eodag.readthedocs.io/en/latest/breaking_changes.html>`_ **in v3.0.0**:
214
+ Please note that EODAG
215
+ comes with a minimal set of dependencies. If you want more features, please install using one of the
216
+ `available extras <https://eodag.readthedocs.io/en/latest/getting_started_guide/install.html#optional-dependencies>`_.
204
217
 
205
218
  Usage
206
219
  =====
@@ -234,8 +247,13 @@ This will search for Sentinel 2 level-1C products on the default provider and re
234
247
  an estimated total number of products matching the search criteria. And then it will download these products. Please
235
248
  check the `Python API User Guide <https://eodag.readthedocs.io/en/latest/api_user_guide.html>`_ for more details.
236
249
 
237
- **[New in v3.0.0]** `search() <https://eodag.readthedocs.io/en/latest/notebooks/api_user_guide/4_search.html#search()>`_
238
- method now returns only a single ``SearchResult`` instead of a 2 values tuple.
250
+ ..
251
+
252
+ [!IMPORTANT]
253
+
254
+ `Breaking change <https://eodag.readthedocs.io/en/latest/breaking_changes.html>`_ **in v3.0.0**:
255
+ `search() <https://eodag.readthedocs.io/en/latest/api_reference/core.html#eodag.api.core.EODataAccessGateway.search>`_ method now returns
256
+ only a single ``SearchResult`` instead of a 2 values tuple.
239
257
 
240
258
  STAC REST API
241
259
  -------------
@@ -298,7 +316,7 @@ An eodag instance can be exposed through a STAC compliant REST api from the comm
298
316
 
299
317
  .. code-block:: bash
300
318
 
301
- docker run -p 5000:5000 --rm csspace/eodag-server:3.0.0b2
319
+ docker run -p 5000:5000 --rm csspace/eodag-server:3.0.0b3
302
320
 
303
321
  You can also browse over your STAC API server using `STAC Browser <https://github.com/radiantearth/stac-browser>`_.
304
322
  Simply run:
@@ -23,8 +23,6 @@
23
23
 
24
24
  |pypi-badge| |conda-badge| |rtd-badge| |gha-badge| |ghi-badge| |binder-badge|
25
25
 
26
- |
27
-
28
26
  .. |license-badge| image:: https://img.shields.io/pypi/l/eodag.svg
29
27
  :target: https://pypi.org/project/eodag/
30
28
 
@@ -84,8 +82,14 @@ And with ``conda`` from the `conda-forge channel <https://anaconda.org/conda-for
84
82
 
85
83
  conda install -c conda-forge eodag
86
84
 
87
- **[New in v3.0.0]** Please note that EODAG comes with a minimal set of dependencies. If you want more features, please install using one of
88
- the `available extras <https://eodag.readthedocs.io/en/latest/getting_started_guide/install.html#optional-dependencies>`_.
85
+ ..
86
+
87
+ [!IMPORTANT]
88
+
89
+ `Breaking change <https://eodag.readthedocs.io/en/latest/breaking_changes.html>`_ **in v3.0.0**:
90
+ Please note that EODAG
91
+ comes with a minimal set of dependencies. If you want more features, please install using one of the
92
+ `available extras <https://eodag.readthedocs.io/en/latest/getting_started_guide/install.html#optional-dependencies>`_.
89
93
 
90
94
  Usage
91
95
  =====
@@ -119,8 +123,13 @@ This will search for Sentinel 2 level-1C products on the default provider and re
119
123
  an estimated total number of products matching the search criteria. And then it will download these products. Please
120
124
  check the `Python API User Guide <https://eodag.readthedocs.io/en/latest/api_user_guide.html>`_ for more details.
121
125
 
122
- **[New in v3.0.0]** `search() <https://eodag.readthedocs.io/en/latest/notebooks/api_user_guide/4_search.html#search()>`_
123
- method now returns only a single ``SearchResult`` instead of a 2 values tuple.
126
+ ..
127
+
128
+ [!IMPORTANT]
129
+
130
+ `Breaking change <https://eodag.readthedocs.io/en/latest/breaking_changes.html>`_ **in v3.0.0**:
131
+ `search() <https://eodag.readthedocs.io/en/latest/api_reference/core.html#eodag.api.core.EODataAccessGateway.search>`_ method now returns
132
+ only a single ``SearchResult`` instead of a 2 values tuple.
124
133
 
125
134
  STAC REST API
126
135
  -------------
@@ -183,7 +192,7 @@ An eodag instance can be exposed through a STAC compliant REST api from the comm
183
192
 
184
193
  .. code-block:: bash
185
194
 
186
- docker run -p 5000:5000 --rm csspace/eodag-server:3.0.0b2
195
+ docker run -p 5000:5000 --rm csspace/eodag-server:3.0.0b3
187
196
 
188
197
  You can also browse over your STAC API server using `STAC Browser <https://github.com/radiantearth/stac-browser>`_.
189
198
  Simply run:
@@ -1,5 +1,5 @@
1
1
  apiVersion: v2
2
- appVersion: 3.0.0b2
2
+ appVersion: 3.0.0b3
3
3
  dependencies:
4
4
  - name: common
5
5
  repository: oci://registry-1.docker.io/bitnamicharts
@@ -15,4 +15,4 @@ name: eodag-server
15
15
  sources:
16
16
  - https://github.com/CS-SI/eodag
17
17
  type: application
18
- version: 3.0.0b2
18
+ version: 3.0.0b3
@@ -455,13 +455,13 @@ providers: ""
455
455
  # # see also https://dds.cr.usgs.gov/ee-data/coveragemaps/shp/ee/
456
456
  # LANDSAT_C2L1:
457
457
  # dataset: landsat_ot_c2_l1
458
- # outputs_extension: .tar.gz
458
+ # output_extension: .tar.gz
459
459
  # LANDSAT_C2L2:
460
460
  # dataset: landsat_ot_c2_l2
461
- # outputs_extension: .tar.gz
461
+ # output_extension: .tar.gz
462
462
  # S2_MSI_L1C:
463
463
  # dataset: SENTINEL_2A
464
- # outputs_extension: .zip
464
+ # output_extension: .zip
465
465
  # GENERIC_PRODUCT_TYPE:
466
466
  # dataset: '{productType}'
467
467
 
@@ -474,7 +474,7 @@ config:
474
474
  # search: # Search parameters configuration
475
475
  # download:
476
476
  # extract: # whether to extract the downloaded products, only applies to archived products (true or false, Default: true).
477
- # outputs_prefix: # where to store downloaded products, as an absolute file path (Default: local temporary directory)
477
+ # output_dir: # where to store downloaded products, as an absolute file path (Default: local temporary directory)
478
478
  # dl_url_params: # additional parameters to pass over to the download url as an url parameter
479
479
  # delete_archive: # whether to delete the downloaded archives (true or false, Default: true).
480
480
  # auth:
@@ -484,7 +484,7 @@ config:
484
484
  # usgs:
485
485
  # priority: # Lower value means lower priority (Default: 0)
486
486
  # api:
487
- # outputs_prefix:
487
+ # output_dir:
488
488
  # credentials:
489
489
  # username:
490
490
  # password:
@@ -493,7 +493,7 @@ config:
493
493
  # search: # Search parameters configuration
494
494
  # download:
495
495
  # extract:
496
- # outputs_prefix:
496
+ # output_dir:
497
497
  # auth:
498
498
  # credentials:
499
499
  # username:
@@ -69,6 +69,8 @@ method,,:green:`queryable metadata`,:green:`queryable metadata`,,,,,,,,,,,,,,,
69
69
  model,,:green:`queryable metadata`,,,,,:green:`queryable metadata`,,,,,,,,,,,
70
70
  model_level,,:green:`queryable metadata`,,,,,,,,,,,,,,,,
71
71
  model_levels,,,:green:`queryable metadata`,,,,,,,,,,,,,,,
72
+ modifiedAfter,,,,:green:`queryable metadata`,,,,,,,,,,,,,,
73
+ modifiedBefore,,,,:green:`queryable metadata`,,,,,,,,,,,,,,
72
74
  month,,:green:`queryable metadata`,:green:`queryable metadata`,,,,,,,,,,,,,,,
73
75
  number,,:green:`queryable metadata`,:green:`queryable metadata`,,,,,,,,,,,,,,,
74
76
  obsgroup,,:green:`queryable metadata`,:green:`queryable metadata`,,,,,,,,,,,,,,,
@@ -89,6 +91,9 @@ processing_type,,,:green:`queryable metadata`,,,,,,,,,,,,,,,
89
91
  product,,:green:`queryable metadata`,:green:`queryable metadata`,,,,,,,,,,,,,,,
90
92
  productIdentifier,,,,metadata only,,metadata only,,,,,,,,,,,,
91
93
  productInformation,,,,,,,,,,,,metadata only,,,,,,
94
+ product_version,,,:green:`queryable metadata`,,,,,,,,,,,,,,,
95
+ publishedAfter,,,,:green:`queryable metadata`,,,,,,,,,,,,,,
96
+ publishedBefore,,,,:green:`queryable metadata`,,,,,,,,,,,,,,
92
97
  qs,,metadata only,metadata only,,,,metadata only,,,,,,,,,,,
93
98
  quantity,,:green:`queryable metadata`,,,,,,,,,,,,,,,,
94
99
  quicklook,metadata only,,,metadata only,,metadata only,,metadata only,metadata only,metadata only,,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only
@@ -98,7 +103,7 @@ realization,,,,,,,:green:`queryable metadata`,,,,,,,,,,,
98
103
  refdate,,:green:`queryable metadata`,:green:`queryable metadata`,,,,,,,,,,,,,,,
99
104
  reference,,:green:`queryable metadata`,:green:`queryable metadata`,,,,,,,,,,,,,,,
100
105
  region,,,:green:`queryable metadata`,,,,,,,,,,,,,,,
101
- relativeOrbitNumber,,,,,,,,,,,,:green:`queryable metadata`,,,,,,
106
+ relativeOrbitNumber,,,,:green:`queryable metadata`,,,,,,,,:green:`queryable metadata`,,,,,,
102
107
  reportype,,:green:`queryable metadata`,:green:`queryable metadata`,,,,,,,,,,,,,,,
103
108
  repres,,:green:`queryable metadata`,:green:`queryable metadata`,,,,,,,,,,,,,,,
104
109
  resol,,:green:`queryable metadata`,:green:`queryable metadata`,,,,,,,,,,,,,,,