amsdal 0.4.13__cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.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 (269) hide show
  1. amsdal/Third-Party Materials - AMSDAL Dependencies - License Notices.md +1334 -0
  2. amsdal/__about__.py +4 -0
  3. amsdal/__about__.pyi +1 -0
  4. amsdal/__init__.py +23 -0
  5. amsdal/__init__.pyi +9 -0
  6. amsdal/__migrations__/0000_initial.py +217 -0
  7. amsdal/__migrations__/0001_datetime_type.py +18 -0
  8. amsdal/__migrations__/0002_fixture_order.py +44 -0
  9. amsdal/__migrations__/0003_schema_type_in_class_meta.py +44 -0
  10. amsdal/cloud/__init__.cpython-311-x86_64-linux-gnu.so +0 -0
  11. amsdal/cloud/__init__.pyi +0 -0
  12. amsdal/cloud/client.cpython-311-x86_64-linux-gnu.so +0 -0
  13. amsdal/cloud/client.pyi +57 -0
  14. amsdal/cloud/constants.cpython-311-x86_64-linux-gnu.so +0 -0
  15. amsdal/cloud/constants.pyi +13 -0
  16. amsdal/cloud/enums.cpython-311-x86_64-linux-gnu.so +0 -0
  17. amsdal/cloud/enums.pyi +68 -0
  18. amsdal/cloud/models/__init__.cpython-311-x86_64-linux-gnu.so +0 -0
  19. amsdal/cloud/models/__init__.pyi +0 -0
  20. amsdal/cloud/models/base.cpython-311-x86_64-linux-gnu.so +0 -0
  21. amsdal/cloud/models/base.pyi +247 -0
  22. amsdal/cloud/services/__init__.cpython-311-x86_64-linux-gnu.so +0 -0
  23. amsdal/cloud/services/__init__.pyi +0 -0
  24. amsdal/cloud/services/actions/__init__.cpython-311-x86_64-linux-gnu.so +0 -0
  25. amsdal/cloud/services/actions/__init__.pyi +0 -0
  26. amsdal/cloud/services/actions/add_allowlist_ip.cpython-311-x86_64-linux-gnu.so +0 -0
  27. amsdal/cloud/services/actions/add_allowlist_ip.pyi +19 -0
  28. amsdal/cloud/services/actions/add_basic_auth.cpython-311-x86_64-linux-gnu.so +0 -0
  29. amsdal/cloud/services/actions/add_basic_auth.pyi +21 -0
  30. amsdal/cloud/services/actions/add_dependency.cpython-311-x86_64-linux-gnu.so +0 -0
  31. amsdal/cloud/services/actions/add_dependency.pyi +19 -0
  32. amsdal/cloud/services/actions/add_secret.cpython-311-x86_64-linux-gnu.so +0 -0
  33. amsdal/cloud/services/actions/add_secret.pyi +20 -0
  34. amsdal/cloud/services/actions/base.cpython-311-x86_64-linux-gnu.so +0 -0
  35. amsdal/cloud/services/actions/base.pyi +122 -0
  36. amsdal/cloud/services/actions/create_deploy.cpython-311-x86_64-linux-gnu.so +0 -0
  37. amsdal/cloud/services/actions/create_deploy.pyi +41 -0
  38. amsdal/cloud/services/actions/create_env.cpython-311-x86_64-linux-gnu.so +0 -0
  39. amsdal/cloud/services/actions/create_env.pyi +19 -0
  40. amsdal/cloud/services/actions/create_session.cpython-311-x86_64-linux-gnu.so +0 -0
  41. amsdal/cloud/services/actions/create_session.pyi +17 -0
  42. amsdal/cloud/services/actions/delete_allowlist_ip.cpython-311-x86_64-linux-gnu.so +0 -0
  43. amsdal/cloud/services/actions/delete_allowlist_ip.pyi +19 -0
  44. amsdal/cloud/services/actions/delete_basic_auth.cpython-311-x86_64-linux-gnu.so +0 -0
  45. amsdal/cloud/services/actions/delete_basic_auth.pyi +20 -0
  46. amsdal/cloud/services/actions/delete_dependency.cpython-311-x86_64-linux-gnu.so +0 -0
  47. amsdal/cloud/services/actions/delete_dependency.pyi +21 -0
  48. amsdal/cloud/services/actions/delete_env.cpython-311-x86_64-linux-gnu.so +0 -0
  49. amsdal/cloud/services/actions/delete_env.pyi +21 -0
  50. amsdal/cloud/services/actions/delete_secret.cpython-311-x86_64-linux-gnu.so +0 -0
  51. amsdal/cloud/services/actions/delete_secret.pyi +21 -0
  52. amsdal/cloud/services/actions/destroy_deploy.cpython-311-x86_64-linux-gnu.so +0 -0
  53. amsdal/cloud/services/actions/destroy_deploy.pyi +18 -0
  54. amsdal/cloud/services/actions/expose_db.cpython-311-x86_64-linux-gnu.so +0 -0
  55. amsdal/cloud/services/actions/expose_db.pyi +22 -0
  56. amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-311-x86_64-linux-gnu.so +0 -0
  57. amsdal/cloud/services/actions/get_basic_auth_credentials.pyi +21 -0
  58. amsdal/cloud/services/actions/get_monitoring_info.cpython-311-x86_64-linux-gnu.so +0 -0
  59. amsdal/cloud/services/actions/get_monitoring_info.pyi +21 -0
  60. amsdal/cloud/services/actions/list_dependencies.cpython-311-x86_64-linux-gnu.so +0 -0
  61. amsdal/cloud/services/actions/list_dependencies.pyi +21 -0
  62. amsdal/cloud/services/actions/list_deploys.cpython-311-x86_64-linux-gnu.so +0 -0
  63. amsdal/cloud/services/actions/list_deploys.pyi +19 -0
  64. amsdal/cloud/services/actions/list_envs.cpython-311-x86_64-linux-gnu.so +0 -0
  65. amsdal/cloud/services/actions/list_envs.pyi +20 -0
  66. amsdal/cloud/services/actions/list_secrets.cpython-311-x86_64-linux-gnu.so +0 -0
  67. amsdal/cloud/services/actions/list_secrets.pyi +22 -0
  68. amsdal/cloud/services/actions/manager.cpython-311-x86_64-linux-gnu.so +0 -0
  69. amsdal/cloud/services/actions/manager.pyi +278 -0
  70. amsdal/cloud/services/actions/signup_action.cpython-311-x86_64-linux-gnu.so +0 -0
  71. amsdal/cloud/services/actions/signup_action.pyi +20 -0
  72. amsdal/cloud/services/actions/update_deploy.cpython-311-x86_64-linux-gnu.so +0 -0
  73. amsdal/cloud/services/actions/update_deploy.pyi +19 -0
  74. amsdal/cloud/services/auth/__init__.cpython-311-x86_64-linux-gnu.so +0 -0
  75. amsdal/cloud/services/auth/__init__.pyi +0 -0
  76. amsdal/cloud/services/auth/base.cpython-311-x86_64-linux-gnu.so +0 -0
  77. amsdal/cloud/services/auth/base.pyi +6 -0
  78. amsdal/cloud/services/auth/credentials.cpython-311-x86_64-linux-gnu.so +0 -0
  79. amsdal/cloud/services/auth/credentials.pyi +30 -0
  80. amsdal/cloud/services/auth/manager.cpython-311-x86_64-linux-gnu.so +0 -0
  81. amsdal/cloud/services/auth/manager.pyi +26 -0
  82. amsdal/cloud/services/auth/signup_service.cpython-311-x86_64-linux-gnu.so +0 -0
  83. amsdal/cloud/services/auth/signup_service.pyi +32 -0
  84. amsdal/cloud/services/auth/token.cpython-311-x86_64-linux-gnu.so +0 -0
  85. amsdal/cloud/services/auth/token.pyi +27 -0
  86. amsdal/configs/__init__.py +0 -0
  87. amsdal/configs/__init__.pyi +0 -0
  88. amsdal/configs/constants.py +33 -0
  89. amsdal/configs/constants.pyi +22 -0
  90. amsdal/configs/main.py +258 -0
  91. amsdal/configs/main.pyi +173 -0
  92. amsdal/context/__init__.py +0 -0
  93. amsdal/context/__init__.pyi +0 -0
  94. amsdal/context/manager.py +69 -0
  95. amsdal/context/manager.pyi +50 -0
  96. amsdal/contrib/__init__.cpython-311-x86_64-linux-gnu.so +0 -0
  97. amsdal/contrib/__init__.pyi +0 -0
  98. amsdal/contrib/app_config.py +7 -0
  99. amsdal/contrib/app_config.pyi +6 -0
  100. amsdal/contrib/auth/__init__.py +0 -0
  101. amsdal/contrib/auth/__init__.pyi +0 -0
  102. amsdal/contrib/auth/app.py +27 -0
  103. amsdal/contrib/auth/app.pyi +15 -0
  104. amsdal/contrib/auth/decorators/__init__.py +35 -0
  105. amsdal/contrib/auth/decorators/__init__.pyi +6 -0
  106. amsdal/contrib/auth/errors.py +7 -0
  107. amsdal/contrib/auth/errors.pyi +4 -0
  108. amsdal/contrib/auth/fixtures/basic_permissions.json +64 -0
  109. amsdal/contrib/auth/lifecycle/__init__.py +0 -0
  110. amsdal/contrib/auth/lifecycle/__init__.pyi +0 -0
  111. amsdal/contrib/auth/lifecycle/consumer.py +394 -0
  112. amsdal/contrib/auth/lifecycle/consumer.pyi +108 -0
  113. amsdal/contrib/auth/migrations/0000_initial.py +84 -0
  114. amsdal/contrib/auth/models/__init__.py +0 -0
  115. amsdal/contrib/auth/models/__init__.pyi +0 -0
  116. amsdal/contrib/auth/models/login_session.py +118 -0
  117. amsdal/contrib/auth/models/login_session.pyi +37 -0
  118. amsdal/contrib/auth/models/permission.py +23 -0
  119. amsdal/contrib/auth/models/permission.pyi +18 -0
  120. amsdal/contrib/auth/models/user.py +106 -0
  121. amsdal/contrib/auth/models/user.pyi +46 -0
  122. amsdal/contrib/auth/settings.py +36 -0
  123. amsdal/contrib/auth/settings.pyi +26 -0
  124. amsdal/contrib/frontend_configs/__init__.py +0 -0
  125. amsdal/contrib/frontend_configs/__init__.pyi +0 -0
  126. amsdal/contrib/frontend_configs/app.py +24 -0
  127. amsdal/contrib/frontend_configs/app.pyi +19 -0
  128. amsdal/contrib/frontend_configs/constants.py +1 -0
  129. amsdal/contrib/frontend_configs/constants.pyi +1 -0
  130. amsdal/contrib/frontend_configs/conversion/__init__.py +5 -0
  131. amsdal/contrib/frontend_configs/conversion/__init__.pyi +3 -0
  132. amsdal/contrib/frontend_configs/conversion/convert.py +286 -0
  133. amsdal/contrib/frontend_configs/conversion/convert.pyi +22 -0
  134. amsdal/contrib/frontend_configs/lifecycle/__init__.py +0 -0
  135. amsdal/contrib/frontend_configs/lifecycle/__init__.pyi +0 -0
  136. amsdal/contrib/frontend_configs/lifecycle/consumer.py +306 -0
  137. amsdal/contrib/frontend_configs/lifecycle/consumer.pyi +98 -0
  138. amsdal/contrib/frontend_configs/migrations/0000_initial.py +256 -0
  139. amsdal/contrib/frontend_configs/models/__init__.py +0 -0
  140. amsdal/contrib/frontend_configs/models/__init__.pyi +0 -0
  141. amsdal/contrib/frontend_configs/models/frontend_activator_config.py +22 -0
  142. amsdal/contrib/frontend_configs/models/frontend_activator_config.pyi +12 -0
  143. amsdal/contrib/frontend_configs/models/frontend_config_async_validator.py +11 -0
  144. amsdal/contrib/frontend_configs/models/frontend_config_async_validator.pyi +7 -0
  145. amsdal/contrib/frontend_configs/models/frontend_config_control_action.py +54 -0
  146. amsdal/contrib/frontend_configs/models/frontend_config_control_action.pyi +32 -0
  147. amsdal/contrib/frontend_configs/models/frontend_config_group_validator.py +21 -0
  148. amsdal/contrib/frontend_configs/models/frontend_config_group_validator.pyi +11 -0
  149. amsdal/contrib/frontend_configs/models/frontend_config_option.py +12 -0
  150. amsdal/contrib/frontend_configs/models/frontend_config_option.pyi +8 -0
  151. amsdal/contrib/frontend_configs/models/frontend_config_skip_none_base.py +17 -0
  152. amsdal/contrib/frontend_configs/models/frontend_config_skip_none_base.pyi +8 -0
  153. amsdal/contrib/frontend_configs/models/frontend_config_slider_option.py +13 -0
  154. amsdal/contrib/frontend_configs/models/frontend_config_slider_option.pyi +9 -0
  155. amsdal/contrib/frontend_configs/models/frontend_config_text_mask.py +14 -0
  156. amsdal/contrib/frontend_configs/models/frontend_config_text_mask.pyi +10 -0
  157. amsdal/contrib/frontend_configs/models/frontend_config_validator.py +28 -0
  158. amsdal/contrib/frontend_configs/models/frontend_config_validator.pyi +15 -0
  159. amsdal/contrib/frontend_configs/models/frontend_control_config.py +87 -0
  160. amsdal/contrib/frontend_configs/models/frontend_control_config.pyi +35 -0
  161. amsdal/contrib/frontend_configs/models/frontend_model_config.py +14 -0
  162. amsdal/contrib/frontend_configs/models/frontend_model_config.pyi +9 -0
  163. amsdal/contrib/frontend_configs/utils.py +29 -0
  164. amsdal/contrib/frontend_configs/utils.pyi +17 -0
  165. amsdal/errors.py +31 -0
  166. amsdal/errors.pyi +12 -0
  167. amsdal/fixtures/__init__.cpython-311-x86_64-linux-gnu.so +0 -0
  168. amsdal/fixtures/__init__.pyi +0 -0
  169. amsdal/fixtures/manager.cpython-311-x86_64-linux-gnu.so +0 -0
  170. amsdal/fixtures/manager.pyi +170 -0
  171. amsdal/fixtures/utils.cpython-311-x86_64-linux-gnu.so +0 -0
  172. amsdal/fixtures/utils.pyi +9 -0
  173. amsdal/manager.cpython-311-x86_64-linux-gnu.so +0 -0
  174. amsdal/manager.pyi +265 -0
  175. amsdal/mixins/__init__.cpython-311-x86_64-linux-gnu.so +0 -0
  176. amsdal/mixins/__init__.pyi +0 -0
  177. amsdal/mixins/class_versions_mixin.cpython-311-x86_64-linux-gnu.so +0 -0
  178. amsdal/mixins/class_versions_mixin.pyi +12 -0
  179. amsdal/models/__init__.py +19 -0
  180. amsdal/models/__init__.pyi +9 -0
  181. amsdal/models/core/__init__.py +0 -0
  182. amsdal/models/core/__init__.pyi +0 -0
  183. amsdal/models/core/class_object.py +37 -0
  184. amsdal/models/core/class_object.pyi +24 -0
  185. amsdal/models/core/class_object_meta.py +26 -0
  186. amsdal/models/core/class_object_meta.pyi +15 -0
  187. amsdal/models/core/class_property.py +20 -0
  188. amsdal/models/core/class_property.pyi +11 -0
  189. amsdal/models/core/class_property_meta.py +15 -0
  190. amsdal/models/core/class_property_meta.pyi +10 -0
  191. amsdal/models/core/file.py +156 -0
  192. amsdal/models/core/file.pyi +104 -0
  193. amsdal/models/core/fixture.py +25 -0
  194. amsdal/models/core/fixture.pyi +14 -0
  195. amsdal/models/core/option.py +11 -0
  196. amsdal/models/core/option.pyi +8 -0
  197. amsdal/models/core/validator.py +12 -0
  198. amsdal/models/core/validator.pyi +8 -0
  199. amsdal/models/types/__init__.py +0 -0
  200. amsdal/models/types/__init__.pyi +0 -0
  201. amsdal/models/types/object.py +26 -0
  202. amsdal/models/types/object.pyi +16 -0
  203. amsdal/py.typed +0 -0
  204. amsdal/queryset/__init__.py +21 -0
  205. amsdal/queryset/__init__.pyi +6 -0
  206. amsdal/schemas/__init__.py +0 -0
  207. amsdal/schemas/__init__.pyi +0 -0
  208. amsdal/schemas/core/class_object/model.json +31 -0
  209. amsdal/schemas/core/class_object/properties/display_name.py +9 -0
  210. amsdal/schemas/core/class_object_meta/model.json +59 -0
  211. amsdal/schemas/core/class_property/model.json +22 -0
  212. amsdal/schemas/core/class_property_meta/model.json +23 -0
  213. amsdal/schemas/core/file/hooks/pre_create.py +24 -0
  214. amsdal/schemas/core/file/hooks/pre_update.py +24 -0
  215. amsdal/schemas/core/file/model.json +23 -0
  216. amsdal/schemas/core/file/properties/from_file.py +34 -0
  217. amsdal/schemas/core/file/properties/mimetype.py +13 -0
  218. amsdal/schemas/core/file/properties/str.py +6 -0
  219. amsdal/schemas/core/file/properties/to_file.py +24 -0
  220. amsdal/schemas/core/file/properties/validate_data.py +32 -0
  221. amsdal/schemas/core/fixture/model.json +35 -0
  222. amsdal/schemas/core/option/model.json +19 -0
  223. amsdal/schemas/core/validator/model.json +19 -0
  224. amsdal/schemas/interfaces.py +25 -0
  225. amsdal/schemas/interfaces.pyi +20 -0
  226. amsdal/schemas/manager.cpython-311-x86_64-linux-gnu.so +0 -0
  227. amsdal/schemas/manager.py +0 -0
  228. amsdal/schemas/manager.pyi +0 -0
  229. amsdal/schemas/mixins/__init__.py +0 -0
  230. amsdal/schemas/mixins/__init__.pyi +0 -0
  231. amsdal/schemas/mixins/check_dependencies_mixin.py +125 -0
  232. amsdal/schemas/mixins/check_dependencies_mixin.pyi +45 -0
  233. amsdal/schemas/mixins/verify_schemas_mixin.py +96 -0
  234. amsdal/schemas/mixins/verify_schemas_mixin.pyi +33 -0
  235. amsdal/schemas/repository.py +84 -0
  236. amsdal/schemas/repository.pyi +22 -0
  237. amsdal/schemas/types/anything/model.json +7 -0
  238. amsdal/schemas/types/array/model.json +7 -0
  239. amsdal/schemas/types/binary/model.json +7 -0
  240. amsdal/schemas/types/boolean/model.json +17 -0
  241. amsdal/schemas/types/date/model.json +7 -0
  242. amsdal/schemas/types/datetime/model.json +7 -0
  243. amsdal/schemas/types/dictionary/model.json +8 -0
  244. amsdal/schemas/types/number/model.json +8 -0
  245. amsdal/schemas/types/object/model.json +53 -0
  246. amsdal/schemas/types/string/model.json +8 -0
  247. amsdal/schemas/utils.py +16 -0
  248. amsdal/schemas/utils.pyi +10 -0
  249. amsdal/services/__init__.cpython-311-x86_64-linux-gnu.so +0 -0
  250. amsdal/services/__init__.pyi +0 -0
  251. amsdal/services/transaction_execution.cpython-311-x86_64-linux-gnu.so +0 -0
  252. amsdal/services/transaction_execution.pyi +93 -0
  253. amsdal/transactions/__init__.py +13 -0
  254. amsdal/transactions/__init__.pyi +4 -0
  255. amsdal/utils/__init__.py +0 -0
  256. amsdal/utils/__init__.pyi +0 -0
  257. amsdal/utils/contrib_paths.py +23 -0
  258. amsdal/utils/contrib_paths.pyi +14 -0
  259. amsdal/utils/rollback/__init__.py +440 -0
  260. amsdal/utils/rollback/__init__.pyi +38 -0
  261. amsdal/utils/tests/__init__.py +0 -0
  262. amsdal/utils/tests/enums.py +18 -0
  263. amsdal/utils/tests/factories.py +49 -0
  264. amsdal/utils/tests/helpers.py +499 -0
  265. amsdal-0.4.13.dist-info/METADATA +369 -0
  266. amsdal-0.4.13.dist-info/RECORD +269 -0
  267. amsdal-0.4.13.dist-info/WHEEL +6 -0
  268. amsdal-0.4.13.dist-info/licenses/LICENSE.txt +107 -0
  269. amsdal-0.4.13.dist-info/top_level.txt +1 -0
@@ -0,0 +1,1334 @@
1
+ # Third-Party Materials - AMSDAL Dependencies - License Notices
2
+
3
+ ## **Pydantic v2.3.0 or later**
4
+
5
+ ### [https://github.com/pydantic/pydantic](https://github.com/pydantic/pydantic)
6
+
7
+ ### **MIT License**
8
+
9
+ The MIT License (MIT)
10
+
11
+ Copyright (c) 2017 to present Pydantic Services Inc. and individual contributors.
12
+
13
+ Permission is hereby granted, free of charge, to any person obtaining a copy
14
+ of this software and associated documentation files (the "Software"), to deal
15
+ in the Software without restriction, including without limitation the rights
16
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
17
+ copies of the Software, and to permit persons to whom the Software is
18
+ furnished to do so, subject to the following conditions:
19
+
20
+ The above copyright notice and this permission notice shall be included in all
21
+ copies or substantial portions of the Software.
22
+
23
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
26
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
28
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
29
+ SOFTWARE.
30
+
31
+ ## PyYAML **v6.0 or later**
32
+
33
+ ### [https://pyyaml.org/](https://pyyaml.org/)
34
+
35
+ ### **MIT License**
36
+
37
+ Copyright (c) 2017-2021 Ingy döt Net
38
+ Copyright (c) 2006-2016 Kirill Simonov
39
+
40
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
41
+ this software and associated documentation files (the "Software"), to deal in
42
+ the Software without restriction, including without limitation the rights to
43
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
44
+ of the Software, and to permit persons to whom the Software is furnished to do
45
+ so, subject to the following conditions:
46
+
47
+ The above copyright notice and this permission notice shall be included in all
48
+ copies or substantial portions of the Software.
49
+
50
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
51
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
52
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
53
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
54
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
55
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
56
+ SOFTWARE.
57
+
58
+ ## Cython **v3.0.4 or later**
59
+
60
+ ### [https://cython.org/](https://cython.org/)
61
+
62
+ ### **Apache License 2.0**
63
+
64
+ Apache License
65
+ Version 2.0, January 2004
66
+ [https://www.apache.org/licenses/](https://www.apache.org/licenses/)
67
+
68
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
69
+
70
+ 1. Definitions.
71
+
72
+ "License" shall mean the terms and conditions for use, reproduction,
73
+ and distribution as defined by Sections 1 through 9 of this document.
74
+
75
+ "Licensor" shall mean the copyright owner or entity authorized by
76
+ the copyright owner that is granting the License.
77
+
78
+ "Legal Entity" shall mean the union of the acting entity and all
79
+ other entities that control, are controlled by, or are under common
80
+ control with that entity. For the purposes of this definition,
81
+ "control" means (i) the power, direct or indirect, to cause the
82
+ direction or management of such entity, whether by contract or
83
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
84
+ outstanding shares, or (iii) beneficial ownership of such entity.
85
+
86
+ "You" (or "Your") shall mean an individual or Legal Entity
87
+ exercising permissions granted by this License.
88
+
89
+ "Source" form shall mean the preferred form for making modifications,
90
+ including but not limited to software source code, documentation
91
+ source, and configuration files.
92
+
93
+ "Object" form shall mean any form resulting from mechanical
94
+ transformation or translation of a Source form, including but
95
+ not limited to compiled object code, generated documentation,
96
+ and conversions to other media types.
97
+
98
+ "Work" shall mean the work of authorship, whether in Source or
99
+ Object form, made available under the License, as indicated by a
100
+ copyright notice that is included in or attached to the work
101
+ (an example is provided in the Appendix below).
102
+
103
+ "Derivative Works" shall mean any work, whether in Source or Object
104
+ form, that is based on (or derived from) the Work and for which the
105
+ editorial revisions, annotations, elaborations, or other modifications
106
+ represent, as a whole, an original work of authorship. For the purposes
107
+ of this License, Derivative Works shall not include works that remain
108
+ separable from, or merely link (or bind by name) to the interfaces of,
109
+ the Work and Derivative Works thereof.
110
+
111
+ "Contribution" shall mean any work of authorship, including
112
+ the original version of the Work and any modifications or additions
113
+ to that Work or Derivative Works thereof, that is intentionally
114
+ submitted to Licensor for inclusion in the Work by the copyright owner
115
+ or by an individual or Legal Entity authorized to submit on behalf of
116
+ the copyright owner. For the purposes of this definition, "submitted"
117
+ means any form of electronic, verbal, or written communication sent
118
+ to the Licensor or its representatives, including but not limited to
119
+ communication on electronic mailing lists, source code control systems,
120
+ and issue tracking systems that are managed by, or on behalf of, the
121
+ Licensor for the purpose of discussing and improving the Work, but
122
+ excluding communication that is conspicuously marked or otherwise
123
+ designated in writing by the copyright owner as "Not a Contribution."
124
+
125
+ "Contributor" shall mean Licensor and any individual or Legal Entity
126
+ on behalf of whom a Contribution has been received by Licensor and
127
+ subsequently incorporated within the Work.
128
+
129
+ 2. Grant of Copyright License. Subject to the terms and conditions of
130
+ this License, each Contributor hereby grants to You a perpetual,
131
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
132
+ copyright license to reproduce, prepare Derivative Works of,
133
+ publicly display, publicly perform, sublicense, and distribute the
134
+ Work and such Derivative Works in Source or Object form.
135
+ 3. Grant of Patent License. Subject to the terms and conditions of
136
+ this License, each Contributor hereby grants to You a perpetual,
137
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
138
+ (except as stated in this section) patent license to make, have made,
139
+ use, offer to sell, sell, import, and otherwise transfer the Work,
140
+ where such license applies only to those patent claims licensable
141
+ by such Contributor that are necessarily infringed by their
142
+ Contribution(s) alone or by combination of their Contribution(s)
143
+ with the Work to which such Contribution(s) was submitted. If You
144
+ institute patent litigation against any entity (including a
145
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
146
+ or a Contribution incorporated within the Work constitutes direct
147
+ or contributory patent infringement, then any patent licenses
148
+ granted to You under this License for that Work shall terminate
149
+ as of the date such litigation is filed.
150
+ 4. Redistribution. You may reproduce and distribute copies of the
151
+ Work or Derivative Works thereof in any medium, with or without
152
+ modifications, and in Source or Object form, provided that You
153
+ meet the following conditions:
154
+
155
+ (a) You must give any other recipients of the Work or
156
+ Derivative Works a copy of this License; and
157
+
158
+ (b) You must cause any modified files to carry prominent notices
159
+ stating that You changed the files; and
160
+
161
+ (c) You must retain, in the Source form of any Derivative Works
162
+ that You distribute, all copyright, patent, trademark, and
163
+ attribution notices from the Source form of the Work,
164
+ excluding those notices that do not pertain to any part of
165
+ the Derivative Works; and
166
+
167
+ (d) If the Work includes a "NOTICE" text file as part of its
168
+ distribution, then any Derivative Works that You distribute must
169
+ include a readable copy of the attribution notices contained
170
+ within such NOTICE file, excluding those notices that do not
171
+ pertain to any part of the Derivative Works, in at least one
172
+ of the following places: within a NOTICE text file distributed
173
+ as part of the Derivative Works; within the Source form or
174
+ documentation, if provided along with the Derivative Works; or,
175
+ within a display generated by the Derivative Works, if and
176
+ wherever such third-party notices normally appear. The contents
177
+ of the NOTICE file are for informational purposes only and
178
+ do not modify the License. You may add Your own attribution
179
+ notices within Derivative Works that You distribute, alongside
180
+ or as an addendum to the NOTICE text from the Work, provided
181
+ that such additional attribution notices cannot be construed
182
+ as modifying the License.
183
+
184
+ You may add Your own copyright statement to Your modifications and
185
+ may provide additional or different license terms and conditions
186
+ for use, reproduction, or distribution of Your modifications, or
187
+ for any such Derivative Works as a whole, provided Your use,
188
+ reproduction, and distribution of the Work otherwise complies with
189
+ the conditions stated in this License.
190
+
191
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
192
+ any Contribution intentionally submitted for inclusion in the Work
193
+ by You to the Licensor shall be under the terms and conditions of
194
+ this License, without any additional terms or conditions.
195
+ Notwithstanding the above, nothing herein shall supersede or modify
196
+ the terms of any separate license agreement you may have executed
197
+ with Licensor regarding such Contributions.
198
+ 6. Trademarks. This License does not grant permission to use the trade
199
+ names, trademarks, service marks, or product names of the Licensor,
200
+ except as required for reasonable and customary use in describing the
201
+ origin of the Work and reproducing the content of the NOTICE file.
202
+ 7. Disclaimer of Warranty. Unless required by applicable law or
203
+ agreed to in writing, Licensor provides the Work (and each
204
+ Contributor provides its Contributions) on an "AS IS" BASIS,
205
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
206
+ implied, including, without limitation, any warranties or conditions
207
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
208
+ PARTICULAR PURPOSE. You are solely responsible for determining the
209
+ appropriateness of using or redistributing the Work and assume any
210
+ risks associated with Your exercise of permissions under this License.
211
+ 8. Limitation of Liability. In no event and under no legal theory,
212
+ whether in tort (including negligence), contract, or otherwise,
213
+ unless required by applicable law (such as deliberate and grossly
214
+ negligent acts) or agreed to in writing, shall any Contributor be
215
+ liable to You for damages, including any direct, indirect, special,
216
+ incidental, or consequential damages of any character arising as a
217
+ result of this License or out of the use or inability to use the
218
+ Work (including but not limited to damages for loss of goodwill,
219
+ work stoppage, computer failure or malfunction, or any and all
220
+ other commercial damages or losses), even if such Contributor
221
+ has been advised of the possibility of such damages.
222
+ 9. Accepting Warranty or Additional Liability. While redistributing
223
+ the Work or Derivative Works thereof, You may choose to offer,
224
+ and charge a fee for, acceptance of support, warranty, indemnity,
225
+ or other liability obligations and/or rights consistent with this
226
+ License. However, in accepting such obligations, You may act only
227
+ on Your own behalf and on Your sole responsibility, not on behalf
228
+ of any other Contributor, and only if You agree to indemnify,
229
+ defend, and hold each Contributor harmless for any liability
230
+ incurred by, or claims asserted against, such Contributor by reason
231
+ of your accepting any such warranty or additional liability.
232
+
233
+ END OF TERMS AND CONDITIONS
234
+
235
+ ## redis **v5.0.0 or later**
236
+
237
+ ### [https://github.com/redis/redis-py](https://github.com/redis/redis-py)
238
+
239
+ ### **MIT License**
240
+
241
+ MIT License
242
+
243
+ Copyright (c) 2022-2023, Redis, inc.
244
+
245
+ Permission is hereby granted, free of charge, to any person obtaining a copy
246
+ of this software and associated documentation files (the "Software"), to deal
247
+ in the Software without restriction, including without limitation the rights
248
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
249
+ copies of the Software, and to permit persons to whom the Software is
250
+ furnished to do so, subject to the following conditions:
251
+
252
+ The above copyright notice and this permission notice shall be included in all
253
+ copies or substantial portions of the Software.
254
+
255
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
256
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
257
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
258
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
259
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
260
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
261
+ SOFTWARE.
262
+
263
+ ### Description
264
+
265
+ This is an optional dependency, that allows to use Redis server as the backend for the locking mechanism.
266
+
267
+ ## pyspark **v3.5.0 or later**
268
+
269
+ ### [https://github.com/apache/spark/tree/master/python](https://github.com/apache/spark/tree/master/python)
270
+
271
+ ### ****APACHE LICENSE, VERSION 2.0****
272
+
273
+ Apache License
274
+ Version 2.0, January 2004
275
+ [http://www.apache.org/licenses/](http://www.apache.org/licenses/)
276
+
277
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
278
+
279
+ 1. Definitions.
280
+
281
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
282
+
283
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
284
+
285
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
286
+
287
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
288
+
289
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
290
+
291
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
292
+
293
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
294
+
295
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
296
+
297
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
298
+
299
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
300
+
301
+ 1. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
302
+ 2. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
303
+ 3. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
304
+
305
+ You must give any other recipients of the Work or Derivative Works a copy of this License; and
306
+ You must cause any modified files to carry prominent notices stating that You changed the files; and
307
+ You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
308
+ If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
309
+ You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
310
+
311
+ 1. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
312
+ 2. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
313
+ 3. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
314
+ 4. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
315
+ 5. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
316
+
317
+ END OF TERMS AND CONDITIONS
318
+
319
+ ### Description
320
+
321
+ This is an optional dependency, that allows to use of Apache Iceberg table format via Spark cluster.
322
+
323
+ ## pandas **v2.1.1 or later**
324
+
325
+ ### [https://github.com/pandas-dev/pandas](https://github.com/pandas-dev/pandas)
326
+
327
+ ### BSD 3-Clause License
328
+
329
+ BSD 3-Clause License
330
+
331
+ Copyright (c) 2008-2011, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
332
+ All rights reserved.
333
+
334
+ Copyright (c) 2011-2023, Open source contributors.
335
+
336
+ Redistribution and use in source and binary forms, with or without
337
+ modification, are permitted provided that the following conditions are met:
338
+
339
+ - Redistributions of source code must retain the above copyright notice, this
340
+ list of conditions and the following disclaimer.
341
+ - Redistributions in binary form must reproduce the above copyright notice,
342
+ this list of conditions and the following disclaimer in the documentation
343
+ and/or other materials provided with the distribution.
344
+ - Neither the name of the copyright holder nor the names of its
345
+ contributors may be used to endorse or promote products derived from
346
+ this software without specific prior written permission.
347
+
348
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
349
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
350
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
351
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
352
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
353
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
354
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
355
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
356
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
357
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
358
+
359
+ ## isort **v5.12.0 or later**
360
+
361
+ ### [https://github.com/pycqa/isort](https://github.com/pycqa/isort)
362
+
363
+ ### **MIT License**
364
+
365
+ The MIT License (MIT)
366
+
367
+ Copyright (c) 2013 Timothy Edmund Crosley
368
+
369
+ Permission is hereby granted, free of charge, to any person obtaining a copy
370
+ of this software and associated documentation files (the "Software"), to deal
371
+ in the Software without restriction, including without limitation the rights
372
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
373
+ copies of the Software, and to permit persons to whom the Software is
374
+ furnished to do so, subject to the following conditions:
375
+
376
+ The above copyright notice and this permission notice shall be included in
377
+ all copies or substantial portions of the Software.
378
+
379
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
380
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
381
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
382
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
383
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
384
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
385
+ THE SOFTWARE.
386
+
387
+ ## astor **v0.8.1 or later**
388
+
389
+ ### [https://github.com/berkerpeksag/astor](https://github.com/berkerpeksag/astor)
390
+
391
+ ### BSD-3-Clause license
392
+
393
+ Copyright (c) 2012, Patrick Maupin
394
+ Copyright (c) 2013, Berker Peksag
395
+ Copyright (c) 2008, Armin Ronacher
396
+ All rights reserved.
397
+
398
+ Redistribution and use in source and binary forms, with or without modification,
399
+ are permitted provided that the following conditions are met:
400
+
401
+ 1. Redistributions of source code must retain the above copyright notice, this
402
+ list of conditions and the following disclaimer.
403
+ 2. Redistributions in binary form must reproduce the above copyright notice,
404
+ this list of conditions and the following disclaimer in the documentation and/or
405
+ other materials provided with the distribution.
406
+ 3. Neither the name of the copyright holder nor the names of its contributors
407
+ may be used to endorse or promote products derived from this software without
408
+ specific prior written permission.
409
+
410
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
411
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
412
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
413
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
414
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
415
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
416
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
417
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
418
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
419
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
420
+
421
+ ## black **v23.9.1 or later**
422
+
423
+ ### [https://github.com/psf/black](https://github.com/psf/black)
424
+
425
+ ### **MIT License**
426
+
427
+ The MIT License (MIT)
428
+
429
+ Copyright (c) 2018 Łukasz Langa
430
+
431
+ Permission is hereby granted, free of charge, to any person obtaining a copy
432
+ of this software and associated documentation files (the "Software"), to deal
433
+ in the Software without restriction, including without limitation the rights
434
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
435
+ copies of the Software, and to permit persons to whom the Software is
436
+ furnished to do so, subject to the following conditions:
437
+
438
+ The above copyright notice and this permission notice shall be included in all
439
+ copies or substantial portions of the Software.
440
+
441
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
442
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
443
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
444
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
445
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
446
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
447
+ SOFTWARE.
448
+
449
+ ## pydantic-settings **v2.0.3 or later**
450
+
451
+ ### [https://github.com/pydantic/pydantic-settings](https://github.com/pydantic/pydantic-settings)
452
+
453
+ ### **MIT License**
454
+
455
+ The MIT License (MIT)
456
+
457
+ Copyright (c) 2022 Samuel Colvin and other contributors
458
+
459
+ Permission is hereby granted, free of charge, to any person obtaining a copy
460
+ of this software and associated documentation files (the "Software"), to deal
461
+ in the Software without restriction, including without limitation the rights
462
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
463
+ copies of the Software, and to permit persons to whom the Software is
464
+ furnished to do so, subject to the following conditions:
465
+
466
+ The above copyright notice and this permission notice shall be included in all
467
+ copies or substantial portions of the Software.
468
+
469
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
470
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
471
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
472
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
473
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
474
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
475
+ SOFTWARE.
476
+
477
+ ## PyJWT **v2.8.0 or later**
478
+
479
+ ### [https://github.com/jpadilla/pyjwt](https://github.com/jpadilla/pyjwt)
480
+
481
+ ### **MIT License**
482
+
483
+ The MIT License (MIT)
484
+
485
+ Copyright (c) 2015-2022 José Padilla
486
+
487
+ Permission is hereby granted, free of charge, to any person obtaining a copy
488
+ of this software and associated documentation files (the "Software"), to deal
489
+ in the Software without restriction, including without limitation the rights
490
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
491
+ copies of the Software, and to permit persons to whom the Software is
492
+ furnished to do so, subject to the following conditions:
493
+
494
+ The above copyright notice and this permission notice shall be included in all
495
+ copies or substantial portions of the Software.
496
+
497
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
498
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
499
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
500
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
501
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
502
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
503
+ SOFTWARE.
504
+
505
+ ## cryptography **v40.0.2 or later**
506
+
507
+ ### [https://github.com/pyca/cryptography/](https://github.com/pyca/cryptography/)
508
+
509
+ ### Apache License Version 2.0
510
+
511
+ Apache License
512
+ Version 2.0, January 2004
513
+ [https://www.apache.org/licenses/](https://www.apache.org/licenses/)
514
+
515
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
516
+
517
+ 1. Definitions.
518
+
519
+ "License" shall mean the terms and conditions for use, reproduction,
520
+ and distribution as defined by Sections 1 through 9 of this document.
521
+
522
+ "Licensor" shall mean the copyright owner or entity authorized by
523
+ the copyright owner that is granting the License.
524
+
525
+ "Legal Entity" shall mean the union of the acting entity and all
526
+ other entities that control, are controlled by, or are under common
527
+ control with that entity. For the purposes of this definition,
528
+ "control" means (i) the power, direct or indirect, to cause the
529
+ direction or management of such entity, whether by contract or
530
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
531
+ outstanding shares, or (iii) beneficial ownership of such entity.
532
+
533
+ "You" (or "Your") shall mean an individual or Legal Entity
534
+ exercising permissions granted by this License.
535
+
536
+ "Source" form shall mean the preferred form for making modifications,
537
+ including but not limited to software source code, documentation
538
+ source, and configuration files.
539
+
540
+ "Object" form shall mean any form resulting from mechanical
541
+ transformation or translation of a Source form, including but
542
+ not limited to compiled object code, generated documentation,
543
+ and conversions to other media types.
544
+
545
+ "Work" shall mean the work of authorship, whether in Source or
546
+ Object form, made available under the License, as indicated by a
547
+ copyright notice that is included in or attached to the work
548
+ (an example is provided in the Appendix below).
549
+
550
+ "Derivative Works" shall mean any work, whether in Source or Object
551
+ form, that is based on (or derived from) the Work and for which the
552
+ editorial revisions, annotations, elaborations, or other modifications
553
+ represent, as a whole, an original work of authorship. For the purposes
554
+ of this License, Derivative Works shall not include works that remain
555
+ separable from, or merely link (or bind by name) to the interfaces of,
556
+ the Work and Derivative Works thereof.
557
+
558
+ "Contribution" shall mean any work of authorship, including
559
+ the original version of the Work and any modifications or additions
560
+ to that Work or Derivative Works thereof, that is intentionally
561
+ submitted to Licensor for inclusion in the Work by the copyright owner
562
+ or by an individual or Legal Entity authorized to submit on behalf of
563
+ the copyright owner. For the purposes of this definition, "submitted"
564
+ means any form of electronic, verbal, or written communication sent
565
+ to the Licensor or its representatives, including but not limited to
566
+ communication on electronic mailing lists, source code control systems,
567
+ and issue tracking systems that are managed by, or on behalf of, the
568
+ Licensor for the purpose of discussing and improving the Work, but
569
+ excluding communication that is conspicuously marked or otherwise
570
+ designated in writing by the copyright owner as "Not a Contribution."
571
+
572
+ "Contributor" shall mean Licensor and any individual or Legal Entity
573
+ on behalf of whom a Contribution has been received by Licensor and
574
+ subsequently incorporated within the Work.
575
+
576
+ 2. Grant of Copyright License. Subject to the terms and conditions of
577
+ this License, each Contributor hereby grants to You a perpetual,
578
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
579
+ copyright license to reproduce, prepare Derivative Works of,
580
+ publicly display, publicly perform, sublicense, and distribute the
581
+ Work and such Derivative Works in Source or Object form.
582
+ 3. Grant of Patent License. Subject to the terms and conditions of
583
+ this License, each Contributor hereby grants to You a perpetual,
584
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
585
+ (except as stated in this section) patent license to make, have made,
586
+ use, offer to sell, sell, import, and otherwise transfer the Work,
587
+ where such license applies only to those patent claims licensable
588
+ by such Contributor that are necessarily infringed by their
589
+ Contribution(s) alone or by combination of their Contribution(s)
590
+ with the Work to which such Contribution(s) was submitted. If You
591
+ institute patent litigation against any entity (including a
592
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
593
+ or a Contribution incorporated within the Work constitutes direct
594
+ or contributory patent infringement, then any patent licenses
595
+ granted to You under this License for that Work shall terminate
596
+ as of the date such litigation is filed.
597
+ 4. Redistribution. You may reproduce and distribute copies of the
598
+ Work or Derivative Works thereof in any medium, with or without
599
+ modifications, and in Source or Object form, provided that You
600
+ meet the following conditions:
601
+
602
+ (a) You must give any other recipients of the Work or
603
+ Derivative Works a copy of this License; and
604
+
605
+ (b) You must cause any modified files to carry prominent notices
606
+ stating that You changed the files; and
607
+
608
+ (c) You must retain, in the Source form of any Derivative Works
609
+ that You distribute, all copyright, patent, trademark, and
610
+ attribution notices from the Source form of the Work,
611
+ excluding those notices that do not pertain to any part of
612
+ the Derivative Works; and
613
+
614
+ (d) If the Work includes a "NOTICE" text file as part of its
615
+ distribution, then any Derivative Works that You distribute must
616
+ include a readable copy of the attribution notices contained
617
+ within such NOTICE file, excluding those notices that do not
618
+ pertain to any part of the Derivative Works, in at least one
619
+ of the following places: within a NOTICE text file distributed
620
+ as part of the Derivative Works; within the Source form or
621
+ documentation, if provided along with the Derivative Works; or,
622
+ within a display generated by the Derivative Works, if and
623
+ wherever such third-party notices normally appear. The contents
624
+ of the NOTICE file are for informational purposes only and
625
+ do not modify the License. You may add Your own attribution
626
+ notices within Derivative Works that You distribute, alongside
627
+ or as an addendum to the NOTICE text from the Work, provided
628
+ that such additional attribution notices cannot be construed
629
+ as modifying the License.
630
+
631
+ You may add Your own copyright statement to Your modifications and
632
+ may provide additional or different license terms and conditions
633
+ for use, reproduction, or distribution of Your modifications, or
634
+ for any such Derivative Works as a whole, provided Your use,
635
+ reproduction, and distribution of the Work otherwise complies with
636
+ the conditions stated in this License.
637
+
638
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
639
+ any Contribution intentionally submitted for inclusion in the Work
640
+ by You to the Licensor shall be under the terms and conditions of
641
+ this License, without any additional terms or conditions.
642
+ Notwithstanding the above, nothing herein shall supersede or modify
643
+ the terms of any separate license agreement you may have executed
644
+ with Licensor regarding such Contributions.
645
+ 6. Trademarks. This License does not grant permission to use the trade
646
+ names, trademarks, service marks, or product names of the Licensor,
647
+ except as required for reasonable and customary use in describing the
648
+ origin of the Work and reproducing the content of the NOTICE file.
649
+ 7. Disclaimer of Warranty. Unless required by applicable law or
650
+ agreed to in writing, Licensor provides the Work (and each
651
+ Contributor provides its Contributions) on an "AS IS" BASIS,
652
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
653
+ implied, including, without limitation, any warranties or conditions
654
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
655
+ PARTICULAR PURPOSE. You are solely responsible for determining the
656
+ appropriateness of using or redistributing the Work and assume any
657
+ risks associated with Your exercise of permissions under this License.
658
+ 8. Limitation of Liability. In no event and under no legal theory,
659
+ whether in tort (including negligence), contract, or otherwise,
660
+ unless required by applicable law (such as deliberate and grossly
661
+ negligent acts) or agreed to in writing, shall any Contributor be
662
+ liable to You for damages, including any direct, indirect, special,
663
+ incidental, or consequential damages of any character arising as a
664
+ result of this License or out of the use or inability to use the
665
+ Work (including but not limited to damages for loss of goodwill,
666
+ work stoppage, computer failure or malfunction, or any and all
667
+ other commercial damages or losses), even if such Contributor
668
+ has been advised of the possibility of such damages.
669
+ 9. Accepting Warranty or Additional Liability. While redistributing
670
+ the Work or Derivative Works thereof, You may choose to offer,
671
+ and charge a fee for, acceptance of support, warranty, indemnity,
672
+ or other liability obligations and/or rights consistent with this
673
+ License. However, in accepting such obligations, You may act only
674
+ on Your own behalf and on Your sole responsibility, not on behalf
675
+ of any other Contributor, and only if You agree to indemnify,
676
+ defend, and hold each Contributor harmless for any liability
677
+ incurred by, or claims asserted against, such Contributor by reason
678
+ of your accepting any such warranty or additional liability.
679
+
680
+ END OF TERMS AND CONDITIONS
681
+
682
+ APPENDIX: How to apply the Apache License to your work.
683
+
684
+ To apply the Apache License to your work, attach the following
685
+ boilerplate notice, with the fields enclosed by brackets "[]"
686
+ replaced with your own identifying information. (Don't include
687
+ the brackets!) The text should be enclosed in the appropriate
688
+ comment syntax for the file format. We also recommend that a
689
+ file or class name and description of purpose be included on the
690
+ same "printed page" as the copyright notice for easier
691
+ identification within third-party archives.
692
+
693
+ Copyright [yyyy] [name of copyright owner]
694
+
695
+ Licensed under the Apache License, Version 2.0 (the "License");
696
+ you may not use this file except in compliance with the License.
697
+ You may obtain a copy of the License at
698
+
699
+ <https://www.apache.org/licenses/LICENSE-2.0>
700
+
701
+ Unless required by applicable law or agreed to in writing, software
702
+ distributed under the License is distributed on an "AS IS" BASIS,
703
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
704
+ See the License for the specific language governing permissions and
705
+ limitations under the License.
706
+
707
+ ## fastapi **v0.103.2 or later**
708
+
709
+ ### [https://github.com/tiangolo/fastapi](https://github.com/tiangolo/fastapi)
710
+
711
+ ### **MIT License**
712
+
713
+ The MIT License (MIT)
714
+
715
+ Copyright (c) 2018 Sebastián Ramírez
716
+
717
+ Permission is hereby granted, free of charge, to any person obtaining a copy
718
+ of this software and associated documentation files (the "Software"), to deal
719
+ in the Software without restriction, including without limitation the rights
720
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
721
+ copies of the Software, and to permit persons to whom the Software is
722
+ furnished to do so, subject to the following conditions:
723
+
724
+ The above copyright notice and this permission notice shall be included in
725
+ all copies or substantial portions of the Software.
726
+
727
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
728
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
729
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
730
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
731
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
732
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
733
+ THE SOFTWARE.
734
+
735
+ ## orjson **v3.9.7 or later**
736
+
737
+ ### [https://github.com/ijl/orjson](https://github.com/ijl/orjson)
738
+
739
+ ### **MIT License**
740
+
741
+ Permission is hereby granted, free of charge, to any
742
+ person obtaining a copy of this software and associated
743
+ documentation files (the "Software"), to deal in the
744
+ Software without restriction, including without
745
+ limitation the rights to use, copy, modify, merge,
746
+ publish, distribute, sublicense, and/or sell copies of
747
+ the Software, and to permit persons to whom the Software
748
+ is furnished to do so, subject to the following
749
+ conditions:
750
+
751
+ The above copyright notice and this permission notice
752
+ shall be included in all copies or substantial portions
753
+ of the Software.
754
+
755
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
756
+ ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
757
+ TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
758
+ PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
759
+ SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
760
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
761
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
762
+ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
763
+ DEALINGS IN THE SOFTWARE.
764
+
765
+ ### **Apache License 2.0**
766
+
767
+ Apache License
768
+ Version 2.0, January 2004
769
+ [http://www.apache.org/licenses/](http://www.apache.org/licenses/)
770
+
771
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
772
+
773
+ 1. Definitions.
774
+
775
+ "License" shall mean the terms and conditions for use, reproduction,
776
+ and distribution as defined by Sections 1 through 9 of this document.
777
+
778
+ "Licensor" shall mean the copyright owner or entity authorized by
779
+ the copyright owner that is granting the License.
780
+
781
+ "Legal Entity" shall mean the union of the acting entity and all
782
+ other entities that control, are controlled by, or are under common
783
+ control with that entity. For the purposes of this definition,
784
+ "control" means (i) the power, direct or indirect, to cause the
785
+ direction or management of such entity, whether by contract or
786
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
787
+ outstanding shares, or (iii) beneficial ownership of such entity.
788
+
789
+ "You" (or "Your") shall mean an individual or Legal Entity
790
+ exercising permissions granted by this License.
791
+
792
+ "Source" form shall mean the preferred form for making modifications,
793
+ including but not limited to software source code, documentation
794
+ source, and configuration files.
795
+
796
+ "Object" form shall mean any form resulting from mechanical
797
+ transformation or translation of a Source form, including but
798
+ not limited to compiled object code, generated documentation,
799
+ and conversions to other media types.
800
+
801
+ "Work" shall mean the work of authorship, whether in Source or
802
+ Object form, made available under the License, as indicated by a
803
+ copyright notice that is included in or attached to the work
804
+ (an example is provided in the Appendix below).
805
+
806
+ "Derivative Works" shall mean any work, whether in Source or Object
807
+ form, that is based on (or derived from) the Work and for which the
808
+ editorial revisions, annotations, elaborations, or other modifications
809
+ represent, as a whole, an original work of authorship. For the purposes
810
+ of this License, Derivative Works shall not include works that remain
811
+ separable from, or merely link (or bind by name) to the interfaces of,
812
+ the Work and Derivative Works thereof.
813
+
814
+ "Contribution" shall mean any work of authorship, including
815
+ the original version of the Work and any modifications or additions
816
+ to that Work or Derivative Works thereof, that is intentionally
817
+ submitted to Licensor for inclusion in the Work by the copyright owner
818
+ or by an individual or Legal Entity authorized to submit on behalf of
819
+ the copyright owner. For the purposes of this definition, "submitted"
820
+ means any form of electronic, verbal, or written communication sent
821
+ to the Licensor or its representatives, including but not limited to
822
+ communication on electronic mailing lists, source code control systems,
823
+ and issue tracking systems that are managed by, or on behalf of, the
824
+ Licensor for the purpose of discussing and improving the Work, but
825
+ excluding communication that is conspicuously marked or otherwise
826
+ designated in writing by the copyright owner as "Not a Contribution."
827
+
828
+ "Contributor" shall mean Licensor and any individual or Legal Entity
829
+ on behalf of whom a Contribution has been received by Licensor and
830
+ subsequently incorporated within the Work.
831
+
832
+ 2. Grant of Copyright License. Subject to the terms and conditions of
833
+ this License, each Contributor hereby grants to You a perpetual,
834
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
835
+ copyright license to reproduce, prepare Derivative Works of,
836
+ publicly display, publicly perform, sublicense, and distribute the
837
+ Work and such Derivative Works in Source or Object form.
838
+ 3. Grant of Patent License. Subject to the terms and conditions of
839
+ this License, each Contributor hereby grants to You a perpetual,
840
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
841
+ (except as stated in this section) patent license to make, have made,
842
+ use, offer to sell, sell, import, and otherwise transfer the Work,
843
+ where such license applies only to those patent claims licensable
844
+ by such Contributor that are necessarily infringed by their
845
+ Contribution(s) alone or by combination of their Contribution(s)
846
+ with the Work to which such Contribution(s) was submitted. If You
847
+ institute patent litigation against any entity (including a
848
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
849
+ or a Contribution incorporated within the Work constitutes direct
850
+ or contributory patent infringement, then any patent licenses
851
+ granted to You under this License for that Work shall terminate
852
+ as of the date such litigation is filed.
853
+ 4. Redistribution. You may reproduce and distribute copies of the
854
+ Work or Derivative Works thereof in any medium, with or without
855
+ modifications, and in Source or Object form, provided that You
856
+ meet the following conditions:
857
+
858
+ (a) You must give any other recipients of the Work or
859
+ Derivative Works a copy of this License; and
860
+
861
+ (b) You must cause any modified files to carry prominent notices
862
+ stating that You changed the files; and
863
+
864
+ (c) You must retain, in the Source form of any Derivative Works
865
+ that You distribute, all copyright, patent, trademark, and
866
+ attribution notices from the Source form of the Work,
867
+ excluding those notices that do not pertain to any part of
868
+ the Derivative Works; and
869
+
870
+ (d) If the Work includes a "NOTICE" text file as part of its
871
+ distribution, then any Derivative Works that You distribute must
872
+ include a readable copy of the attribution notices contained
873
+ within such NOTICE file, excluding those notices that do not
874
+ pertain to any part of the Derivative Works, in at least one
875
+ of the following places: within a NOTICE text file distributed
876
+ as part of the Derivative Works; within the Source form or
877
+ documentation, if provided along with the Derivative Works; or,
878
+ within a display generated by the Derivative Works, if and
879
+ wherever such third-party notices normally appear. The contents
880
+ of the NOTICE file are for informational purposes only and
881
+ do not modify the License. You may add Your own attribution
882
+ notices within Derivative Works that You distribute, alongside
883
+ or as an addendum to the NOTICE text from the Work, provided
884
+ that such additional attribution notices cannot be construed
885
+ as modifying the License.
886
+
887
+ You may add Your own copyright statement to Your modifications and
888
+ may provide additional or different license terms and conditions
889
+ for use, reproduction, or distribution of Your modifications, or
890
+ for any such Derivative Works as a whole, provided Your use,
891
+ reproduction, and distribution of the Work otherwise complies with
892
+ the conditions stated in this License.
893
+
894
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
895
+ any Contribution intentionally submitted for inclusion in the Work
896
+ by You to the Licensor shall be under the terms and conditions of
897
+ this License, without any additional terms or conditions.
898
+ Notwithstanding the above, nothing herein shall supersede or modify
899
+ the terms of any separate license agreement you may have executed
900
+ with Licensor regarding such Contributions.
901
+ 6. Trademarks. This License does not grant permission to use the trade
902
+ names, trademarks, service marks, or product names of the Licensor,
903
+ except as required for reasonable and customary use in describing the
904
+ origin of the Work and reproducing the content of the NOTICE file.
905
+ 7. Disclaimer of Warranty. Unless required by applicable law or
906
+ agreed to in writing, Licensor provides the Work (and each
907
+ Contributor provides its Contributions) on an "AS IS" BASIS,
908
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
909
+ implied, including, without limitation, any warranties or conditions
910
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
911
+ PARTICULAR PURPOSE. You are solely responsible for determining the
912
+ appropriateness of using or redistributing the Work and assume any
913
+ risks associated with Your exercise of permissions under this License.
914
+ 8. Limitation of Liability. In no event and under no legal theory,
915
+ whether in tort (including negligence), contract, or otherwise,
916
+ unless required by applicable law (such as deliberate and grossly
917
+ negligent acts) or agreed to in writing, shall any Contributor be
918
+ liable to You for damages, including any direct, indirect, special,
919
+ incidental, or consequential damages of any character arising as a
920
+ result of this License or out of the use or inability to use the
921
+ Work (including but not limited to damages for loss of goodwill,
922
+ work stoppage, computer failure or malfunction, or any and all
923
+ other commercial damages or losses), even if such Contributor
924
+ has been advised of the possibility of such damages.
925
+ 9. Accepting Warranty or Additional Liability. While redistributing
926
+ the Work or Derivative Works thereof, You may choose to offer,
927
+ and charge a fee for, acceptance of support, warranty, indemnity,
928
+ or other liability obligations and/or rights consistent with this
929
+ License. However, in accepting such obligations, You may act only
930
+ on Your own behalf and on Your sole responsibility, not on behalf
931
+ of any other Contributor, and only if You agree to indemnify,
932
+ defend, and hold each Contributor harmless for any liability
933
+ incurred by, or claims asserted against, such Contributor by reason
934
+ of your accepting any such warranty or additional liability.
935
+
936
+ END OF TERMS AND CONDITIONS
937
+
938
+ APPENDIX: How to apply the Apache License to your work.
939
+
940
+ To apply the Apache License to your work, attach the following
941
+ boilerplate notice, with the fields enclosed by brackets "[]"
942
+ replaced with your own identifying information. (Don't include
943
+ the brackets!) The text should be enclosed in the appropriate
944
+ comment syntax for the file format. We also recommend that a
945
+ file or class name and description of purpose be included on the
946
+ same "printed page" as the copyright notice for easier
947
+ identification within third-party archives.
948
+
949
+ Copyright [yyyy] [name of copyright owner]
950
+
951
+ Licensed under the Apache License, Version 2.0 (the "License");
952
+ you may not use this file except in compliance with the License.
953
+ You may obtain a copy of the License at
954
+
955
+ <http://www.apache.org/licenses/LICENSE-2.0>
956
+
957
+ Unless required by applicable law or agreed to in writing, software
958
+ distributed under the License is distributed on an "AS IS" BASIS,
959
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
960
+ See the License for the specific language governing permissions and
961
+ limitations under the License.
962
+
963
+ ## uvicorn **v0.23.2 or later**
964
+
965
+ ### [https://github.com/encode/uvicorn](https://github.com/encode/uvicorn)
966
+
967
+ ### BSD-3-Clause license
968
+
969
+ Copyright © 2017-present, [Encode OSS Ltd](https://www.encode.io/).
970
+ All rights reserved.
971
+
972
+ Redistribution and use in source and binary forms, with or without
973
+ modification, are permitted provided that the following conditions are met:
974
+
975
+ - Redistributions of source code must retain the above copyright notice, this
976
+ list of conditions and the following disclaimer.
977
+ - Redistributions in binary form must reproduce the above copyright notice,
978
+ this list of conditions and the following disclaimer in the documentation
979
+ and/or other materials provided with the distribution.
980
+ - Neither the name of the copyright holder nor the names of its
981
+ contributors may be used to endorse or promote products derived from
982
+ this software without specific prior written permission.
983
+
984
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
985
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
986
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
987
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
988
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
989
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
990
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
991
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
992
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
993
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
994
+
995
+ ## typer **v0.9.0 or later**
996
+
997
+ ### [https://github.com/tiangolo/typer](https://github.com/tiangolo/typer)
998
+
999
+ ### **MIT License**
1000
+
1001
+ The MIT License (MIT)
1002
+
1003
+ Copyright (c) 2019 Sebastián Ramírez
1004
+
1005
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1006
+ of this software and associated documentation files (the "Software"), to deal
1007
+ in the Software without restriction, including without limitation the rights
1008
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1009
+ copies of the Software, and to permit persons to whom the Software is
1010
+ furnished to do so, subject to the following conditions:
1011
+
1012
+ The above copyright notice and this permission notice shall be included in
1013
+ all copies or substantial portions of the Software.
1014
+
1015
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1016
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1017
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1018
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1019
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1020
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1021
+ THE SOFTWARE.
1022
+
1023
+ ## jinja2 **v3.1.2 or later**
1024
+
1025
+ ### [https://github.com/pallets/jinja/](https://github.com/pallets/jinja/)
1026
+
1027
+ ### BSD-3-Clause license
1028
+
1029
+ Copyright 2007 Pallets
1030
+
1031
+ Redistribution and use in source and binary forms, with or without
1032
+ modification, are permitted provided that the following conditions are
1033
+ met:
1034
+
1035
+ 1. Redistributions of source code must retain the above copyright
1036
+ notice, this list of conditions and the following disclaimer.
1037
+ 2. Redistributions in binary form must reproduce the above copyright
1038
+ notice, this list of conditions and the following disclaimer in the
1039
+ documentation and/or other materials provided with the distribution.
1040
+ 3. Neither the name of the copyright holder nor the names of its
1041
+ contributors may be used to endorse or promote products derived from
1042
+ this software without specific prior written permission.
1043
+
1044
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1045
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1046
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
1047
+ PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1048
+ HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1049
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
1050
+ TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
1051
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
1052
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
1053
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
1054
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1055
+
1056
+ ## watchfiles **v0.21.0 or later**
1057
+
1058
+ ### [https://github.com/samuelcolvin/watchfiles](https://github.com/samuelcolvin/watchfiles)
1059
+
1060
+ ### **MIT License**
1061
+
1062
+ The MIT License (MIT)
1063
+
1064
+ Copyright (c) 2017, 2018, 2019, 2020, 2021, 2022 Samuel Colvin
1065
+
1066
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1067
+ of this software and associated documentation files (the "Software"), to deal
1068
+ in the Software without restriction, including without limitation the rights
1069
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1070
+ copies of the Software, and to permit persons to whom the Software is
1071
+ furnished to do so, subject to the following conditions:
1072
+
1073
+ The above copyright notice and this permission notice shall be included in all
1074
+ copies or substantial portions of the Software.
1075
+
1076
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1077
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1078
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1079
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1080
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1081
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1082
+ SOFTWARE.
1083
+
1084
+ ## httpx **v0.25.0 or later**
1085
+
1086
+ ### [https://github.com/encode/httpx](https://github.com/encode/httpx)
1087
+
1088
+ ### BSD-3-Clause license
1089
+
1090
+ Copyright © 2019, [Encode OSS Ltd](https://www.encode.io/).
1091
+ All rights reserved.
1092
+
1093
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1094
+
1095
+ - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
1096
+ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
1097
+ - Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
1098
+
1099
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1100
+
1101
+ ## bcrypt **4.0 or later**
1102
+
1103
+ ### [https://github.com/pyca/bcrypt](https://github.com/pyca/bcrypt)
1104
+
1105
+ ### **Apache License 2.0**
1106
+
1107
+ Apache License
1108
+ Version 2.0, January 2004
1109
+ http://www.apache.org/licenses/
1110
+
1111
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1112
+
1113
+ 1. Definitions.
1114
+
1115
+ "License" shall mean the terms and conditions for use, reproduction,
1116
+ and distribution as defined by Sections 1 through 9 of this document.
1117
+
1118
+ "Licensor" shall mean the copyright owner or entity authorized by
1119
+ the copyright owner that is granting the License.
1120
+
1121
+ "Legal Entity" shall mean the union of the acting entity and all
1122
+ other entities that control, are controlled by, or are under common
1123
+ control with that entity. For the purposes of this definition,
1124
+ "control" means (i) the power, direct or indirect, to cause the
1125
+ direction or management of such entity, whether by contract or
1126
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
1127
+ outstanding shares, or (iii) beneficial ownership of such entity.
1128
+
1129
+ "You" (or "Your") shall mean an individual or Legal Entity
1130
+ exercising permissions granted by this License.
1131
+
1132
+ "Source" form shall mean the preferred form for making modifications,
1133
+ including but not limited to software source code, documentation
1134
+ source, and configuration files.
1135
+
1136
+ "Object" form shall mean any form resulting from mechanical
1137
+ transformation or translation of a Source form, including but
1138
+ not limited to compiled object code, generated documentation,
1139
+ and conversions to other media types.
1140
+
1141
+ "Work" shall mean the work of authorship, whether in Source or
1142
+ Object form, made available under the License, as indicated by a
1143
+ copyright notice that is included in or attached to the work
1144
+ (an example is provided in the Appendix below).
1145
+
1146
+ "Derivative Works" shall mean any work, whether in Source or Object
1147
+ form, that is based on (or derived from) the Work and for which the
1148
+ editorial revisions, annotations, elaborations, or other modifications
1149
+ represent, as a whole, an original work of authorship. For the purposes
1150
+ of this License, Derivative Works shall not include works that remain
1151
+ separable from, or merely link (or bind by name) to the interfaces of,
1152
+ the Work and Derivative Works thereof.
1153
+
1154
+ "Contribution" shall mean any work of authorship, including
1155
+ the original version of the Work and any modifications or additions
1156
+ to that Work or Derivative Works thereof, that is intentionally
1157
+ submitted to Licensor for inclusion in the Work by the copyright owner
1158
+ or by an individual or Legal Entity authorized to submit on behalf of
1159
+ the copyright owner. For the purposes of this definition, "submitted"
1160
+ means any form of electronic, verbal, or written communication sent
1161
+ to the Licensor or its representatives, including but not limited to
1162
+ communication on electronic mailing lists, source code control systems,
1163
+ and issue tracking systems that are managed by, or on behalf of, the
1164
+ Licensor for the purpose of discussing and improving the Work, but
1165
+ excluding communication that is conspicuously marked or otherwise
1166
+ designated in writing by the copyright owner as "Not a Contribution."
1167
+
1168
+ "Contributor" shall mean Licensor and any individual or Legal Entity
1169
+ on behalf of whom a Contribution has been received by Licensor and
1170
+ subsequently incorporated within the Work.
1171
+
1172
+ 2. Grant of Copyright License. Subject to the terms and conditions of
1173
+ this License, each Contributor hereby grants to You a perpetual,
1174
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1175
+ copyright license to reproduce, prepare Derivative Works of,
1176
+ publicly display, publicly perform, sublicense, and distribute the
1177
+ Work and such Derivative Works in Source or Object form.
1178
+
1179
+ 3. Grant of Patent License. Subject to the terms and conditions of
1180
+ this License, each Contributor hereby grants to You a perpetual,
1181
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1182
+ (except as stated in this section) patent license to make, have made,
1183
+ use, offer to sell, sell, import, and otherwise transfer the Work,
1184
+ where such license applies only to those patent claims licensable
1185
+ by such Contributor that are necessarily infringed by their
1186
+ Contribution(s) alone or by combination of their Contribution(s)
1187
+ with the Work to which such Contribution(s) was submitted. If You
1188
+ institute patent litigation against any entity (including a
1189
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
1190
+ or a Contribution incorporated within the Work constitutes direct
1191
+ or contributory patent infringement, then any patent licenses
1192
+ granted to You under this License for that Work shall terminate
1193
+ as of the date such litigation is filed.
1194
+
1195
+ 4. Redistribution. You may reproduce and distribute copies of the
1196
+ Work or Derivative Works thereof in any medium, with or without
1197
+ modifications, and in Source or Object form, provided that You
1198
+ meet the following conditions:
1199
+
1200
+ (a) You must give any other recipients of the Work or
1201
+ Derivative Works a copy of this License; and
1202
+
1203
+ (b) You must cause any modified files to carry prominent notices
1204
+ stating that You changed the files; and
1205
+
1206
+ (c) You must retain, in the Source form of any Derivative Works
1207
+ that You distribute, all copyright, patent, trademark, and
1208
+ attribution notices from the Source form of the Work,
1209
+ excluding those notices that do not pertain to any part of
1210
+ the Derivative Works; and
1211
+
1212
+ (d) If the Work includes a "NOTICE" text file as part of its
1213
+ distribution, then any Derivative Works that You distribute must
1214
+ include a readable copy of the attribution notices contained
1215
+ within such NOTICE file, excluding those notices that do not
1216
+ pertain to any part of the Derivative Works, in at least one
1217
+ of the following places: within a NOTICE text file distributed
1218
+ as part of the Derivative Works; within the Source form or
1219
+ documentation, if provided along with the Derivative Works; or,
1220
+ within a display generated by the Derivative Works, if and
1221
+ wherever such third-party notices normally appear. The contents
1222
+ of the NOTICE file are for informational purposes only and
1223
+ do not modify the License. You may add Your own attribution
1224
+ notices within Derivative Works that You distribute, alongside
1225
+ or as an addendum to the NOTICE text from the Work, provided
1226
+ that such additional attribution notices cannot be construed
1227
+ as modifying the License.
1228
+
1229
+ You may add Your own copyright statement to Your modifications and
1230
+ may provide additional or different license terms and conditions
1231
+ for use, reproduction, or distribution of Your modifications, or
1232
+ for any such Derivative Works as a whole, provided Your use,
1233
+ reproduction, and distribution of the Work otherwise complies with
1234
+ the conditions stated in this License.
1235
+
1236
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1237
+ any Contribution intentionally submitted for inclusion in the Work
1238
+ by You to the Licensor shall be under the terms and conditions of
1239
+ this License, without any additional terms or conditions.
1240
+ Notwithstanding the above, nothing herein shall supersede or modify
1241
+ the terms of any separate license agreement you may have executed
1242
+ with Licensor regarding such Contributions.
1243
+
1244
+ 6. Trademarks. This License does not grant permission to use the trade
1245
+ names, trademarks, service marks, or product names of the Licensor,
1246
+ except as required for reasonable and customary use in describing the
1247
+ origin of the Work and reproducing the content of the NOTICE file.
1248
+
1249
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1250
+ agreed to in writing, Licensor provides the Work (and each
1251
+ Contributor provides its Contributions) on an "AS IS" BASIS,
1252
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1253
+ implied, including, without limitation, any warranties or conditions
1254
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1255
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1256
+ appropriateness of using or redistributing the Work and assume any
1257
+ risks associated with Your exercise of permissions under this License.
1258
+
1259
+ 8. Limitation of Liability. In no event and under no legal theory,
1260
+ whether in tort (including negligence), contract, or otherwise,
1261
+ unless required by applicable law (such as deliberate and grossly
1262
+ negligent acts) or agreed to in writing, shall any Contributor be
1263
+ liable to You for damages, including any direct, indirect, special,
1264
+ incidental, or consequential damages of any character arising as a
1265
+ result of this License or out of the use or inability to use the
1266
+ Work (including but not limited to damages for loss of goodwill,
1267
+ work stoppage, computer failure or malfunction, or any and all
1268
+ other commercial damages or losses), even if such Contributor
1269
+ has been advised of the possibility of such damages.
1270
+
1271
+ 9. Accepting Warranty or Additional Liability. While redistributing
1272
+ the Work or Derivative Works thereof, You may choose to offer,
1273
+ and charge a fee for, acceptance of support, warranty, indemnity,
1274
+ or other liability obligations and/or rights consistent with this
1275
+ License. However, in accepting such obligations, You may act only
1276
+ on Your own behalf and on Your sole responsibility, not on behalf
1277
+ of any other Contributor, and only if You agree to indemnify,
1278
+ defend, and hold each Contributor harmless for any liability
1279
+ incurred by, or claims asserted against, such Contributor by reason
1280
+ of your accepting any such warranty or additional liability.
1281
+
1282
+ END OF TERMS AND CONDITIONS
1283
+
1284
+ APPENDIX: How to apply the Apache License to your work.
1285
+
1286
+ To apply the Apache License to your work, attach the following
1287
+ boilerplate notice, with the fields enclosed by brackets "[]"
1288
+ replaced with your own identifying information. (Don't include
1289
+ the brackets!) The text should be enclosed in the appropriate
1290
+ comment syntax for the file format. We also recommend that a
1291
+ file or class name and description of purpose be included on the
1292
+ same "printed page" as the copyright notice for easier
1293
+ identification within third-party archives.
1294
+
1295
+ Copyright [yyyy] [name of copyright owner]
1296
+
1297
+ Licensed under the Apache License, Version 2.0 (the "License");
1298
+ you may not use this file except in compliance with the License.
1299
+ You may obtain a copy of the License at
1300
+
1301
+ http://www.apache.org/licenses/LICENSE-2.0
1302
+
1303
+ Unless required by applicable law or agreed to in writing, software
1304
+ distributed under the License is distributed on an "AS IS" BASIS,
1305
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1306
+ See the License for the specific language governing permissions and
1307
+ limitations under the License.
1308
+
1309
+ ## pip **21.3.1 or later**
1310
+
1311
+ ### [https://github.com/pypa/pip](https://github.com/pypa/pip)
1312
+
1313
+ ### **MIT License**
1314
+
1315
+ Copyright (c) 2008-present The pip developers (see AUTHORS.txt file)
1316
+
1317
+ Permission is hereby granted, free of charge, to any person obtaining
1318
+ a copy of this software and associated documentation files (the
1319
+ "Software"), to deal in the Software without restriction, including
1320
+ without limitation the rights to use, copy, modify, merge, publish,
1321
+ distribute, sublicense, and/or sell copies of the Software, and to
1322
+ permit persons to whom the Software is furnished to do so, subject to
1323
+ the following conditions:
1324
+
1325
+ The above copyright notice and this permission notice shall be
1326
+ included in all copies or substantial portions of the Software.
1327
+
1328
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1329
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1330
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1331
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1332
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1333
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1334
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.