eodag 2.12.1__py3-none-any.whl → 3.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. eodag/__init__.py +6 -8
  2. eodag/api/core.py +654 -538
  3. eodag/api/product/__init__.py +12 -2
  4. eodag/api/product/_assets.py +59 -16
  5. eodag/api/product/_product.py +100 -93
  6. eodag/api/product/drivers/__init__.py +7 -2
  7. eodag/api/product/drivers/base.py +0 -3
  8. eodag/api/product/metadata_mapping.py +192 -96
  9. eodag/api/search_result.py +69 -10
  10. eodag/cli.py +55 -25
  11. eodag/config.py +391 -116
  12. eodag/plugins/apis/base.py +11 -168
  13. eodag/plugins/apis/ecmwf.py +36 -25
  14. eodag/plugins/apis/usgs.py +80 -35
  15. eodag/plugins/authentication/aws_auth.py +13 -4
  16. eodag/plugins/authentication/base.py +10 -1
  17. eodag/plugins/authentication/generic.py +2 -2
  18. eodag/plugins/authentication/header.py +31 -6
  19. eodag/plugins/authentication/keycloak.py +17 -84
  20. eodag/plugins/authentication/oauth.py +3 -3
  21. eodag/plugins/authentication/openid_connect.py +268 -49
  22. eodag/plugins/authentication/qsauth.py +4 -1
  23. eodag/plugins/authentication/sas_auth.py +9 -2
  24. eodag/plugins/authentication/token.py +98 -47
  25. eodag/plugins/authentication/token_exchange.py +122 -0
  26. eodag/plugins/crunch/base.py +3 -1
  27. eodag/plugins/crunch/filter_date.py +3 -9
  28. eodag/plugins/crunch/filter_latest_intersect.py +0 -3
  29. eodag/plugins/crunch/filter_latest_tpl_name.py +1 -4
  30. eodag/plugins/crunch/filter_overlap.py +4 -8
  31. eodag/plugins/crunch/filter_property.py +5 -11
  32. eodag/plugins/download/aws.py +149 -185
  33. eodag/plugins/download/base.py +88 -97
  34. eodag/plugins/download/creodias_s3.py +1 -1
  35. eodag/plugins/download/http.py +638 -310
  36. eodag/plugins/download/s3rest.py +47 -45
  37. eodag/plugins/manager.py +228 -88
  38. eodag/plugins/search/__init__.py +36 -0
  39. eodag/plugins/search/base.py +239 -30
  40. eodag/plugins/search/build_search_result.py +382 -37
  41. eodag/plugins/search/cop_marine.py +441 -0
  42. eodag/plugins/search/creodias_s3.py +25 -20
  43. eodag/plugins/search/csw.py +5 -7
  44. eodag/plugins/search/data_request_search.py +61 -30
  45. eodag/plugins/search/qssearch.py +713 -255
  46. eodag/plugins/search/static_stac_search.py +106 -40
  47. eodag/resources/ext_product_types.json +1 -1
  48. eodag/resources/product_types.yml +1921 -34
  49. eodag/resources/providers.yml +4091 -3655
  50. eodag/resources/stac.yml +50 -216
  51. eodag/resources/stac_api.yml +71 -25
  52. eodag/resources/stac_provider.yml +5 -0
  53. eodag/resources/user_conf_template.yml +89 -32
  54. eodag/rest/__init__.py +6 -0
  55. eodag/rest/cache.py +70 -0
  56. eodag/rest/config.py +68 -0
  57. eodag/rest/constants.py +26 -0
  58. eodag/rest/core.py +735 -0
  59. eodag/rest/errors.py +178 -0
  60. eodag/rest/server.py +264 -431
  61. eodag/rest/stac.py +442 -836
  62. eodag/rest/types/collections_search.py +44 -0
  63. eodag/rest/types/eodag_search.py +238 -47
  64. eodag/rest/types/queryables.py +164 -0
  65. eodag/rest/types/stac_search.py +273 -0
  66. eodag/rest/utils/__init__.py +216 -0
  67. eodag/rest/utils/cql_evaluate.py +119 -0
  68. eodag/rest/utils/rfc3339.py +64 -0
  69. eodag/types/__init__.py +106 -10
  70. eodag/types/bbox.py +15 -14
  71. eodag/types/download_args.py +40 -0
  72. eodag/types/search_args.py +57 -7
  73. eodag/types/whoosh.py +79 -0
  74. eodag/utils/__init__.py +110 -91
  75. eodag/utils/constraints.py +37 -45
  76. eodag/utils/exceptions.py +39 -22
  77. eodag/utils/import_system.py +0 -4
  78. eodag/utils/logging.py +37 -80
  79. eodag/utils/notebook.py +4 -4
  80. eodag/utils/repr.py +113 -0
  81. eodag/utils/requests.py +128 -0
  82. eodag/utils/rest.py +100 -0
  83. eodag/utils/stac_reader.py +93 -21
  84. {eodag-2.12.1.dist-info → eodag-3.0.0.dist-info}/METADATA +88 -53
  85. eodag-3.0.0.dist-info/RECORD +109 -0
  86. {eodag-2.12.1.dist-info → eodag-3.0.0.dist-info}/WHEEL +1 -1
  87. {eodag-2.12.1.dist-info → eodag-3.0.0.dist-info}/entry_points.txt +7 -5
  88. eodag/plugins/apis/cds.py +0 -540
  89. eodag/rest/types/stac_queryables.py +0 -134
  90. eodag/rest/utils.py +0 -1133
  91. eodag-2.12.1.dist-info/RECORD +0 -94
  92. {eodag-2.12.1.dist-info → eodag-3.0.0.dist-info}/LICENSE +0 -0
  93. {eodag-2.12.1.dist-info → eodag-3.0.0.dist-info}/top_level.txt +0 -0
@@ -1,94 +0,0 @@
1
- eodag/__init__.py,sha256=PwOPGPlRIeXvq5KFGlz4-obHsyeSgGPNCpQxiRt2mug,1696
2
- eodag/cli.py,sha256=DqROABFM7kvNCUYs9oOIY0-Dvn_kfGZ9ySNNn22VOII,28384
3
- eodag/config.py,sha256=Qj2gGobjkZit9CJpJ25ssRyWltBAWSCfufuijvYjAD4,23888
4
- eodag/crunch.py,sha256=fLVAPGVPw31N_DrnFk4gkCpQZLMY8oBhK6NUSYmdr24,1099
5
- eodag/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
- eodag/api/__init__.py,sha256=ytr30NUVmEtmJTsp3QCwkCIhS1nF6UlFCv0vmySHN7g,735
7
- eodag/api/core.py,sha256=UD5PGaid-IPQdkdgwV-gACLySAC8G6Q7U_qsFZQRt00,103340
8
- eodag/api/search_result.py,sha256=4lp58Q3v8TUstSvvZFPII7yZhHFmOYx5Qpm4AR78F5o,6415
9
- eodag/api/product/__init__.py,sha256=8Fg87at24T8gDHyNG22MuMt7gXpGCAxwIHtDVrIYbYY,865
10
- eodag/api/product/_assets.py,sha256=bc73gZBNEvvP43ltF41mgSOSs7aBz9Gxx_s0bUa06I8,4603
11
- eodag/api/product/_product.py,sha256=WBjvHa0bM-fs8AlxGwbCl5BER6rDInEGLryz0ltscr8,22564
12
- eodag/api/product/metadata_mapping.py,sha256=mCs0Usv6-5yP-xR2H3-Qah1dGFGtWNZTh0bBzudCwRs,65405
13
- eodag/api/product/drivers/__init__.py,sha256=mURgF0RpptZec5DIoCryNW4N_41g1Lao4BitMZ0dWZw,912
14
- eodag/api/product/drivers/base.py,sha256=LObZ7LSJo7B5UGtRX9RjCJKle2rslAtSlwAjc__FpUU,1910
15
- eodag/plugins/__init__.py,sha256=KQkD5aVwb9I6C-Rmi5ABEG1-j8w5FP1zKN12vagsT9Y,739
16
- eodag/plugins/base.py,sha256=I-kxG83mh805kZldrgl--VTVBzDNtyE8f_MRkm1VLCY,2689
17
- eodag/plugins/manager.py,sha256=L2CknKCskKRE0mDQESx2PrzKnM4tZOA9YMgKJuVapFU,14668
18
- eodag/plugins/apis/__init__.py,sha256=PyY4f7P2iu3MkLPnw5eOrVew2fuavbBL3Asci3Ulwoo,744
19
- eodag/plugins/apis/base.py,sha256=565x8mPiv4rwqbVDX92ib4F3zV5_n7Ds1TcYA_mzgwM,9508
20
- eodag/plugins/apis/cds.py,sha256=bc-UtXcWnaGB7PiytmgWiHwysfhDXmg1HijI9bvLvqY,21362
21
- eodag/plugins/apis/ecmwf.py,sha256=x6C_RPtksoAjLsjNjZ1LQcoKRsD33HfUB0pMXLjdGBM,9668
22
- eodag/plugins/apis/usgs.py,sha256=STz02BBViLRPKEMrknsAt8mJHPgo-Bp41ZBZw5e_5vU,15560
23
- eodag/plugins/authentication/__init__.py,sha256=_LVw42Bb1IhGAZH5xHRaS4b1iFoF9e27KDZOyoSoJHY,1039
24
- eodag/plugins/authentication/aws_auth.py,sha256=JNKSeLlJIdOVwwoPMVvWHT2ETVhZfMpX42UyZ6goCIg,2376
25
- eodag/plugins/authentication/base.py,sha256=3UjNfOe1zAZbVG7CXi6CrOPG5ltwtl1ZUk3BtbpzSn4,2166
26
- eodag/plugins/authentication/generic.py,sha256=cgC7VTFUPzqTbTHgoWTdnzlQ1i26hIUoKQOfkwta9Ps,1846
27
- eodag/plugins/authentication/header.py,sha256=stT8fURbM_LVaVDIIUvEcN32WAMap6dr99OPwaYGKFI,3057
28
- eodag/plugins/authentication/keycloak.py,sha256=FyOMtE3l3tJTDTdpaMe3QKlbFY5-T-7TJp1EGcPGLPM,9324
29
- eodag/plugins/authentication/oauth.py,sha256=IuUSFPhqR61lDa555QMCRngSTpOZ-LeNjZ12vbJVXMI,1505
30
- eodag/plugins/authentication/openid_connect.py,sha256=3jF5hsBwlp50_MVZlLlL5gYme3ETI02s2v2x-af3HFc,13886
31
- eodag/plugins/authentication/qsauth.py,sha256=DvrN25vcqEHArq3xXajIqgcj0yfVgHV25oY4gNoswLQ,3512
32
- eodag/plugins/authentication/sas_auth.py,sha256=0sQrv2q_5xnCtvdyeAcXYbcsiaFNDpCNm9AXwRDN1L4,3687
33
- eodag/plugins/authentication/token.py,sha256=gCdmeSuUsjuncaBOUhdJjWL9_YVuOuCtGKaMPVaCDVU,6250
34
- eodag/plugins/crunch/__init__.py,sha256=58D7kJhEpHJWobIKaNFPynfbSqAWgS90BiHzitqS5Ds,746
35
- eodag/plugins/crunch/base.py,sha256=ceVbBFo73BhlQaaww6K_ReVziv_a_W-RUQBeQD908_U,1297
36
- eodag/plugins/crunch/filter_date.py,sha256=bX1rr-p1Eoa6gksqu2xKYBXZEeLUwWfv6UEVlHvKqXM,4525
37
- eodag/plugins/crunch/filter_latest_intersect.py,sha256=mXgiOCbeCEgMwYAZ7GQzfKW0ANBSnkOtarmpJi3pp0E,4531
38
- eodag/plugins/crunch/filter_latest_tpl_name.py,sha256=5I2ewq5al2KzJFyEiY971De1vbARTaJ4_TA0gQvhCbM,3848
39
- eodag/plugins/crunch/filter_overlap.py,sha256=9Vdb01RXDl90oCIz_2mLlHqBZSkq1c7pYV6r7zMY5IQ,7361
40
- eodag/plugins/crunch/filter_property.py,sha256=jMyHL1bhj7EhPWq8A-k1FoOpOFKtvGvJ0hZjCxq561Y,3419
41
- eodag/plugins/download/__init__.py,sha256=zqszaeNgYP0YHlZDkLMf6odcwNw0KrAahGpcA-l0kAw,740
42
- eodag/plugins/download/aws.py,sha256=44LEKFz8rRn8nORm8lXxopRV_OrGbw-Z6mBxFpom3NE,56494
43
- eodag/plugins/download/base.py,sha256=p_MaW1SKWAxoUSPstyiktqj9dRmD2UMKXeK6JQci5Ew,30294
44
- eodag/plugins/download/creodias_s3.py,sha256=xAg_wxBiQ2PrIW9PYvLIU9bJAjl1PnRRumirE-b19Uo,2255
45
- eodag/plugins/download/http.py,sha256=RAod7ZuRH3b8MJdVptJ58vnZRYJThaGnYu4WikhRjvw,43058
46
- eodag/plugins/download/s3rest.py,sha256=vs03tYtH8aFy8h_z554kWwRrQZMe2yWSMt5pQLYYOYY,14461
47
- eodag/plugins/search/__init__.py,sha256=4Qn6HXNP8V4Gu8DvkJUsW6Zq3i5KoGd-KNZdtrYbpN4,738
48
- eodag/plugins/search/base.py,sha256=cn1TMs78tYPk2Nemm5Pk47xLCyspaqWmEo7qiJ_2IXQ,6689
49
- eodag/plugins/search/build_search_result.py,sha256=m1Ivk363x31UqkpfrXqfIyOf2T2wejWDot4hH4X5LVY,7439
50
- eodag/plugins/search/creodias_s3.py,sha256=jLP04QFEpbVODDAOAvkEj92_yVlHxZTX5_LWuTQrOwQ,5388
51
- eodag/plugins/search/csw.py,sha256=h_10JMmGaHqMnMzbdtTpaZS5KVpz4msoyOcyvg1f9ew,9728
52
- eodag/plugins/search/data_request_search.py,sha256=3iZy2_tJjciyXq2K2fYJhDpCr4Oj976juTxMrGKfMcg,17865
53
- eodag/plugins/search/qssearch.py,sha256=yFzXtgXYXeVduJwhwYPb8QPCVE7Ws0QJSUbxW_uyfNM,60024
54
- eodag/plugins/search/static_stac_search.py,sha256=US9brqgbkCqZ9JGfqi0yRSxCmv8u5eU0HqYysbr3iXY,5645
55
- eodag/resources/ext_product_types.json,sha256=ZqjhyROeoEHup1F2jLNspaQ0KufxSCkotUlX2w3_7qM,367835
56
- eodag/resources/locations_conf_template.yml,sha256=_eBv-QKHYMIKhY0b0kp4Ee33RsayxN8LWH3kDXxfFSk,986
57
- eodag/resources/product_types.yml,sha256=VbL-KJwDZxErP9nenVBFl3o_pYxnNm8FSa_8dNzqLYw,235957
58
- eodag/resources/providers.yml,sha256=AXkh6XoTI1VAnYeVc89wGIhS_ilWFMyHSlGrHm4AVeA,271634
59
- eodag/resources/stac.yml,sha256=6aaCVaFd7p-4iQTE90VPbmKDfM7CPP50jBmSkF2cGTw,14865
60
- eodag/resources/stac_api.yml,sha256=aIl7gnZB3lj1hWsX81PFFp_5WKAQn6I5M7VSE1JD29A,67252
61
- eodag/resources/stac_provider.yml,sha256=rbW7Kni3hLBAT7LMlAXwrv4pYnZB0X0efGAFCMh1nCU,6531
62
- eodag/resources/user_conf_template.yml,sha256=p272RXr4X1OuT6BlvPg4nlcfaVKaFs-26IETOyJHwoY,6263
63
- eodag/resources/shp/ne_110m_admin_0_map_units.VERSION.txt,sha256=CHSo_jbv-4d4D0MYRbWn2FvmV_K9mYzo7qznF4YNO3g,7
64
- eodag/resources/shp/ne_110m_admin_0_map_units.cpg,sha256=FG1nif_gM6UpfBrQRuamLuNTGbhrAhRE8FtuoqqKH0o,6
65
- eodag/resources/shp/ne_110m_admin_0_map_units.dbf,sha256=uEEO22hZ_crWxMNhuQ_ix889c1Us1awYXAglxbf1K-s,393747
66
- eodag/resources/shp/ne_110m_admin_0_map_units.prj,sha256=oaohy2UQUlLMiTy3HhYS1Kurl_7z3A3LYcOmVf_TbNo,148
67
- eodag/resources/shp/ne_110m_admin_0_map_units.shp,sha256=GMVJQ1pe0JfaJnVfAew0MvembDJDkfUs0To2Qc82Aos,181628
68
- eodag/resources/shp/ne_110m_admin_0_map_units.shx,sha256=N74fDl6sQAljmHQ_e9DO7suO6BXuwC0LwmriAnDBH-U,1564
69
- eodag/rest/__init__.py,sha256=PnUojkc9LwOM_KA0b5do5LBPqr_LuJ7aI-uy2zFS6HE,732
70
- eodag/rest/server.py,sha256=wFXHnJSLnpSdMoB-_JbQXIQAeiCq_AA1IJSp83UaQDY,21566
71
- eodag/rest/server.wsgi,sha256=ssM4JQi8tZpOYj03CTdM0weyUF1b3Lbh38pdD-vBfXs,152
72
- eodag/rest/stac.py,sha256=CkEsDmwHQEguP9FBjyfQxbJQL1iPVms2yv68yBhKX2Q,50135
73
- eodag/rest/utils.py,sha256=MyylRV_Q02FBIkuAcFJ7_lPVj0LsJMKMgZ2VLCTxaM4,37334
74
- eodag/rest/templates/README,sha256=qFgCBE6XC4YiXkpPoSHkYbMTQr8Zg5Wc5eAKVcooXmw,57
75
- eodag/rest/types/__init__.py,sha256=Bu0C3dzXHe8kocnz2PIHV0GjQWlAQas6ToIfwusNPQs,742
76
- eodag/rest/types/eodag_search.py,sha256=z96LwLwzAmyltAFaQ7vfDzGidioqAvEb6147Bim8f4M,7088
77
- eodag/rest/types/stac_queryables.py,sha256=WIYPrFpTYa77N-T4E-Y1xrDo8J8-32C40Ny3HgynebE,5103
78
- eodag/types/__init__.py,sha256=AL-JQ459WgOfHziGz1IjFrvjhe7QGFdD1U7RO0Qf0_w,8004
79
- eodag/types/bbox.py,sha256=FhKjg9utwuEc-vLJdfjC3Z1cXsMWVRiPuf_SouQd8zI,4307
80
- eodag/types/queryables.py,sha256=oELD822--6aZiJGG82eIH3HLKHcmUpXW-gL5TtaN-WQ,6010
81
- eodag/types/search_args.py,sha256=svnA2skFh6sJKcbN6AfoQqASJoN7rSzm08BC4HrkFAc,2974
82
- eodag/utils/__init__.py,sha256=zFM-HQ69vJwDk-RzerynfrnZ25p5Rrd7l7k3eb99Dxw,48318
83
- eodag/utils/constraints.py,sha256=7WhYoFQ3ZnMGf5os4K63sCyjYPfWJNAYj8JrVpXC5ws,9716
84
- eodag/utils/exceptions.py,sha256=S1_-kUo9jfKVivOOLTL3G6CRG5aEiKqTD5HR-ZHtyss,3391
85
- eodag/utils/import_system.py,sha256=D6VqgkfcQFVfz82aJYILOMRIsY-fM5xcTAcBohyDpuc,4020
86
- eodag/utils/logging.py,sha256=YcgiOb8iUzMGGoW_ppuZm77bKi96MpDyMANBvu0Bu4k,5143
87
- eodag/utils/notebook.py,sha256=QkN9a6E9oinkUaBXeze0iYKusgqbMvV680dMrfm69Ao,2621
88
- eodag/utils/stac_reader.py,sha256=nwa2HHYcZ0gwFCYMjgPDHyumiwVAUnEudGXPUxUJzk4,6414
89
- eodag-2.12.1.dist-info/LICENSE,sha256=4MAecetnRTQw5DlHtiikDSzKWO1xVLwzM5_DsPMYlnE,10172
90
- eodag-2.12.1.dist-info/METADATA,sha256=KWvOl5eIHwYExYvZt9e8sqPd2he93ug2Uy59frs-ua8,13777
91
- eodag-2.12.1.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
92
- eodag-2.12.1.dist-info/entry_points.txt,sha256=UDv-QaQKWTrpQWAIBPUnmeKVUfsOLEGaVIGYXunSRc4,2175
93
- eodag-2.12.1.dist-info/top_level.txt,sha256=025IMTmVe5eDjIPP4KEFQKespOPMQdne4U4jOy8nftM,6
94
- eodag-2.12.1.dist-info/RECORD,,