eodag 2.12.1__tar.gz → 3.0.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 (290) hide show
  1. {eodag-2.12.1 → eodag-3.0.0}/.github/workflows/deploy.yml +5 -6
  2. {eodag-2.12.1 → eodag-3.0.0}/.github/workflows/fetch.yml +10 -11
  3. eodag-3.0.0/.github/workflows/github-pages.yml +38 -0
  4. {eodag-2.12.1 → eodag-3.0.0}/.github/workflows/test.yml +45 -32
  5. eodag-3.0.0/BREAKING_CHANGES.rst +58 -0
  6. {eodag-2.12.1 → eodag-3.0.0}/CHANGES.rst +424 -146
  7. {eodag-2.12.1 → eodag-3.0.0}/NOTICE +5 -2
  8. {eodag-2.12.1/eodag.egg-info → eodag-3.0.0}/PKG-INFO +100 -65
  9. {eodag-2.12.1 → eodag-3.0.0}/README.rst +34 -20
  10. eodag-3.0.0/charts/eodag-server/Chart.lock +6 -0
  11. {eodag-2.12.1 → eodag-3.0.0}/charts/eodag-server/Chart.yaml +3 -3
  12. {eodag-2.12.1 → eodag-3.0.0}/charts/eodag-server/README.md +5 -2
  13. eodag-3.0.0/charts/eodag-server/templates/hpa.yaml +48 -0
  14. {eodag-2.12.1 → eodag-3.0.0}/charts/eodag-server/values.yaml +21 -7
  15. {eodag-2.12.1 → eodag-3.0.0}/docker/stac-server.dockerfile +1 -1
  16. {eodag-2.12.1 → eodag-3.0.0}/docs/_static/custom.css +37 -0
  17. eodag-3.0.0/docs/_static/eodag_logo_160.png +0 -0
  18. eodag-3.0.0/docs/_static/eodag_logo_160r.png +0 -0
  19. eodag-3.0.0/docs/_static/params_mapping_extra.csv +106 -0
  20. eodag-3.0.0/docs/_static/params_mapping_offline_infos.json +1 -0
  21. eodag-3.0.0/docs/_static/params_mapping_opensearch.csv +47 -0
  22. {eodag-2.12.1 → eodag-3.0.0}/docs/_static/product_types_information.csv +235 -169
  23. eodag-3.0.0/docs/_static/stac_browser_example.png +0 -0
  24. eodag-3.0.0/docs/_static/stac_browser_example_600.png +0 -0
  25. {eodag-2.12.1 → eodag-3.0.0}/docs/add_provider.rst +63 -52
  26. {eodag-2.12.1 → eodag-3.0.0}/docs/api_reference/core.rst +4 -9
  27. {eodag-2.12.1 → eodag-3.0.0}/docs/api_reference/searchresult.rst +2 -0
  28. {eodag-2.12.1 → eodag-3.0.0}/docs/api_reference/types.rst +3 -0
  29. eodag-3.0.0/docs/breaking_changes.rst +3 -0
  30. {eodag-2.12.1 → eodag-3.0.0}/docs/conf.py +58 -25
  31. {eodag-2.12.1 → eodag-3.0.0}/docs/getting_started_guide/configure.rst +6 -6
  32. {eodag-2.12.1 → eodag-3.0.0}/docs/getting_started_guide/index.rst +1 -1
  33. eodag-3.0.0/docs/getting_started_guide/install.rst +67 -0
  34. {eodag-2.12.1 → eodag-3.0.0}/docs/getting_started_guide/providers.rst +21 -18
  35. eodag-3.0.0/docs/getting_started_guide/register.rst +245 -0
  36. {eodag-2.12.1 → eodag-3.0.0}/docs/index.rst +31 -11
  37. eodag-3.0.0/docs/notebooks/api_user_guide/1_overview.ipynb +923 -0
  38. {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/api_user_guide/2_providers_products_available.ipynb +162 -66
  39. {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/api_user_guide/3_configuration.ipynb +72 -36
  40. {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/api_user_guide/4_search.ipynb +1055 -574
  41. eodag-3.0.0/docs/notebooks/api_user_guide/5_serialize_deserialize.ipynb +3758 -0
  42. {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/api_user_guide/6_crunch.ipynb +1 -1
  43. eodag-3.0.0/docs/notebooks/api_user_guide/7_download.ipynb +1839 -0
  44. eodag-3.0.0/docs/notebooks/api_user_guide/8_post_process.ipynb +986 -0
  45. eodag-3.0.0/docs/notebooks/api_user_guide/data/download_search_results.geojson +1 -0
  46. {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/tutos/tuto_burnt_areas_snappy.ipynb +3 -3
  47. eodag-3.0.0/docs/notebooks/tutos/tuto_cds.ipynb +871 -0
  48. {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/tutos/tuto_cop_dem.ipynb +29 -29
  49. eodag-3.0.0/docs/notebooks/tutos/tuto_ecmwf.ipynb +782 -0
  50. {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/tutos/tuto_meteoblue.ipynb +4 -4
  51. {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/tutos/tuto_search_location_tile.ipynb +1 -1
  52. {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/tutos/tuto_ship_detection.ipynb +2 -2
  53. eodag-3.0.0/docs/notebooks/tutos/tuto_stac_client.ipynb +24880 -0
  54. eodag-3.0.0/docs/notebooks/tutos/tuto_wekeo.ipynb +389 -0
  55. eodag-3.0.0/docs/params_mapping.rst +78 -0
  56. eodag-3.0.0/docs/plugins.rst +265 -0
  57. {eodag-2.12.1 → eodag-3.0.0}/docs/plugins_reference/api.rst +2 -3
  58. eodag-3.0.0/docs/plugins_reference/auth.rst +33 -0
  59. {eodag-2.12.1 → eodag-3.0.0}/docs/plugins_reference/crunch.rst +5 -5
  60. {eodag-2.12.1 → eodag-3.0.0}/docs/plugins_reference/download.rst +4 -3
  61. eodag-3.0.0/docs/plugins_reference/search.rst +28 -0
  62. {eodag-2.12.1 → eodag-3.0.0}/docs/stac_rest.rst +20 -25
  63. {eodag-2.12.1 → eodag-3.0.0}/eodag/__init__.py +6 -8
  64. {eodag-2.12.1 → eodag-3.0.0}/eodag/api/core.py +654 -538
  65. eodag-3.0.0/eodag/api/product/__init__.py +32 -0
  66. {eodag-2.12.1 → eodag-3.0.0}/eodag/api/product/_assets.py +59 -16
  67. {eodag-2.12.1 → eodag-3.0.0}/eodag/api/product/_product.py +100 -93
  68. {eodag-2.12.1 → eodag-3.0.0}/eodag/api/product/drivers/__init__.py +7 -2
  69. {eodag-2.12.1 → eodag-3.0.0}/eodag/api/product/drivers/base.py +0 -3
  70. {eodag-2.12.1 → eodag-3.0.0}/eodag/api/product/metadata_mapping.py +192 -96
  71. {eodag-2.12.1 → eodag-3.0.0}/eodag/api/search_result.py +69 -10
  72. {eodag-2.12.1 → eodag-3.0.0}/eodag/cli.py +55 -25
  73. eodag-3.0.0/eodag/config.py +939 -0
  74. eodag-3.0.0/eodag/plugins/apis/base.py +55 -0
  75. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/apis/ecmwf.py +36 -25
  76. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/apis/usgs.py +80 -35
  77. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/authentication/aws_auth.py +13 -4
  78. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/authentication/base.py +10 -1
  79. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/authentication/generic.py +2 -2
  80. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/authentication/header.py +31 -6
  81. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/authentication/keycloak.py +17 -84
  82. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/authentication/oauth.py +3 -3
  83. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/authentication/openid_connect.py +268 -49
  84. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/authentication/qsauth.py +4 -1
  85. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/authentication/sas_auth.py +9 -2
  86. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/authentication/token.py +98 -47
  87. eodag-3.0.0/eodag/plugins/authentication/token_exchange.py +122 -0
  88. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/crunch/base.py +3 -1
  89. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/crunch/filter_date.py +3 -9
  90. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/crunch/filter_latest_intersect.py +0 -3
  91. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/crunch/filter_latest_tpl_name.py +1 -4
  92. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/crunch/filter_overlap.py +4 -8
  93. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/crunch/filter_property.py +5 -11
  94. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/download/aws.py +149 -185
  95. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/download/base.py +88 -97
  96. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/download/creodias_s3.py +1 -1
  97. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/download/http.py +638 -310
  98. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/download/s3rest.py +47 -45
  99. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/manager.py +228 -88
  100. eodag-3.0.0/eodag/plugins/search/__init__.py +54 -0
  101. eodag-3.0.0/eodag/plugins/search/base.py +392 -0
  102. eodag-3.0.0/eodag/plugins/search/build_search_result.py +539 -0
  103. eodag-3.0.0/eodag/plugins/search/cop_marine.py +441 -0
  104. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/search/creodias_s3.py +25 -20
  105. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/search/csw.py +5 -7
  106. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/search/data_request_search.py +61 -30
  107. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/search/qssearch.py +713 -255
  108. eodag-3.0.0/eodag/plugins/search/static_stac_search.py +223 -0
  109. eodag-3.0.0/eodag/resources/ext_product_types.json +1 -0
  110. {eodag-2.12.1 → eodag-3.0.0}/eodag/resources/product_types.yml +1921 -34
  111. eodag-3.0.0/eodag/resources/providers.yml +7509 -0
  112. {eodag-2.12.1 → eodag-3.0.0}/eodag/resources/stac.yml +50 -216
  113. {eodag-2.12.1 → eodag-3.0.0}/eodag/resources/stac_api.yml +71 -25
  114. {eodag-2.12.1 → eodag-3.0.0}/eodag/resources/stac_provider.yml +5 -0
  115. {eodag-2.12.1 → eodag-3.0.0}/eodag/resources/user_conf_template.yml +89 -32
  116. {eodag-2.12.1/eodag/api/product → eodag-3.0.0/eodag/rest}/__init__.py +5 -3
  117. eodag-3.0.0/eodag/rest/cache.py +70 -0
  118. eodag-3.0.0/eodag/rest/config.py +68 -0
  119. eodag-3.0.0/eodag/rest/constants.py +26 -0
  120. eodag-3.0.0/eodag/rest/core.py +735 -0
  121. eodag-3.0.0/eodag/rest/errors.py +178 -0
  122. eodag-3.0.0/eodag/rest/server.py +573 -0
  123. eodag-3.0.0/eodag/rest/stac.py +1004 -0
  124. eodag-3.0.0/eodag/rest/types/collections_search.py +44 -0
  125. eodag-3.0.0/eodag/rest/types/eodag_search.py +380 -0
  126. eodag-3.0.0/eodag/rest/types/queryables.py +164 -0
  127. eodag-3.0.0/eodag/rest/types/stac_search.py +273 -0
  128. eodag-3.0.0/eodag/rest/utils/__init__.py +216 -0
  129. eodag-3.0.0/eodag/rest/utils/cql_evaluate.py +119 -0
  130. eodag-3.0.0/eodag/rest/utils/rfc3339.py +64 -0
  131. {eodag-2.12.1 → eodag-3.0.0}/eodag/types/__init__.py +106 -10
  132. {eodag-2.12.1 → eodag-3.0.0}/eodag/types/bbox.py +15 -14
  133. eodag-3.0.0/eodag/types/download_args.py +40 -0
  134. eodag-3.0.0/eodag/types/search_args.py +133 -0
  135. eodag-3.0.0/eodag/types/whoosh.py +79 -0
  136. {eodag-2.12.1 → eodag-3.0.0}/eodag/utils/__init__.py +110 -91
  137. {eodag-2.12.1 → eodag-3.0.0}/eodag/utils/constraints.py +37 -45
  138. {eodag-2.12.1 → eodag-3.0.0}/eodag/utils/exceptions.py +39 -22
  139. {eodag-2.12.1 → eodag-3.0.0}/eodag/utils/import_system.py +0 -4
  140. eodag-3.0.0/eodag/utils/logging.py +120 -0
  141. {eodag-2.12.1 → eodag-3.0.0}/eodag/utils/notebook.py +4 -4
  142. eodag-3.0.0/eodag/utils/repr.py +113 -0
  143. eodag-3.0.0/eodag/utils/requests.py +128 -0
  144. eodag-3.0.0/eodag/utils/rest.py +100 -0
  145. {eodag-2.12.1 → eodag-3.0.0}/eodag/utils/stac_reader.py +93 -21
  146. {eodag-2.12.1 → eodag-3.0.0/eodag.egg-info}/PKG-INFO +100 -65
  147. {eodag-2.12.1 → eodag-3.0.0}/eodag.egg-info/SOURCES.txt +25 -5
  148. {eodag-2.12.1 → eodag-3.0.0}/eodag.egg-info/entry_points.txt +7 -5
  149. eodag-3.0.0/eodag.egg-info/requires.txt +106 -0
  150. {eodag-2.12.1 → eodag-3.0.0}/pyproject.toml +12 -7
  151. {eodag-2.12.1 → eodag-3.0.0}/setup.cfg +71 -48
  152. {eodag-2.12.1 → eodag-3.0.0}/tox.ini +3 -3
  153. {eodag-2.12.1 → eodag-3.0.0}/utils/params_mapping_to_csv.py +0 -3
  154. {eodag-2.12.1 → eodag-3.0.0}/utils/product_types_information_to_csv.py +0 -1
  155. eodag-2.12.1/charts/eodag-server/Chart.lock +0 -6
  156. eodag-2.12.1/docs/_static/eodag_logo.png +0 -0
  157. eodag-2.12.1/docs/_static/params_mapping_extra.csv +0 -17
  158. eodag-2.12.1/docs/_static/params_mapping_offline_infos.json +0 -1
  159. eodag-2.12.1/docs/_static/params_mapping_opensearch.csv +0 -47
  160. eodag-2.12.1/docs/_static/product_types.js +0 -213
  161. eodag-2.12.1/docs/_static/stac_browser_example.png +0 -0
  162. eodag-2.12.1/docs/_static/stac_browser_example_600.png +0 -0
  163. eodag-2.12.1/docs/getting_started_guide/install.rst +0 -43
  164. eodag-2.12.1/docs/getting_started_guide/register.rst +0 -134
  165. eodag-2.12.1/docs/notebooks/api_user_guide/1_overview.ipynb +0 -1082
  166. eodag-2.12.1/docs/notebooks/api_user_guide/5_serialize_deserialize.ipynb +0 -311
  167. eodag-2.12.1/docs/notebooks/api_user_guide/7_download.ipynb +0 -1588
  168. eodag-2.12.1/docs/notebooks/api_user_guide/8_post_process.ipynb +0 -931
  169. eodag-2.12.1/docs/notebooks/api_user_guide/data/download_search_results.geojson +0 -1
  170. eodag-2.12.1/docs/notebooks/tutos/tuto_cds.ipynb +0 -688
  171. eodag-2.12.1/docs/notebooks/tutos/tuto_ecmwf.ipynb +0 -748
  172. eodag-2.12.1/docs/notebooks/tutos/tuto_stac_client.ipynb +0 -1175
  173. eodag-2.12.1/docs/notebooks/tutos/tuto_wekeo.ipynb +0 -277
  174. eodag-2.12.1/docs/plugins.rst +0 -194
  175. eodag-2.12.1/docs/plugins_reference/auth.rst +0 -24
  176. eodag-2.12.1/docs/plugins_reference/search.rst +0 -24
  177. eodag-2.12.1/eodag/config.py +0 -664
  178. eodag-2.12.1/eodag/plugins/apis/base.py +0 -212
  179. eodag-2.12.1/eodag/plugins/apis/cds.py +0 -540
  180. eodag-2.12.1/eodag/plugins/search/__init__.py +0 -18
  181. eodag-2.12.1/eodag/plugins/search/base.py +0 -183
  182. eodag-2.12.1/eodag/plugins/search/build_search_result.py +0 -194
  183. eodag-2.12.1/eodag/plugins/search/static_stac_search.py +0 -157
  184. eodag-2.12.1/eodag/resources/ext_product_types.json +0 -1
  185. eodag-2.12.1/eodag/resources/providers.yml +0 -7073
  186. eodag-2.12.1/eodag/rest/__init__.py +0 -18
  187. eodag-2.12.1/eodag/rest/server.py +0 -740
  188. eodag-2.12.1/eodag/rest/stac.py +0 -1398
  189. eodag-2.12.1/eodag/rest/types/eodag_search.py +0 -189
  190. eodag-2.12.1/eodag/rest/types/stac_queryables.py +0 -134
  191. eodag-2.12.1/eodag/rest/utils.py +0 -1133
  192. eodag-2.12.1/eodag/types/search_args.py +0 -83
  193. eodag-2.12.1/eodag/utils/logging.py +0 -163
  194. eodag-2.12.1/eodag.egg-info/requires.txt +0 -75
  195. {eodag-2.12.1 → eodag-3.0.0}/.dockerignore +0 -0
  196. {eodag-2.12.1 → eodag-3.0.0}/.editorconfig +0 -0
  197. {eodag-2.12.1 → eodag-3.0.0}/.gitattributes +0 -0
  198. {eodag-2.12.1 → eodag-3.0.0}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  199. {eodag-2.12.1 → eodag-3.0.0}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  200. {eodag-2.12.1 → eodag-3.0.0}/.github/pull_request_template.md +0 -0
  201. {eodag-2.12.1 → eodag-3.0.0}/.gitignore +0 -0
  202. {eodag-2.12.1 → eodag-3.0.0}/.pre-commit-config.yaml +0 -0
  203. {eodag-2.12.1 → eodag-3.0.0}/CODE_OF_CONDUCT.md +0 -0
  204. {eodag-2.12.1 → eodag-3.0.0}/CONTRIBUTING.rst +0 -0
  205. {eodag-2.12.1 → eodag-3.0.0}/LICENSE +0 -0
  206. {eodag-2.12.1 → eodag-3.0.0}/MANIFEST.in +0 -0
  207. {eodag-2.12.1 → eodag-3.0.0}/charts/eodag-server/templates/NOTES.txt +0 -0
  208. {eodag-2.12.1 → eodag-3.0.0}/charts/eodag-server/templates/_helpers.tpl +0 -0
  209. {eodag-2.12.1 → eodag-3.0.0}/charts/eodag-server/templates/configmap.yaml +0 -0
  210. {eodag-2.12.1 → eodag-3.0.0}/charts/eodag-server/templates/deployment.yaml +0 -0
  211. {eodag-2.12.1 → eodag-3.0.0}/charts/eodag-server/templates/extra-list.yaml +0 -0
  212. {eodag-2.12.1 → eodag-3.0.0}/charts/eodag-server/templates/ingress.yaml +0 -0
  213. {eodag-2.12.1 → eodag-3.0.0}/charts/eodag-server/templates/pv.yaml +0 -0
  214. {eodag-2.12.1 → eodag-3.0.0}/charts/eodag-server/templates/pvc.yaml +0 -0
  215. {eodag-2.12.1 → eodag-3.0.0}/charts/eodag-server/templates/secret.yaml +0 -0
  216. {eodag-2.12.1 → eodag-3.0.0}/charts/eodag-server/templates/service.yaml +0 -0
  217. {eodag-2.12.1 → eodag-3.0.0}/charts/eodag-server/templates/serviceaccount.yaml +0 -0
  218. {eodag-2.12.1 → eodag-3.0.0}/docker/run-stac-server.sh +0 -0
  219. {eodag-2.12.1 → eodag-3.0.0}/docker/stac-browser.dockerfile +0 -0
  220. {eodag-2.12.1 → eodag-3.0.0}/docker-compose.yml +0 -0
  221. {eodag-2.12.1 → eodag-3.0.0}/docs/Makefile +0 -0
  222. {eodag-2.12.1 → eodag-3.0.0}/docs/_static/download_methods.png +0 -0
  223. {eodag-2.12.1 → eodag-3.0.0}/docs/_static/eodag_advanced_calls_graph.svg +0 -0
  224. {eodag-2.12.1 → eodag-3.0.0}/docs/_static/eodag_bycs.png +0 -0
  225. {eodag-2.12.1 → eodag-3.0.0}/docs/_static/eodag_fetch_product_types.png +0 -0
  226. {eodag-2.12.1 → eodag-3.0.0}/docs/_static/eodag_main_calls_graph.svg +0 -0
  227. {eodag-2.12.1 → eodag-3.0.0}/docs/_static/eodag_overview.png +0 -0
  228. {eodag-2.12.1 → eodag-3.0.0}/docs/_static/eodag_stac_client.png +0 -0
  229. {eodag-2.12.1 → eodag-3.0.0}/docs/_static/eodag_stac_server.png +0 -0
  230. {eodag-2.12.1 → eodag-3.0.0}/docs/_static/favicon-32x32.png +0 -0
  231. {eodag-2.12.1 → eodag-3.0.0}/docs/_static/progress_1.png +0 -0
  232. {eodag-2.12.1 → eodag-3.0.0}/docs/_static/progress_1_none.png +0 -0
  233. {eodag-2.12.1 → eodag-3.0.0}/docs/_static/progress_2.png +0 -0
  234. {eodag-2.12.1 → eodag-3.0.0}/docs/_static/progress_2_none.png +0 -0
  235. {eodag-2.12.1 → eodag-3.0.0}/docs/api_reference/call_graphs.rst +0 -0
  236. {eodag-2.12.1 → eodag-3.0.0}/docs/api_reference/eoproduct.rst +0 -0
  237. {eodag-2.12.1 → eodag-3.0.0}/docs/api_reference/exceptions.rst +0 -0
  238. {eodag-2.12.1 → eodag-3.0.0}/docs/api_reference/index.rst +0 -0
  239. {eodag-2.12.1 → eodag-3.0.0}/docs/api_reference/utils.rst +0 -0
  240. {eodag-2.12.1 → eodag-3.0.0}/docs/api_user_guide.rst +0 -0
  241. {eodag-2.12.1 → eodag-3.0.0}/docs/changelog.rst +0 -0
  242. {eodag-2.12.1 → eodag-3.0.0}/docs/cli_user_guide.rst +0 -0
  243. {eodag-2.12.1 → eodag-3.0.0}/docs/contribute.rst +0 -0
  244. {eodag-2.12.1 → eodag-3.0.0}/docs/getting_started_guide/overview.rst +0 -0
  245. {eodag-2.12.1 → eodag-3.0.0}/docs/getting_started_guide/product_storage_status.rst +0 -0
  246. {eodag-2.12.1 → eodag-3.0.0}/docs/getting_started_guide/product_types.rst +0 -0
  247. {eodag-2.12.1 → eodag-3.0.0}/docs/getting_started_guide/side_projects.rst +0 -0
  248. {eodag-2.12.1 → eodag-3.0.0}/docs/make.bat +0 -0
  249. {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/api_user_guide/data/crunch_search_results.geojson +0 -0
  250. {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/intro_notebooks.ipynb +0 -0
  251. {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.cpg +0 -0
  252. {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.dbf +0 -0
  253. {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.prj +0 -0
  254. {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.qix +0 -0
  255. {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.qpj +0 -0
  256. {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.shp +0 -0
  257. {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.shx +0 -0
  258. {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/tutos/auxdata/sentinel2_tiling_grid_centroids.zip +0 -0
  259. {eodag-2.12.1 → eodag-3.0.0}/docs/stac.rst +0 -0
  260. {eodag-2.12.1 → eodag-3.0.0}/docs/tutos.rst +0 -0
  261. {eodag-2.12.1 → eodag-3.0.0}/eodag/api/__init__.py +0 -0
  262. {eodag-2.12.1 → eodag-3.0.0}/eodag/crunch.py +0 -0
  263. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/__init__.py +0 -0
  264. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/apis/__init__.py +0 -0
  265. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/authentication/__init__.py +0 -0
  266. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/base.py +0 -0
  267. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/crunch/__init__.py +0 -0
  268. {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/download/__init__.py +0 -0
  269. {eodag-2.12.1 → eodag-3.0.0}/eodag/py.typed +0 -0
  270. {eodag-2.12.1 → eodag-3.0.0}/eodag/resources/locations_conf_template.yml +0 -0
  271. {eodag-2.12.1 → eodag-3.0.0}/eodag/resources/shp/ne_110m_admin_0_map_units.VERSION.txt +0 -0
  272. {eodag-2.12.1 → eodag-3.0.0}/eodag/resources/shp/ne_110m_admin_0_map_units.cpg +0 -0
  273. {eodag-2.12.1 → eodag-3.0.0}/eodag/resources/shp/ne_110m_admin_0_map_units.dbf +0 -0
  274. {eodag-2.12.1 → eodag-3.0.0}/eodag/resources/shp/ne_110m_admin_0_map_units.prj +0 -0
  275. {eodag-2.12.1 → eodag-3.0.0}/eodag/resources/shp/ne_110m_admin_0_map_units.shp +0 -0
  276. {eodag-2.12.1 → eodag-3.0.0}/eodag/resources/shp/ne_110m_admin_0_map_units.shx +0 -0
  277. {eodag-2.12.1 → eodag-3.0.0}/eodag/rest/server.wsgi +0 -0
  278. {eodag-2.12.1 → eodag-3.0.0}/eodag/rest/templates/README +0 -0
  279. {eodag-2.12.1 → eodag-3.0.0}/eodag/rest/types/__init__.py +0 -0
  280. {eodag-2.12.1 → eodag-3.0.0}/eodag/types/queryables.py +0 -0
  281. {eodag-2.12.1 → eodag-3.0.0}/eodag.egg-info/dependency_links.txt +0 -0
  282. {eodag-2.12.1 → eodag-3.0.0}/eodag.egg-info/top_level.txt +0 -0
  283. {eodag-2.12.1 → eodag-3.0.0}/get_pypi_latest_version.sh +0 -0
  284. {eodag-2.12.1 → eodag-3.0.0}/pytest.ini +0 -0
  285. {eodag-2.12.1 → eodag-3.0.0}/readthedocs.yml +0 -0
  286. {eodag-2.12.1 → eodag-3.0.0}/requirements-dev.txt +0 -0
  287. {eodag-2.12.1 → eodag-3.0.0}/requirements-docs.txt +0 -0
  288. {eodag-2.12.1 → eodag-3.0.0}/requirements-tutorials.txt +0 -0
  289. {eodag-2.12.1 → eodag-3.0.0}/requirements.txt +0 -0
  290. {eodag-2.12.1 → eodag-3.0.0}/setup.py +0 -0
@@ -13,13 +13,12 @@ jobs:
13
13
 
14
14
  steps:
15
15
  - name: Checkout source
16
- uses: actions/checkout@v3
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/*
16
+ uses: actions/checkout@v4
17
+ with:
18
+ # Get history and tags for SCM versioning to work
19
+ fetch-depth: 0
21
20
  - name: Set up Python 3.8
22
- uses: actions/setup-python@v4
21
+ uses: actions/setup-python@v5
23
22
  with:
24
23
  python-version: "3.8"
25
24
 
@@ -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,12 @@ jobs:
13
13
  runs-on: ubuntu-latest
14
14
  steps:
15
15
  - name: Checkout the repo
16
- uses: actions/checkout@v3
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/*
16
+ uses: actions/checkout@v4
17
+ with:
18
+ # Get history and tags for SCM versioning to work
19
+ fetch-depth: 0
21
20
  - name: Set up Python 3.8
22
- uses: actions/setup-python@v4
21
+ uses: actions/setup-python@v5
23
22
  with:
24
23
  python-version: "3.8"
25
24
  - name: Update pip
@@ -33,13 +32,13 @@ jobs:
33
32
  shell: bash
34
33
  run: echo "WEEK=$(date +'%V')" >> $GITHUB_OUTPUT
35
34
  - name: Pip cache
36
- uses: actions/cache@v3
35
+ uses: actions/cache@v4
37
36
  with:
38
37
  path: ${{ steps.pip-cache.outputs.DIR }}
39
38
  key: ${{ runner.os }}-pip-${{ steps.get-week.outputs.WEEK }}-${{ hashFiles('setup.cfg') }}
40
39
  - name: Install eodag
41
40
  run: |
42
- python -m pip install .
41
+ python -m pip install ".[all-providers]"
43
42
  - name: Fetch and update external product types reference
44
43
  run: |
45
44
  export JSON_OUTPUT_FILE="eodag/resources/ext_product_types.json"
@@ -59,7 +58,7 @@ jobs:
59
58
  echo "commit [${COMMIT_SHA}](${COMMIT_URL})" >> $GITHUB_STEP_SUMMARY
60
59
  echo '```diff' >> $GITHUB_STEP_SUMMARY
61
60
  git show --name-only --format=tformat: >> $GITHUB_STEP_SUMMARY
62
- (diff <(curl ${JSON_REF_FILE} | jq ) <(cat ${JSON_OUTPUT_FILE} | jq) || true) >> $GITHUB_STEP_SUMMARY
61
+ (diff <(curl ${JSON_REF_FILE}) <(cat ${JSON_OUTPUT_FILE}) || true) >> $GITHUB_STEP_SUMMARY
63
62
  echo '```' >> $GITHUB_STEP_SUMMARY
64
63
  # truncated PR body (too long causes error)
65
64
  full_update_summary=$(cat $GITHUB_STEP_SUMMARY)
@@ -67,7 +66,7 @@ jobs:
67
66
  echo "${full_update_summary:0:65536}" >> $GITHUB_ENV
68
67
  echo 'EOF' >> $GITHUB_ENV
69
68
  - name: Create Pull Request
70
- uses: peter-evans/create-pull-request@v4
69
+ uses: peter-evans/create-pull-request@v6
71
70
  with:
72
71
  branch: external-product-types-ref-update
73
72
  delete-branch: true
@@ -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,21 +11,37 @@ 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
- uses: actions/checkout@v3
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/*
18
+ uses: actions/checkout@v4
19
+ with:
20
+ # Get history and tags for SCM versioning to work
21
+ fetch-depth: 0
23
22
  - name: Set up Python 3.8
24
- uses: actions/setup-python@v4
23
+ uses: actions/setup-python@v5
25
24
  with:
26
25
  python-version: "3.8"
27
- - name: Run pre-commit action
28
- uses: pre-commit/action@v3.0.0
26
+ - name: Update pip
27
+ run: python -m pip install --upgrade pip
28
+ - name: Get pip cache dir
29
+ id: pip-cache
30
+ shell: bash
31
+ run: echo "DIR=$(pip cache dir)" >> $GITHUB_OUTPUT
32
+ - name: Get current week number
33
+ id: get-week
34
+ shell: bash
35
+ run: echo "WEEK=$(date +'%V')" >> $GITHUB_OUTPUT
36
+ - name: Pip cache
37
+ uses: actions/cache@v4
38
+ with:
39
+ path: ${{ steps.pip-cache.outputs.DIR }}
40
+ key: ${{ runner.os }}-pip-${{ steps.get-week.outputs.WEEK }}-${{ hashFiles('setup.cfg') }}
41
+ - name: Install tox
42
+ run: python -m pip install tox
43
+ - name: Run linters with tox
44
+ run: python -m tox -e linters
29
45
 
30
46
  tests:
31
47
  name: Test it!
@@ -36,13 +52,12 @@ jobs:
36
52
  os: [ubuntu-latest, windows-latest]
37
53
  steps:
38
54
  - name: Checkout the repo
39
- uses: actions/checkout@v3
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/*
55
+ uses: actions/checkout@v4
56
+ with:
57
+ # Get history and tags for SCM versioning to work
58
+ fetch-depth: 0
44
59
  - name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}
45
- uses: actions/setup-python@v4
60
+ uses: actions/setup-python@v5
46
61
  with:
47
62
  python-version: ${{ matrix.python-version }}
48
63
  - name: Update pip
@@ -56,7 +71,7 @@ jobs:
56
71
  shell: bash
57
72
  run: echo "WEEK=$(date +'%V')" >> $GITHUB_OUTPUT
58
73
  - name: Pip cache
59
- uses: actions/cache@v3
74
+ uses: actions/cache@v4
60
75
  with:
61
76
  path: ${{ steps.pip-cache.outputs.DIR }}
62
77
  key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ steps.get-week.outputs.WEEK }}-${{ hashFiles('setup.cfg') }}
@@ -66,7 +81,7 @@ jobs:
66
81
  run: tox
67
82
  - name: Upload Unit Test Results
68
83
  if: always()
69
- uses: actions/upload-artifact@v3
84
+ uses: actions/upload-artifact@v4
70
85
  with:
71
86
  name: unit-test-results-python${{ matrix.python-version }}-${{ matrix.os }}
72
87
  path: |
@@ -81,7 +96,7 @@ jobs:
81
96
 
82
97
  steps:
83
98
  - name: Download Artifacts
84
- uses: actions/download-artifact@v3
99
+ uses: actions/download-artifact@v4
85
100
  with:
86
101
  path: artifacts
87
102
 
@@ -156,13 +171,12 @@ jobs:
156
171
  runs-on: ubuntu-latest
157
172
  steps:
158
173
  - name: Checkout the repo
159
- uses: actions/checkout@v3
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/*
174
+ uses: actions/checkout@v4
175
+ with:
176
+ # Get history and tags for SCM versioning to work
177
+ fetch-depth: 0
164
178
  - name: Set up Python 3.8
165
- uses: actions/setup-python@v4
179
+ uses: actions/setup-python@v5
166
180
  with:
167
181
  python-version: "3.8"
168
182
  - name: Update pip
@@ -176,7 +190,7 @@ jobs:
176
190
  shell: bash
177
191
  run: echo "WEEK=$(date +'%V')" >> $GITHUB_OUTPUT
178
192
  - name: Pip cache
179
- uses: actions/cache@v3
193
+ uses: actions/cache@v4
180
194
  with:
181
195
  path: ${{ steps.pip-cache.outputs.DIR }}
182
196
  key: ${{ runner.os }}-pip-${{ steps.get-week.outputs.WEEK }}-${{ hashFiles('setup.cfg') }}
@@ -195,13 +209,12 @@ jobs:
195
209
  runs-on: ubuntu-latest
196
210
  steps:
197
211
  - name: Checkout the repo
198
- uses: actions/checkout@v3
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/*
212
+ uses: actions/checkout@v4
213
+ with:
214
+ # Get history and tags for SCM versioning to work
215
+ fetch-depth: 0
203
216
  - name: Set up Python 3.8
204
- uses: actions/setup-python@v4
217
+ uses: actions/setup-python@v5
205
218
  with:
206
219
  python-version: "3.8"
207
220
  - name: Update pip
@@ -215,7 +228,7 @@ jobs:
215
228
  shell: bash
216
229
  run: echo "WEEK=$(date +'%V')" >> $GITHUB_OUTPUT
217
230
  - name: Pip cache
218
- uses: actions/cache@v3
231
+ uses: actions/cache@v4
219
232
  with:
220
233
  path: ${{ steps.pip-cache.outputs.DIR }}
221
234
  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