teacaptainx 1.0.0 → 1.0.1

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 (1670) hide show
  1. package/README.md +2 -0
  2. package/__pycache__/alert_system.cpython-310.pyc +0 -0
  3. package/__pycache__/crypto_price_fetcher.cpython-310.pyc +0 -0
  4. package/alert_system.py +30 -0
  5. package/config.json +5 -0
  6. package/crypto_price_fetcher.py +12 -0
  7. package/main.py +11 -0
  8. package/package.json +1 -1
  9. package/venv/bin/Activate.ps1 +247 -0
  10. package/venv/bin/activate +69 -0
  11. package/venv/bin/activate.csh +26 -0
  12. package/venv/bin/activate.fish +69 -0
  13. package/venv/bin/normalizer +8 -0
  14. package/venv/bin/pip +8 -0
  15. package/venv/bin/pip3 +8 -0
  16. package/venv/bin/pip3.10 +8 -0
  17. package/venv/lib/python3.10/site-packages/_distutils_hack/__init__.py +222 -0
  18. package/venv/lib/python3.10/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc +0 -0
  19. package/venv/lib/python3.10/site-packages/_distutils_hack/__pycache__/override.cpython-310.pyc +0 -0
  20. package/venv/lib/python3.10/site-packages/_distutils_hack/override.py +1 -0
  21. package/venv/lib/python3.10/site-packages/certifi/__init__.py +4 -0
  22. package/venv/lib/python3.10/site-packages/certifi/__main__.py +12 -0
  23. package/venv/lib/python3.10/site-packages/certifi/__pycache__/__init__.cpython-310.pyc +0 -0
  24. package/venv/lib/python3.10/site-packages/certifi/__pycache__/__main__.cpython-310.pyc +0 -0
  25. package/venv/lib/python3.10/site-packages/certifi/__pycache__/core.cpython-310.pyc +0 -0
  26. package/venv/lib/python3.10/site-packages/certifi/cacert.pem +4814 -0
  27. package/venv/lib/python3.10/site-packages/certifi/core.py +114 -0
  28. package/venv/lib/python3.10/site-packages/certifi/py.typed +0 -0
  29. package/venv/lib/python3.10/site-packages/certifi-2024.2.2.dist-info/INSTALLER +1 -0
  30. package/venv/lib/python3.10/site-packages/certifi-2024.2.2.dist-info/LICENSE +20 -0
  31. package/venv/lib/python3.10/site-packages/certifi-2024.2.2.dist-info/METADATA +66 -0
  32. package/venv/lib/python3.10/site-packages/certifi-2024.2.2.dist-info/RECORD +14 -0
  33. package/venv/lib/python3.10/site-packages/certifi-2024.2.2.dist-info/WHEEL +5 -0
  34. package/venv/lib/python3.10/site-packages/certifi-2024.2.2.dist-info/top_level.txt +1 -0
  35. package/venv/lib/python3.10/site-packages/charset_normalizer/__init__.py +46 -0
  36. package/venv/lib/python3.10/site-packages/charset_normalizer/__main__.py +4 -0
  37. package/venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/__init__.cpython-310.pyc +0 -0
  38. package/venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/__main__.cpython-310.pyc +0 -0
  39. package/venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/api.cpython-310.pyc +0 -0
  40. package/venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/cd.cpython-310.pyc +0 -0
  41. package/venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/constant.cpython-310.pyc +0 -0
  42. package/venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/legacy.cpython-310.pyc +0 -0
  43. package/venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/md.cpython-310.pyc +0 -0
  44. package/venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/models.cpython-310.pyc +0 -0
  45. package/venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/utils.cpython-310.pyc +0 -0
  46. package/venv/lib/python3.10/site-packages/charset_normalizer/__pycache__/version.cpython-310.pyc +0 -0
  47. package/venv/lib/python3.10/site-packages/charset_normalizer/api.py +626 -0
  48. package/venv/lib/python3.10/site-packages/charset_normalizer/cd.py +395 -0
  49. package/venv/lib/python3.10/site-packages/charset_normalizer/cli/__init__.py +6 -0
  50. package/venv/lib/python3.10/site-packages/charset_normalizer/cli/__main__.py +296 -0
  51. package/venv/lib/python3.10/site-packages/charset_normalizer/cli/__pycache__/__init__.cpython-310.pyc +0 -0
  52. package/venv/lib/python3.10/site-packages/charset_normalizer/cli/__pycache__/__main__.cpython-310.pyc +0 -0
  53. package/venv/lib/python3.10/site-packages/charset_normalizer/constant.py +1995 -0
  54. package/venv/lib/python3.10/site-packages/charset_normalizer/legacy.py +54 -0
  55. package/venv/lib/python3.10/site-packages/charset_normalizer/md.cpython-310-x86_64-linux-gnu.so +0 -0
  56. package/venv/lib/python3.10/site-packages/charset_normalizer/md.py +615 -0
  57. package/venv/lib/python3.10/site-packages/charset_normalizer/md__mypyc.cpython-310-x86_64-linux-gnu.so +0 -0
  58. package/venv/lib/python3.10/site-packages/charset_normalizer/models.py +340 -0
  59. package/venv/lib/python3.10/site-packages/charset_normalizer/py.typed +0 -0
  60. package/venv/lib/python3.10/site-packages/charset_normalizer/utils.py +421 -0
  61. package/venv/lib/python3.10/site-packages/charset_normalizer/version.py +6 -0
  62. package/venv/lib/python3.10/site-packages/charset_normalizer-3.3.2.dist-info/INSTALLER +1 -0
  63. package/venv/lib/python3.10/site-packages/charset_normalizer-3.3.2.dist-info/LICENSE +21 -0
  64. package/venv/lib/python3.10/site-packages/charset_normalizer-3.3.2.dist-info/METADATA +683 -0
  65. package/venv/lib/python3.10/site-packages/charset_normalizer-3.3.2.dist-info/RECORD +35 -0
  66. package/venv/lib/python3.10/site-packages/charset_normalizer-3.3.2.dist-info/WHEEL +6 -0
  67. package/venv/lib/python3.10/site-packages/charset_normalizer-3.3.2.dist-info/entry_points.txt +2 -0
  68. package/venv/lib/python3.10/site-packages/charset_normalizer-3.3.2.dist-info/top_level.txt +1 -0
  69. package/venv/lib/python3.10/site-packages/distutils-precedence.pth +1 -0
  70. package/venv/lib/python3.10/site-packages/idna/__init__.py +44 -0
  71. package/venv/lib/python3.10/site-packages/idna/__pycache__/__init__.cpython-310.pyc +0 -0
  72. package/venv/lib/python3.10/site-packages/idna/__pycache__/codec.cpython-310.pyc +0 -0
  73. package/venv/lib/python3.10/site-packages/idna/__pycache__/compat.cpython-310.pyc +0 -0
  74. package/venv/lib/python3.10/site-packages/idna/__pycache__/core.cpython-310.pyc +0 -0
  75. package/venv/lib/python3.10/site-packages/idna/__pycache__/idnadata.cpython-310.pyc +0 -0
  76. package/venv/lib/python3.10/site-packages/idna/__pycache__/intranges.cpython-310.pyc +0 -0
  77. package/venv/lib/python3.10/site-packages/idna/__pycache__/package_data.cpython-310.pyc +0 -0
  78. package/venv/lib/python3.10/site-packages/idna/__pycache__/uts46data.cpython-310.pyc +0 -0
  79. package/venv/lib/python3.10/site-packages/idna/codec.py +118 -0
  80. package/venv/lib/python3.10/site-packages/idna/compat.py +13 -0
  81. package/venv/lib/python3.10/site-packages/idna/core.py +395 -0
  82. package/venv/lib/python3.10/site-packages/idna/idnadata.py +4245 -0
  83. package/venv/lib/python3.10/site-packages/idna/intranges.py +54 -0
  84. package/venv/lib/python3.10/site-packages/idna/package_data.py +2 -0
  85. package/venv/lib/python3.10/site-packages/idna/py.typed +0 -0
  86. package/venv/lib/python3.10/site-packages/idna/uts46data.py +8598 -0
  87. package/venv/lib/python3.10/site-packages/idna-3.7.dist-info/INSTALLER +1 -0
  88. package/venv/lib/python3.10/site-packages/idna-3.7.dist-info/LICENSE.md +31 -0
  89. package/venv/lib/python3.10/site-packages/idna-3.7.dist-info/METADATA +243 -0
  90. package/venv/lib/python3.10/site-packages/idna-3.7.dist-info/RECORD +22 -0
  91. package/venv/lib/python3.10/site-packages/idna-3.7.dist-info/WHEEL +4 -0
  92. package/venv/lib/python3.10/site-packages/pip/__init__.py +13 -0
  93. package/venv/lib/python3.10/site-packages/pip/__main__.py +31 -0
  94. package/venv/lib/python3.10/site-packages/pip/__pip-runner__.py +50 -0
  95. package/venv/lib/python3.10/site-packages/pip/__pycache__/__init__.cpython-310.pyc +0 -0
  96. package/venv/lib/python3.10/site-packages/pip/__pycache__/__main__.cpython-310.pyc +0 -0
  97. package/venv/lib/python3.10/site-packages/pip/__pycache__/__pip-runner__.cpython-310.pyc +0 -0
  98. package/venv/lib/python3.10/site-packages/pip/_internal/__init__.py +19 -0
  99. package/venv/lib/python3.10/site-packages/pip/_internal/__pycache__/__init__.cpython-310.pyc +0 -0
  100. package/venv/lib/python3.10/site-packages/pip/_internal/__pycache__/build_env.cpython-310.pyc +0 -0
  101. package/venv/lib/python3.10/site-packages/pip/_internal/__pycache__/cache.cpython-310.pyc +0 -0
  102. package/venv/lib/python3.10/site-packages/pip/_internal/__pycache__/configuration.cpython-310.pyc +0 -0
  103. package/venv/lib/python3.10/site-packages/pip/_internal/__pycache__/exceptions.cpython-310.pyc +0 -0
  104. package/venv/lib/python3.10/site-packages/pip/_internal/__pycache__/main.cpython-310.pyc +0 -0
  105. package/venv/lib/python3.10/site-packages/pip/_internal/__pycache__/pyproject.cpython-310.pyc +0 -0
  106. package/venv/lib/python3.10/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-310.pyc +0 -0
  107. package/venv/lib/python3.10/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-310.pyc +0 -0
  108. package/venv/lib/python3.10/site-packages/pip/_internal/build_env.py +311 -0
  109. package/venv/lib/python3.10/site-packages/pip/_internal/cache.py +293 -0
  110. package/venv/lib/python3.10/site-packages/pip/_internal/cli/__init__.py +4 -0
  111. package/venv/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-310.pyc +0 -0
  112. package/venv/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc +0 -0
  113. package/venv/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-310.pyc +0 -0
  114. package/venv/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-310.pyc +0 -0
  115. package/venv/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-310.pyc +0 -0
  116. package/venv/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/main.cpython-310.pyc +0 -0
  117. package/venv/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc +0 -0
  118. package/venv/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/parser.cpython-310.pyc +0 -0
  119. package/venv/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc +0 -0
  120. package/venv/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-310.pyc +0 -0
  121. package/venv/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-310.pyc +0 -0
  122. package/venv/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc +0 -0
  123. package/venv/lib/python3.10/site-packages/pip/_internal/cli/autocompletion.py +171 -0
  124. package/venv/lib/python3.10/site-packages/pip/_internal/cli/base_command.py +216 -0
  125. package/venv/lib/python3.10/site-packages/pip/_internal/cli/cmdoptions.py +1055 -0
  126. package/venv/lib/python3.10/site-packages/pip/_internal/cli/command_context.py +27 -0
  127. package/venv/lib/python3.10/site-packages/pip/_internal/cli/main.py +70 -0
  128. package/venv/lib/python3.10/site-packages/pip/_internal/cli/main_parser.py +134 -0
  129. package/venv/lib/python3.10/site-packages/pip/_internal/cli/parser.py +294 -0
  130. package/venv/lib/python3.10/site-packages/pip/_internal/cli/progress_bars.py +68 -0
  131. package/venv/lib/python3.10/site-packages/pip/_internal/cli/req_command.py +502 -0
  132. package/venv/lib/python3.10/site-packages/pip/_internal/cli/spinners.py +159 -0
  133. package/venv/lib/python3.10/site-packages/pip/_internal/cli/status_codes.py +6 -0
  134. package/venv/lib/python3.10/site-packages/pip/_internal/commands/__init__.py +132 -0
  135. package/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-310.pyc +0 -0
  136. package/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/cache.cpython-310.pyc +0 -0
  137. package/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/check.cpython-310.pyc +0 -0
  138. package/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/completion.cpython-310.pyc +0 -0
  139. package/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-310.pyc +0 -0
  140. package/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/debug.cpython-310.pyc +0 -0
  141. package/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/download.cpython-310.pyc +0 -0
  142. package/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-310.pyc +0 -0
  143. package/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/hash.cpython-310.pyc +0 -0
  144. package/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/help.cpython-310.pyc +0 -0
  145. package/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/index.cpython-310.pyc +0 -0
  146. package/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-310.pyc +0 -0
  147. package/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/install.cpython-310.pyc +0 -0
  148. package/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/list.cpython-310.pyc +0 -0
  149. package/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/search.cpython-310.pyc +0 -0
  150. package/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/show.cpython-310.pyc +0 -0
  151. package/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-310.pyc +0 -0
  152. package/venv/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-310.pyc +0 -0
  153. package/venv/lib/python3.10/site-packages/pip/_internal/commands/cache.py +223 -0
  154. package/venv/lib/python3.10/site-packages/pip/_internal/commands/check.py +53 -0
  155. package/venv/lib/python3.10/site-packages/pip/_internal/commands/completion.py +126 -0
  156. package/venv/lib/python3.10/site-packages/pip/_internal/commands/configuration.py +282 -0
  157. package/venv/lib/python3.10/site-packages/pip/_internal/commands/debug.py +199 -0
  158. package/venv/lib/python3.10/site-packages/pip/_internal/commands/download.py +149 -0
  159. package/venv/lib/python3.10/site-packages/pip/_internal/commands/freeze.py +97 -0
  160. package/venv/lib/python3.10/site-packages/pip/_internal/commands/hash.py +59 -0
  161. package/venv/lib/python3.10/site-packages/pip/_internal/commands/help.py +41 -0
  162. package/venv/lib/python3.10/site-packages/pip/_internal/commands/index.py +139 -0
  163. package/venv/lib/python3.10/site-packages/pip/_internal/commands/inspect.py +92 -0
  164. package/venv/lib/python3.10/site-packages/pip/_internal/commands/install.py +873 -0
  165. package/venv/lib/python3.10/site-packages/pip/_internal/commands/list.py +365 -0
  166. package/venv/lib/python3.10/site-packages/pip/_internal/commands/search.py +174 -0
  167. package/venv/lib/python3.10/site-packages/pip/_internal/commands/show.py +189 -0
  168. package/venv/lib/python3.10/site-packages/pip/_internal/commands/uninstall.py +113 -0
  169. package/venv/lib/python3.10/site-packages/pip/_internal/commands/wheel.py +203 -0
  170. package/venv/lib/python3.10/site-packages/pip/_internal/configuration.py +374 -0
  171. package/venv/lib/python3.10/site-packages/pip/_internal/distributions/__init__.py +21 -0
  172. package/venv/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc +0 -0
  173. package/venv/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/base.cpython-310.pyc +0 -0
  174. package/venv/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-310.pyc +0 -0
  175. package/venv/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc +0 -0
  176. package/venv/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-310.pyc +0 -0
  177. package/venv/lib/python3.10/site-packages/pip/_internal/distributions/base.py +39 -0
  178. package/venv/lib/python3.10/site-packages/pip/_internal/distributions/installed.py +23 -0
  179. package/venv/lib/python3.10/site-packages/pip/_internal/distributions/sdist.py +150 -0
  180. package/venv/lib/python3.10/site-packages/pip/_internal/distributions/wheel.py +34 -0
  181. package/venv/lib/python3.10/site-packages/pip/_internal/exceptions.py +747 -0
  182. package/venv/lib/python3.10/site-packages/pip/_internal/index/__init__.py +2 -0
  183. package/venv/lib/python3.10/site-packages/pip/_internal/index/__pycache__/__init__.cpython-310.pyc +0 -0
  184. package/venv/lib/python3.10/site-packages/pip/_internal/index/__pycache__/collector.cpython-310.pyc +0 -0
  185. package/venv/lib/python3.10/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-310.pyc +0 -0
  186. package/venv/lib/python3.10/site-packages/pip/_internal/index/__pycache__/sources.cpython-310.pyc +0 -0
  187. package/venv/lib/python3.10/site-packages/pip/_internal/index/collector.py +505 -0
  188. package/venv/lib/python3.10/site-packages/pip/_internal/index/package_finder.py +1029 -0
  189. package/venv/lib/python3.10/site-packages/pip/_internal/index/sources.py +224 -0
  190. package/venv/lib/python3.10/site-packages/pip/_internal/locations/__init__.py +467 -0
  191. package/venv/lib/python3.10/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-310.pyc +0 -0
  192. package/venv/lib/python3.10/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc +0 -0
  193. package/venv/lib/python3.10/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-310.pyc +0 -0
  194. package/venv/lib/python3.10/site-packages/pip/_internal/locations/__pycache__/base.cpython-310.pyc +0 -0
  195. package/venv/lib/python3.10/site-packages/pip/_internal/locations/_distutils.py +173 -0
  196. package/venv/lib/python3.10/site-packages/pip/_internal/locations/_sysconfig.py +213 -0
  197. package/venv/lib/python3.10/site-packages/pip/_internal/locations/base.py +81 -0
  198. package/venv/lib/python3.10/site-packages/pip/_internal/main.py +12 -0
  199. package/venv/lib/python3.10/site-packages/pip/_internal/metadata/__init__.py +127 -0
  200. package/venv/lib/python3.10/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc +0 -0
  201. package/venv/lib/python3.10/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-310.pyc +0 -0
  202. package/venv/lib/python3.10/site-packages/pip/_internal/metadata/__pycache__/base.cpython-310.pyc +0 -0
  203. package/venv/lib/python3.10/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-310.pyc +0 -0
  204. package/venv/lib/python3.10/site-packages/pip/_internal/metadata/_json.py +84 -0
  205. package/venv/lib/python3.10/site-packages/pip/_internal/metadata/base.py +688 -0
  206. package/venv/lib/python3.10/site-packages/pip/_internal/metadata/importlib/__init__.py +4 -0
  207. package/venv/lib/python3.10/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-310.pyc +0 -0
  208. package/venv/lib/python3.10/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-310.pyc +0 -0
  209. package/venv/lib/python3.10/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-310.pyc +0 -0
  210. package/venv/lib/python3.10/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-310.pyc +0 -0
  211. package/venv/lib/python3.10/site-packages/pip/_internal/metadata/importlib/_compat.py +55 -0
  212. package/venv/lib/python3.10/site-packages/pip/_internal/metadata/importlib/_dists.py +224 -0
  213. package/venv/lib/python3.10/site-packages/pip/_internal/metadata/importlib/_envs.py +188 -0
  214. package/venv/lib/python3.10/site-packages/pip/_internal/metadata/pkg_resources.py +270 -0
  215. package/venv/lib/python3.10/site-packages/pip/_internal/models/__init__.py +2 -0
  216. package/venv/lib/python3.10/site-packages/pip/_internal/models/__pycache__/__init__.cpython-310.pyc +0 -0
  217. package/venv/lib/python3.10/site-packages/pip/_internal/models/__pycache__/candidate.cpython-310.pyc +0 -0
  218. package/venv/lib/python3.10/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-310.pyc +0 -0
  219. package/venv/lib/python3.10/site-packages/pip/_internal/models/__pycache__/format_control.cpython-310.pyc +0 -0
  220. package/venv/lib/python3.10/site-packages/pip/_internal/models/__pycache__/index.cpython-310.pyc +0 -0
  221. package/venv/lib/python3.10/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-310.pyc +0 -0
  222. package/venv/lib/python3.10/site-packages/pip/_internal/models/__pycache__/link.cpython-310.pyc +0 -0
  223. package/venv/lib/python3.10/site-packages/pip/_internal/models/__pycache__/scheme.cpython-310.pyc +0 -0
  224. package/venv/lib/python3.10/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-310.pyc +0 -0
  225. package/venv/lib/python3.10/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-310.pyc +0 -0
  226. package/venv/lib/python3.10/site-packages/pip/_internal/models/__pycache__/target_python.cpython-310.pyc +0 -0
  227. package/venv/lib/python3.10/site-packages/pip/_internal/models/__pycache__/wheel.cpython-310.pyc +0 -0
  228. package/venv/lib/python3.10/site-packages/pip/_internal/models/candidate.py +34 -0
  229. package/venv/lib/python3.10/site-packages/pip/_internal/models/direct_url.py +228 -0
  230. package/venv/lib/python3.10/site-packages/pip/_internal/models/format_control.py +80 -0
  231. package/venv/lib/python3.10/site-packages/pip/_internal/models/index.py +28 -0
  232. package/venv/lib/python3.10/site-packages/pip/_internal/models/installation_report.py +53 -0
  233. package/venv/lib/python3.10/site-packages/pip/_internal/models/link.py +524 -0
  234. package/venv/lib/python3.10/site-packages/pip/_internal/models/scheme.py +31 -0
  235. package/venv/lib/python3.10/site-packages/pip/_internal/models/search_scope.py +133 -0
  236. package/venv/lib/python3.10/site-packages/pip/_internal/models/selection_prefs.py +51 -0
  237. package/venv/lib/python3.10/site-packages/pip/_internal/models/target_python.py +110 -0
  238. package/venv/lib/python3.10/site-packages/pip/_internal/models/wheel.py +92 -0
  239. package/venv/lib/python3.10/site-packages/pip/_internal/network/__init__.py +2 -0
  240. package/venv/lib/python3.10/site-packages/pip/_internal/network/__pycache__/__init__.cpython-310.pyc +0 -0
  241. package/venv/lib/python3.10/site-packages/pip/_internal/network/__pycache__/auth.cpython-310.pyc +0 -0
  242. package/venv/lib/python3.10/site-packages/pip/_internal/network/__pycache__/cache.cpython-310.pyc +0 -0
  243. package/venv/lib/python3.10/site-packages/pip/_internal/network/__pycache__/download.cpython-310.pyc +0 -0
  244. package/venv/lib/python3.10/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-310.pyc +0 -0
  245. package/venv/lib/python3.10/site-packages/pip/_internal/network/__pycache__/session.cpython-310.pyc +0 -0
  246. package/venv/lib/python3.10/site-packages/pip/_internal/network/__pycache__/utils.cpython-310.pyc +0 -0
  247. package/venv/lib/python3.10/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-310.pyc +0 -0
  248. package/venv/lib/python3.10/site-packages/pip/_internal/network/auth.py +446 -0
  249. package/venv/lib/python3.10/site-packages/pip/_internal/network/cache.py +69 -0
  250. package/venv/lib/python3.10/site-packages/pip/_internal/network/download.py +186 -0
  251. package/venv/lib/python3.10/site-packages/pip/_internal/network/lazy_wheel.py +210 -0
  252. package/venv/lib/python3.10/site-packages/pip/_internal/network/session.py +518 -0
  253. package/venv/lib/python3.10/site-packages/pip/_internal/network/utils.py +96 -0
  254. package/venv/lib/python3.10/site-packages/pip/_internal/network/xmlrpc.py +60 -0
  255. package/venv/lib/python3.10/site-packages/pip/_internal/operations/__init__.py +0 -0
  256. package/venv/lib/python3.10/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-310.pyc +0 -0
  257. package/venv/lib/python3.10/site-packages/pip/_internal/operations/__pycache__/check.cpython-310.pyc +0 -0
  258. package/venv/lib/python3.10/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-310.pyc +0 -0
  259. package/venv/lib/python3.10/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-310.pyc +0 -0
  260. package/venv/lib/python3.10/site-packages/pip/_internal/operations/build/__init__.py +0 -0
  261. package/venv/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-310.pyc +0 -0
  262. package/venv/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-310.pyc +0 -0
  263. package/venv/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-310.pyc +0 -0
  264. package/venv/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-310.pyc +0 -0
  265. package/venv/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-310.pyc +0 -0
  266. package/venv/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc +0 -0
  267. package/venv/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-310.pyc +0 -0
  268. package/venv/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-310.pyc +0 -0
  269. package/venv/lib/python3.10/site-packages/pip/_internal/operations/build/build_tracker.py +124 -0
  270. package/venv/lib/python3.10/site-packages/pip/_internal/operations/build/metadata.py +39 -0
  271. package/venv/lib/python3.10/site-packages/pip/_internal/operations/build/metadata_editable.py +41 -0
  272. package/venv/lib/python3.10/site-packages/pip/_internal/operations/build/metadata_legacy.py +74 -0
  273. package/venv/lib/python3.10/site-packages/pip/_internal/operations/build/wheel.py +37 -0
  274. package/venv/lib/python3.10/site-packages/pip/_internal/operations/build/wheel_editable.py +46 -0
  275. package/venv/lib/python3.10/site-packages/pip/_internal/operations/build/wheel_legacy.py +102 -0
  276. package/venv/lib/python3.10/site-packages/pip/_internal/operations/check.py +149 -0
  277. package/venv/lib/python3.10/site-packages/pip/_internal/operations/freeze.py +254 -0
  278. package/venv/lib/python3.10/site-packages/pip/_internal/operations/install/__init__.py +2 -0
  279. package/venv/lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc +0 -0
  280. package/venv/lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-310.pyc +0 -0
  281. package/venv/lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/legacy.cpython-310.pyc +0 -0
  282. package/venv/lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-310.pyc +0 -0
  283. package/venv/lib/python3.10/site-packages/pip/_internal/operations/install/editable_legacy.py +47 -0
  284. package/venv/lib/python3.10/site-packages/pip/_internal/operations/install/legacy.py +120 -0
  285. package/venv/lib/python3.10/site-packages/pip/_internal/operations/install/wheel.py +738 -0
  286. package/venv/lib/python3.10/site-packages/pip/_internal/operations/prepare.py +667 -0
  287. package/venv/lib/python3.10/site-packages/pip/_internal/pyproject.py +174 -0
  288. package/venv/lib/python3.10/site-packages/pip/_internal/req/__init__.py +94 -0
  289. package/venv/lib/python3.10/site-packages/pip/_internal/req/__pycache__/__init__.cpython-310.pyc +0 -0
  290. package/venv/lib/python3.10/site-packages/pip/_internal/req/__pycache__/constructors.cpython-310.pyc +0 -0
  291. package/venv/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_file.cpython-310.pyc +0 -0
  292. package/venv/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_install.cpython-310.pyc +0 -0
  293. package/venv/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_set.cpython-310.pyc +0 -0
  294. package/venv/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-310.pyc +0 -0
  295. package/venv/lib/python3.10/site-packages/pip/_internal/req/constructors.py +501 -0
  296. package/venv/lib/python3.10/site-packages/pip/_internal/req/req_file.py +544 -0
  297. package/venv/lib/python3.10/site-packages/pip/_internal/req/req_install.py +946 -0
  298. package/venv/lib/python3.10/site-packages/pip/_internal/req/req_set.py +82 -0
  299. package/venv/lib/python3.10/site-packages/pip/_internal/req/req_uninstall.py +640 -0
  300. package/venv/lib/python3.10/site-packages/pip/_internal/resolution/__init__.py +0 -0
  301. package/venv/lib/python3.10/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc +0 -0
  302. package/venv/lib/python3.10/site-packages/pip/_internal/resolution/__pycache__/base.cpython-310.pyc +0 -0
  303. package/venv/lib/python3.10/site-packages/pip/_internal/resolution/base.py +20 -0
  304. package/venv/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
  305. package/venv/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc +0 -0
  306. package/venv/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc +0 -0
  307. package/venv/lib/python3.10/site-packages/pip/_internal/resolution/legacy/resolver.py +600 -0
  308. package/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
  309. package/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc +0 -0
  310. package/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-310.pyc +0 -0
  311. package/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-310.pyc +0 -0
  312. package/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-310.pyc +0 -0
  313. package/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-310.pyc +0 -0
  314. package/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-310.pyc +0 -0
  315. package/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-310.pyc +0 -0
  316. package/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-310.pyc +0 -0
  317. package/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-310.pyc +0 -0
  318. package/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/base.py +141 -0
  319. package/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/candidates.py +556 -0
  320. package/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/factory.py +731 -0
  321. package/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +155 -0
  322. package/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/provider.py +248 -0
  323. package/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/reporter.py +68 -0
  324. package/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/requirements.py +166 -0
  325. package/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/resolver.py +296 -0
  326. package/venv/lib/python3.10/site-packages/pip/_internal/self_outdated_check.py +242 -0
  327. package/venv/lib/python3.10/site-packages/pip/_internal/utils/__init__.py +0 -0
  328. package/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-310.pyc +0 -0
  329. package/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/_log.cpython-310.pyc +0 -0
  330. package/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-310.pyc +0 -0
  331. package/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/compat.cpython-310.pyc +0 -0
  332. package/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-310.pyc +0 -0
  333. package/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-310.pyc +0 -0
  334. package/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-310.pyc +0 -0
  335. package/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-310.pyc +0 -0
  336. package/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-310.pyc +0 -0
  337. package/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-310.pyc +0 -0
  338. package/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-310.pyc +0 -0
  339. package/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-310.pyc +0 -0
  340. package/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc +0 -0
  341. package/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-310.pyc +0 -0
  342. package/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-310.pyc +0 -0
  343. package/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-310.pyc +0 -0
  344. package/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-310.pyc +0 -0
  345. package/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/logging.cpython-310.pyc +0 -0
  346. package/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/misc.cpython-310.pyc +0 -0
  347. package/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/models.cpython-310.pyc +0 -0
  348. package/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-310.pyc +0 -0
  349. package/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-310.pyc +0 -0
  350. package/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-310.pyc +0 -0
  351. package/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-310.pyc +0 -0
  352. package/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-310.pyc +0 -0
  353. package/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/urls.cpython-310.pyc +0 -0
  354. package/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-310.pyc +0 -0
  355. package/venv/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-310.pyc +0 -0
  356. package/venv/lib/python3.10/site-packages/pip/_internal/utils/_log.py +38 -0
  357. package/venv/lib/python3.10/site-packages/pip/_internal/utils/appdirs.py +52 -0
  358. package/venv/lib/python3.10/site-packages/pip/_internal/utils/compat.py +63 -0
  359. package/venv/lib/python3.10/site-packages/pip/_internal/utils/compatibility_tags.py +165 -0
  360. package/venv/lib/python3.10/site-packages/pip/_internal/utils/datetime.py +11 -0
  361. package/venv/lib/python3.10/site-packages/pip/_internal/utils/deprecation.py +188 -0
  362. package/venv/lib/python3.10/site-packages/pip/_internal/utils/direct_url_helpers.py +87 -0
  363. package/venv/lib/python3.10/site-packages/pip/_internal/utils/distutils_args.py +43 -0
  364. package/venv/lib/python3.10/site-packages/pip/_internal/utils/egg_link.py +72 -0
  365. package/venv/lib/python3.10/site-packages/pip/_internal/utils/encoding.py +36 -0
  366. package/venv/lib/python3.10/site-packages/pip/_internal/utils/entrypoints.py +84 -0
  367. package/venv/lib/python3.10/site-packages/pip/_internal/utils/filesystem.py +153 -0
  368. package/venv/lib/python3.10/site-packages/pip/_internal/utils/filetypes.py +27 -0
  369. package/venv/lib/python3.10/site-packages/pip/_internal/utils/glibc.py +88 -0
  370. package/venv/lib/python3.10/site-packages/pip/_internal/utils/hashes.py +144 -0
  371. package/venv/lib/python3.10/site-packages/pip/_internal/utils/inject_securetransport.py +35 -0
  372. package/venv/lib/python3.10/site-packages/pip/_internal/utils/logging.py +348 -0
  373. package/venv/lib/python3.10/site-packages/pip/_internal/utils/misc.py +739 -0
  374. package/venv/lib/python3.10/site-packages/pip/_internal/utils/models.py +39 -0
  375. package/venv/lib/python3.10/site-packages/pip/_internal/utils/packaging.py +57 -0
  376. package/venv/lib/python3.10/site-packages/pip/_internal/utils/setuptools_build.py +195 -0
  377. package/venv/lib/python3.10/site-packages/pip/_internal/utils/subprocess.py +260 -0
  378. package/venv/lib/python3.10/site-packages/pip/_internal/utils/temp_dir.py +246 -0
  379. package/venv/lib/python3.10/site-packages/pip/_internal/utils/unpacking.py +257 -0
  380. package/venv/lib/python3.10/site-packages/pip/_internal/utils/urls.py +62 -0
  381. package/venv/lib/python3.10/site-packages/pip/_internal/utils/virtualenv.py +104 -0
  382. package/venv/lib/python3.10/site-packages/pip/_internal/utils/wheel.py +136 -0
  383. package/venv/lib/python3.10/site-packages/pip/_internal/vcs/__init__.py +15 -0
  384. package/venv/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc +0 -0
  385. package/venv/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-310.pyc +0 -0
  386. package/venv/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/git.cpython-310.pyc +0 -0
  387. package/venv/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-310.pyc +0 -0
  388. package/venv/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-310.pyc +0 -0
  389. package/venv/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-310.pyc +0 -0
  390. package/venv/lib/python3.10/site-packages/pip/_internal/vcs/bazaar.py +112 -0
  391. package/venv/lib/python3.10/site-packages/pip/_internal/vcs/git.py +526 -0
  392. package/venv/lib/python3.10/site-packages/pip/_internal/vcs/mercurial.py +163 -0
  393. package/venv/lib/python3.10/site-packages/pip/_internal/vcs/subversion.py +324 -0
  394. package/venv/lib/python3.10/site-packages/pip/_internal/vcs/versioncontrol.py +705 -0
  395. package/venv/lib/python3.10/site-packages/pip/_internal/wheel_builder.py +382 -0
  396. package/venv/lib/python3.10/site-packages/pip/_vendor/__init__.py +120 -0
  397. package/venv/lib/python3.10/site-packages/pip/_vendor/__pycache__/__init__.cpython-310.pyc +0 -0
  398. package/venv/lib/python3.10/site-packages/pip/_vendor/__pycache__/six.cpython-310.pyc +0 -0
  399. package/venv/lib/python3.10/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-310.pyc +0 -0
  400. package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__init__.py +18 -0
  401. package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-310.pyc +0 -0
  402. package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-310.pyc +0 -0
  403. package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-310.pyc +0 -0
  404. package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-310.pyc +0 -0
  405. package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-310.pyc +0 -0
  406. package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-310.pyc +0 -0
  407. package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-310.pyc +0 -0
  408. package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-310.pyc +0 -0
  409. package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-310.pyc +0 -0
  410. package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc +0 -0
  411. package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/_cmd.py +61 -0
  412. package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/adapter.py +137 -0
  413. package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/cache.py +65 -0
  414. package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +9 -0
  415. package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-310.pyc +0 -0
  416. package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-310.pyc +0 -0
  417. package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-310.pyc +0 -0
  418. package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +188 -0
  419. package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +39 -0
  420. package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/compat.py +32 -0
  421. package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/controller.py +439 -0
  422. package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/filewrapper.py +111 -0
  423. package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/heuristics.py +139 -0
  424. package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/serialize.py +190 -0
  425. package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/wrapper.py +33 -0
  426. package/venv/lib/python3.10/site-packages/pip/_vendor/certifi/__init__.py +4 -0
  427. package/venv/lib/python3.10/site-packages/pip/_vendor/certifi/__main__.py +12 -0
  428. package/venv/lib/python3.10/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc +0 -0
  429. package/venv/lib/python3.10/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-310.pyc +0 -0
  430. package/venv/lib/python3.10/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-310.pyc +0 -0
  431. package/venv/lib/python3.10/site-packages/pip/_vendor/certifi/cacert.pem +4527 -0
  432. package/venv/lib/python3.10/site-packages/pip/_vendor/certifi/core.py +108 -0
  433. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__init__.py +115 -0
  434. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-310.pyc +0 -0
  435. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-310.pyc +0 -0
  436. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-310.pyc +0 -0
  437. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-310.pyc +0 -0
  438. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-310.pyc +0 -0
  439. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-310.pyc +0 -0
  440. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-310.pyc +0 -0
  441. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-310.pyc +0 -0
  442. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-310.pyc +0 -0
  443. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-310.pyc +0 -0
  444. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-310.pyc +0 -0
  445. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-310.pyc +0 -0
  446. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-310.pyc +0 -0
  447. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-310.pyc +0 -0
  448. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-310.pyc +0 -0
  449. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-310.pyc +0 -0
  450. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-310.pyc +0 -0
  451. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-310.pyc +0 -0
  452. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-310.pyc +0 -0
  453. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-310.pyc +0 -0
  454. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-310.pyc +0 -0
  455. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-310.pyc +0 -0
  456. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-310.pyc +0 -0
  457. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-310.pyc +0 -0
  458. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-310.pyc +0 -0
  459. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-310.pyc +0 -0
  460. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-310.pyc +0 -0
  461. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-310.pyc +0 -0
  462. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-310.pyc +0 -0
  463. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-310.pyc +0 -0
  464. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-310.pyc +0 -0
  465. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-310.pyc +0 -0
  466. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-310.pyc +0 -0
  467. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-310.pyc +0 -0
  468. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-310.pyc +0 -0
  469. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-310.pyc +0 -0
  470. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-310.pyc +0 -0
  471. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-310.pyc +0 -0
  472. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-310.pyc +0 -0
  473. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-310.pyc +0 -0
  474. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-310.pyc +0 -0
  475. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-310.pyc +0 -0
  476. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-310.pyc +0 -0
  477. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-310.pyc +0 -0
  478. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/big5freq.py +386 -0
  479. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/big5prober.py +47 -0
  480. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/chardistribution.py +261 -0
  481. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/charsetgroupprober.py +106 -0
  482. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/charsetprober.py +147 -0
  483. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/cli/__init__.py +0 -0
  484. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-310.pyc +0 -0
  485. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-310.pyc +0 -0
  486. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/cli/chardetect.py +112 -0
  487. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/codingstatemachine.py +90 -0
  488. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/codingstatemachinedict.py +19 -0
  489. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/cp949prober.py +49 -0
  490. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/enums.py +85 -0
  491. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/escprober.py +102 -0
  492. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/escsm.py +261 -0
  493. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/eucjpprober.py +102 -0
  494. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/euckrfreq.py +196 -0
  495. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/euckrprober.py +47 -0
  496. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/euctwfreq.py +388 -0
  497. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/euctwprober.py +47 -0
  498. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/gb2312freq.py +284 -0
  499. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/gb2312prober.py +47 -0
  500. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/hebrewprober.py +316 -0
  501. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/jisfreq.py +325 -0
  502. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/johabfreq.py +2382 -0
  503. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/johabprober.py +47 -0
  504. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/jpcntx.py +238 -0
  505. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/langbulgarianmodel.py +4649 -0
  506. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/langgreekmodel.py +4397 -0
  507. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/langhebrewmodel.py +4380 -0
  508. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/langhungarianmodel.py +4649 -0
  509. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/langrussianmodel.py +5725 -0
  510. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/langthaimodel.py +4380 -0
  511. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/langturkishmodel.py +4380 -0
  512. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/latin1prober.py +147 -0
  513. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/macromanprober.py +162 -0
  514. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/mbcharsetprober.py +95 -0
  515. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/mbcsgroupprober.py +57 -0
  516. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/mbcssm.py +661 -0
  517. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/__init__.py +0 -0
  518. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-310.pyc +0 -0
  519. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-310.pyc +0 -0
  520. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/languages.py +352 -0
  521. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/resultdict.py +16 -0
  522. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/sbcharsetprober.py +162 -0
  523. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/sbcsgroupprober.py +88 -0
  524. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/sjisprober.py +105 -0
  525. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/universaldetector.py +362 -0
  526. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/utf1632prober.py +225 -0
  527. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/utf8prober.py +82 -0
  528. package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/version.py +9 -0
  529. package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/__init__.py +7 -0
  530. package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-310.pyc +0 -0
  531. package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-310.pyc +0 -0
  532. package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-310.pyc +0 -0
  533. package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-310.pyc +0 -0
  534. package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-310.pyc +0 -0
  535. package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-310.pyc +0 -0
  536. package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/ansi.py +102 -0
  537. package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/ansitowin32.py +277 -0
  538. package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/initialise.py +121 -0
  539. package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/tests/__init__.py +1 -0
  540. package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/tests/__pycache__/__init__.cpython-310.pyc +0 -0
  541. package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-310.pyc +0 -0
  542. package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-310.pyc +0 -0
  543. package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-310.pyc +0 -0
  544. package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-310.pyc +0 -0
  545. package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/tests/__pycache__/utils.cpython-310.pyc +0 -0
  546. package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-310.pyc +0 -0
  547. package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/tests/ansi_test.py +76 -0
  548. package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py +294 -0
  549. package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/tests/initialise_test.py +189 -0
  550. package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/tests/isatty_test.py +57 -0
  551. package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/tests/utils.py +49 -0
  552. package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/tests/winterm_test.py +131 -0
  553. package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/win32.py +180 -0
  554. package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/winterm.py +195 -0
  555. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/__init__.py +23 -0
  556. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-310.pyc +0 -0
  557. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-310.pyc +0 -0
  558. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-310.pyc +0 -0
  559. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-310.pyc +0 -0
  560. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-310.pyc +0 -0
  561. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-310.pyc +0 -0
  562. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-310.pyc +0 -0
  563. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-310.pyc +0 -0
  564. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-310.pyc +0 -0
  565. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-310.pyc +0 -0
  566. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-310.pyc +0 -0
  567. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-310.pyc +0 -0
  568. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-310.pyc +0 -0
  569. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/compat.py +1116 -0
  570. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/database.py +1350 -0
  571. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/index.py +508 -0
  572. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/locators.py +1300 -0
  573. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/manifest.py +393 -0
  574. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/markers.py +152 -0
  575. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/metadata.py +1076 -0
  576. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/resources.py +358 -0
  577. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/scripts.py +437 -0
  578. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/t32.exe +0 -0
  579. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
  580. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/t64.exe +0 -0
  581. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/util.py +1932 -0
  582. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/version.py +739 -0
  583. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/w32.exe +0 -0
  584. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
  585. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/w64.exe +0 -0
  586. package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/wheel.py +1082 -0
  587. package/venv/lib/python3.10/site-packages/pip/_vendor/distro/__init__.py +54 -0
  588. package/venv/lib/python3.10/site-packages/pip/_vendor/distro/__main__.py +4 -0
  589. package/venv/lib/python3.10/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-310.pyc +0 -0
  590. package/venv/lib/python3.10/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-310.pyc +0 -0
  591. package/venv/lib/python3.10/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-310.pyc +0 -0
  592. package/venv/lib/python3.10/site-packages/pip/_vendor/distro/distro.py +1399 -0
  593. package/venv/lib/python3.10/site-packages/pip/_vendor/idna/__init__.py +44 -0
  594. package/venv/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-310.pyc +0 -0
  595. package/venv/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-310.pyc +0 -0
  596. package/venv/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-310.pyc +0 -0
  597. package/venv/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/core.cpython-310.pyc +0 -0
  598. package/venv/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-310.pyc +0 -0
  599. package/venv/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-310.pyc +0 -0
  600. package/venv/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-310.pyc +0 -0
  601. package/venv/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-310.pyc +0 -0
  602. package/venv/lib/python3.10/site-packages/pip/_vendor/idna/codec.py +112 -0
  603. package/venv/lib/python3.10/site-packages/pip/_vendor/idna/compat.py +13 -0
  604. package/venv/lib/python3.10/site-packages/pip/_vendor/idna/core.py +400 -0
  605. package/venv/lib/python3.10/site-packages/pip/_vendor/idna/idnadata.py +2151 -0
  606. package/venv/lib/python3.10/site-packages/pip/_vendor/idna/intranges.py +54 -0
  607. package/venv/lib/python3.10/site-packages/pip/_vendor/idna/package_data.py +2 -0
  608. package/venv/lib/python3.10/site-packages/pip/_vendor/idna/uts46data.py +8600 -0
  609. package/venv/lib/python3.10/site-packages/pip/_vendor/msgpack/__init__.py +57 -0
  610. package/venv/lib/python3.10/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-310.pyc +0 -0
  611. package/venv/lib/python3.10/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-310.pyc +0 -0
  612. package/venv/lib/python3.10/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-310.pyc +0 -0
  613. package/venv/lib/python3.10/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-310.pyc +0 -0
  614. package/venv/lib/python3.10/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
  615. package/venv/lib/python3.10/site-packages/pip/_vendor/msgpack/ext.py +193 -0
  616. package/venv/lib/python3.10/site-packages/pip/_vendor/msgpack/fallback.py +1010 -0
  617. package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/__about__.py +26 -0
  618. package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/__init__.py +25 -0
  619. package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-310.pyc +0 -0
  620. package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-310.pyc +0 -0
  621. package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc +0 -0
  622. package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc +0 -0
  623. package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-310.pyc +0 -0
  624. package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-310.pyc +0 -0
  625. package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-310.pyc +0 -0
  626. package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc +0 -0
  627. package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-310.pyc +0 -0
  628. package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-310.pyc +0 -0
  629. package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-310.pyc +0 -0
  630. package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/_manylinux.py +301 -0
  631. package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/_musllinux.py +136 -0
  632. package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/_structures.py +61 -0
  633. package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/markers.py +304 -0
  634. package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/requirements.py +146 -0
  635. package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/specifiers.py +802 -0
  636. package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/tags.py +487 -0
  637. package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/utils.py +136 -0
  638. package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/version.py +504 -0
  639. package/venv/lib/python3.10/site-packages/pip/_vendor/pkg_resources/__init__.py +3296 -0
  640. package/venv/lib/python3.10/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-310.pyc +0 -0
  641. package/venv/lib/python3.10/site-packages/pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-310.pyc +0 -0
  642. package/venv/lib/python3.10/site-packages/pip/_vendor/pkg_resources/py31compat.py +23 -0
  643. package/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/__init__.py +342 -0
  644. package/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/__main__.py +46 -0
  645. package/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-310.pyc +0 -0
  646. package/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-310.pyc +0 -0
  647. package/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-310.pyc +0 -0
  648. package/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-310.pyc +0 -0
  649. package/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-310.pyc +0 -0
  650. package/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-310.pyc +0 -0
  651. package/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-310.pyc +0 -0
  652. package/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-310.pyc +0 -0
  653. package/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/android.py +120 -0
  654. package/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/api.py +156 -0
  655. package/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/macos.py +64 -0
  656. package/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/unix.py +181 -0
  657. package/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/version.py +4 -0
  658. package/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/windows.py +184 -0
  659. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__init__.py +82 -0
  660. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__main__.py +17 -0
  661. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-310.pyc +0 -0
  662. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-310.pyc +0 -0
  663. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-310.pyc +0 -0
  664. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-310.pyc +0 -0
  665. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-310.pyc +0 -0
  666. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-310.pyc +0 -0
  667. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-310.pyc +0 -0
  668. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-310.pyc +0 -0
  669. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-310.pyc +0 -0
  670. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-310.pyc +0 -0
  671. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-310.pyc +0 -0
  672. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-310.pyc +0 -0
  673. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-310.pyc +0 -0
  674. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-310.pyc +0 -0
  675. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-310.pyc +0 -0
  676. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-310.pyc +0 -0
  677. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/cmdline.py +668 -0
  678. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/console.py +70 -0
  679. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/filter.py +71 -0
  680. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/filters/__init__.py +940 -0
  681. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-310.pyc +0 -0
  682. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatter.py +94 -0
  683. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__init__.py +143 -0
  684. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-310.pyc +0 -0
  685. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-310.pyc +0 -0
  686. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-310.pyc +0 -0
  687. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-310.pyc +0 -0
  688. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-310.pyc +0 -0
  689. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-310.pyc +0 -0
  690. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-310.pyc +0 -0
  691. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-310.pyc +0 -0
  692. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-310.pyc +0 -0
  693. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-310.pyc +0 -0
  694. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-310.pyc +0 -0
  695. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-310.pyc +0 -0
  696. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-310.pyc +0 -0
  697. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-310.pyc +0 -0
  698. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/_mapping.py +23 -0
  699. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/bbcode.py +108 -0
  700. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/groff.py +170 -0
  701. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/html.py +989 -0
  702. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/img.py +645 -0
  703. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/irc.py +179 -0
  704. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/latex.py +521 -0
  705. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/other.py +161 -0
  706. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py +83 -0
  707. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/rtf.py +146 -0
  708. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/svg.py +188 -0
  709. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/terminal.py +127 -0
  710. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/terminal256.py +338 -0
  711. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/lexer.py +882 -0
  712. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/__init__.py +335 -0
  713. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-310.pyc +0 -0
  714. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-310.pyc +0 -0
  715. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-310.pyc +0 -0
  716. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/_mapping.py +541 -0
  717. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/python.py +1204 -0
  718. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/modeline.py +43 -0
  719. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/plugin.py +88 -0
  720. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/regexopt.py +91 -0
  721. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/scanner.py +104 -0
  722. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/sphinxext.py +155 -0
  723. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/style.py +197 -0
  724. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/styles/__init__.py +97 -0
  725. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-310.pyc +0 -0
  726. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/token.py +213 -0
  727. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/unistring.py +153 -0
  728. package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/util.py +308 -0
  729. package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/__init__.py +331 -0
  730. package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc +0 -0
  731. package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc +0 -0
  732. package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-310.pyc +0 -0
  733. package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-310.pyc +0 -0
  734. package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc +0 -0
  735. package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc +0 -0
  736. package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-310.pyc +0 -0
  737. package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc +0 -0
  738. package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc +0 -0
  739. package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-310.pyc +0 -0
  740. package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/actions.py +207 -0
  741. package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/common.py +424 -0
  742. package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/core.py +5814 -0
  743. package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/diagram/__init__.py +642 -0
  744. package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc +0 -0
  745. package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/exceptions.py +267 -0
  746. package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/helpers.py +1088 -0
  747. package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/results.py +760 -0
  748. package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/testing.py +331 -0
  749. package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/unicode.py +352 -0
  750. package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/util.py +235 -0
  751. package/venv/lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/__init__.py +23 -0
  752. package/venv/lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-310.pyc +0 -0
  753. package/venv/lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-310.pyc +0 -0
  754. package/venv/lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-310.pyc +0 -0
  755. package/venv/lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/_compat.py +8 -0
  756. package/venv/lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/_impl.py +330 -0
  757. package/venv/lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +18 -0
  758. package/venv/lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-310.pyc +0 -0
  759. package/venv/lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-310.pyc +0 -0
  760. package/venv/lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +353 -0
  761. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/__init__.py +182 -0
  762. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-310.pyc +0 -0
  763. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-310.pyc +0 -0
  764. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-310.pyc +0 -0
  765. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-310.pyc +0 -0
  766. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/api.cpython-310.pyc +0 -0
  767. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-310.pyc +0 -0
  768. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-310.pyc +0 -0
  769. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-310.pyc +0 -0
  770. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-310.pyc +0 -0
  771. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-310.pyc +0 -0
  772. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/help.cpython-310.pyc +0 -0
  773. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-310.pyc +0 -0
  774. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/models.cpython-310.pyc +0 -0
  775. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-310.pyc +0 -0
  776. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-310.pyc +0 -0
  777. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-310.pyc +0 -0
  778. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-310.pyc +0 -0
  779. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-310.pyc +0 -0
  780. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/__version__.py +14 -0
  781. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/_internal_utils.py +48 -0
  782. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/adapters.py +584 -0
  783. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/api.py +157 -0
  784. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/auth.py +315 -0
  785. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/certs.py +24 -0
  786. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/compat.py +67 -0
  787. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/cookies.py +561 -0
  788. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/exceptions.py +141 -0
  789. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/help.py +131 -0
  790. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/hooks.py +33 -0
  791. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/models.py +1034 -0
  792. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/packages.py +16 -0
  793. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/sessions.py +831 -0
  794. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/status_codes.py +128 -0
  795. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/structures.py +99 -0
  796. package/venv/lib/python3.10/site-packages/pip/_vendor/requests/utils.py +1086 -0
  797. package/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/__init__.py +26 -0
  798. package/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-310.pyc +0 -0
  799. package/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-310.pyc +0 -0
  800. package/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-310.pyc +0 -0
  801. package/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-310.pyc +0 -0
  802. package/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-310.pyc +0 -0
  803. package/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/__init__.py +0 -0
  804. package/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-310.pyc +0 -0
  805. package/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-310.pyc +0 -0
  806. package/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py +6 -0
  807. package/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/providers.py +133 -0
  808. package/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/reporters.py +43 -0
  809. package/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/resolvers.py +482 -0
  810. package/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/structs.py +165 -0
  811. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__init__.py +177 -0
  812. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__main__.py +274 -0
  813. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-310.pyc +0 -0
  814. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-310.pyc +0 -0
  815. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-310.pyc +0 -0
  816. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-310.pyc +0 -0
  817. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-310.pyc +0 -0
  818. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-310.pyc +0 -0
  819. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-310.pyc +0 -0
  820. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-310.pyc +0 -0
  821. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-310.pyc +0 -0
  822. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-310.pyc +0 -0
  823. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-310.pyc +0 -0
  824. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-310.pyc +0 -0
  825. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-310.pyc +0 -0
  826. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-310.pyc +0 -0
  827. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-310.pyc +0 -0
  828. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-310.pyc +0 -0
  829. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-310.pyc +0 -0
  830. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-310.pyc +0 -0
  831. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-310.pyc +0 -0
  832. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-310.pyc +0 -0
  833. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-310.pyc +0 -0
  834. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-310.pyc +0 -0
  835. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/align.cpython-310.pyc +0 -0
  836. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-310.pyc +0 -0
  837. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-310.pyc +0 -0
  838. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/box.cpython-310.pyc +0 -0
  839. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-310.pyc +0 -0
  840. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/color.cpython-310.pyc +0 -0
  841. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-310.pyc +0 -0
  842. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-310.pyc +0 -0
  843. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/console.cpython-310.pyc +0 -0
  844. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-310.pyc +0 -0
  845. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-310.pyc +0 -0
  846. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/control.cpython-310.pyc +0 -0
  847. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-310.pyc +0 -0
  848. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-310.pyc +0 -0
  849. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-310.pyc +0 -0
  850. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-310.pyc +0 -0
  851. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-310.pyc +0 -0
  852. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-310.pyc +0 -0
  853. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-310.pyc +0 -0
  854. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/json.cpython-310.pyc +0 -0
  855. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-310.pyc +0 -0
  856. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-310.pyc +0 -0
  857. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/live.cpython-310.pyc +0 -0
  858. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-310.pyc +0 -0
  859. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-310.pyc +0 -0
  860. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-310.pyc +0 -0
  861. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-310.pyc +0 -0
  862. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-310.pyc +0 -0
  863. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-310.pyc +0 -0
  864. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-310.pyc +0 -0
  865. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-310.pyc +0 -0
  866. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-310.pyc +0 -0
  867. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-310.pyc +0 -0
  868. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-310.pyc +0 -0
  869. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-310.pyc +0 -0
  870. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-310.pyc +0 -0
  871. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/region.cpython-310.pyc +0 -0
  872. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-310.pyc +0 -0
  873. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-310.pyc +0 -0
  874. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-310.pyc +0 -0
  875. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-310.pyc +0 -0
  876. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-310.pyc +0 -0
  877. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-310.pyc +0 -0
  878. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/status.cpython-310.pyc +0 -0
  879. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/style.cpython-310.pyc +0 -0
  880. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-310.pyc +0 -0
  881. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-310.pyc +0 -0
  882. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/table.cpython-310.pyc +0 -0
  883. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-310.pyc +0 -0
  884. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/text.cpython-310.pyc +0 -0
  885. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-310.pyc +0 -0
  886. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-310.pyc +0 -0
  887. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-310.pyc +0 -0
  888. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-310.pyc +0 -0
  889. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_cell_widths.py +451 -0
  890. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
  891. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
  892. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_export_format.py +78 -0
  893. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_extension.py +10 -0
  894. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_inspect.py +270 -0
  895. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_log_render.py +94 -0
  896. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_loop.py +43 -0
  897. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_null_file.py +83 -0
  898. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_palettes.py +309 -0
  899. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_pick.py +17 -0
  900. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_ratio.py +160 -0
  901. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_spinners.py +482 -0
  902. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_stack.py +16 -0
  903. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_timer.py +19 -0
  904. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_win32_console.py +662 -0
  905. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_windows.py +72 -0
  906. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_windows_renderer.py +56 -0
  907. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_wrap.py +56 -0
  908. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/abc.py +33 -0
  909. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/align.py +311 -0
  910. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/ansi.py +237 -0
  911. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/bar.py +94 -0
  912. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/box.py +517 -0
  913. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/cells.py +154 -0
  914. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/color.py +618 -0
  915. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
  916. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/columns.py +187 -0
  917. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/console.py +2612 -0
  918. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/constrain.py +37 -0
  919. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/containers.py +167 -0
  920. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/control.py +225 -0
  921. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/default_styles.py +188 -0
  922. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/diagnose.py +37 -0
  923. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/emoji.py +96 -0
  924. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/errors.py +34 -0
  925. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/file_proxy.py +54 -0
  926. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/filesize.py +89 -0
  927. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/highlighter.py +232 -0
  928. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/json.py +140 -0
  929. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/jupyter.py +101 -0
  930. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/layout.py +443 -0
  931. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/live.py +373 -0
  932. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/live_render.py +113 -0
  933. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/logging.py +289 -0
  934. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/markup.py +246 -0
  935. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/measure.py +151 -0
  936. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/padding.py +141 -0
  937. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/pager.py +34 -0
  938. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/palette.py +100 -0
  939. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/panel.py +308 -0
  940. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/pretty.py +1029 -0
  941. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/progress.py +1707 -0
  942. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/progress_bar.py +224 -0
  943. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/prompt.py +376 -0
  944. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/protocol.py +42 -0
  945. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/region.py +10 -0
  946. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/repr.py +149 -0
  947. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/rule.py +134 -0
  948. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/scope.py +86 -0
  949. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/screen.py +54 -0
  950. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/segment.py +739 -0
  951. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/spinner.py +136 -0
  952. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/status.py +132 -0
  953. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/style.py +773 -0
  954. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/styled.py +42 -0
  955. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/syntax.py +945 -0
  956. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/table.py +1002 -0
  957. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/terminal_theme.py +153 -0
  958. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/text.py +1311 -0
  959. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/theme.py +112 -0
  960. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/themes.py +5 -0
  961. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/traceback.py +677 -0
  962. package/venv/lib/python3.10/site-packages/pip/_vendor/rich/tree.py +251 -0
  963. package/venv/lib/python3.10/site-packages/pip/_vendor/six.py +998 -0
  964. package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/__init__.py +519 -0
  965. package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-310.pyc +0 -0
  966. package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-310.pyc +0 -0
  967. package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-310.pyc +0 -0
  968. package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-310.pyc +0 -0
  969. package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-310.pyc +0 -0
  970. package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-310.pyc +0 -0
  971. package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-310.pyc +0 -0
  972. package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-310.pyc +0 -0
  973. package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-310.pyc +0 -0
  974. package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-310.pyc +0 -0
  975. package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-310.pyc +0 -0
  976. package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/_asyncio.py +92 -0
  977. package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/_utils.py +68 -0
  978. package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/after.py +46 -0
  979. package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/before.py +41 -0
  980. package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/before_sleep.py +58 -0
  981. package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/nap.py +43 -0
  982. package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/retry.py +240 -0
  983. package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/stop.py +96 -0
  984. package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/tornadoweb.py +59 -0
  985. package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/wait.py +232 -0
  986. package/venv/lib/python3.10/site-packages/pip/_vendor/tomli/__init__.py +11 -0
  987. package/venv/lib/python3.10/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-310.pyc +0 -0
  988. package/venv/lib/python3.10/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-310.pyc +0 -0
  989. package/venv/lib/python3.10/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-310.pyc +0 -0
  990. package/venv/lib/python3.10/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-310.pyc +0 -0
  991. package/venv/lib/python3.10/site-packages/pip/_vendor/tomli/_parser.py +691 -0
  992. package/venv/lib/python3.10/site-packages/pip/_vendor/tomli/_re.py +107 -0
  993. package/venv/lib/python3.10/site-packages/pip/_vendor/tomli/_types.py +10 -0
  994. package/venv/lib/python3.10/site-packages/pip/_vendor/typing_extensions.py +2209 -0
  995. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/__init__.py +102 -0
  996. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-310.pyc +0 -0
  997. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-310.pyc +0 -0
  998. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-310.pyc +0 -0
  999. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-310.pyc +0 -0
  1000. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-310.pyc +0 -0
  1001. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-310.pyc +0 -0
  1002. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-310.pyc +0 -0
  1003. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-310.pyc +0 -0
  1004. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-310.pyc +0 -0
  1005. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-310.pyc +0 -0
  1006. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-310.pyc +0 -0
  1007. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/_collections.py +337 -0
  1008. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/_version.py +2 -0
  1009. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/connection.py +567 -0
  1010. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/connectionpool.py +1110 -0
  1011. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
  1012. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-310.pyc +0 -0
  1013. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-310.pyc +0 -0
  1014. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-310.pyc +0 -0
  1015. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-310.pyc +0 -0
  1016. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-310.pyc +0 -0
  1017. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-310.pyc +0 -0
  1018. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-310.pyc +0 -0
  1019. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +36 -0
  1020. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
  1021. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-310.pyc +0 -0
  1022. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-310.pyc +0 -0
  1023. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-310.pyc +0 -0
  1024. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +519 -0
  1025. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +397 -0
  1026. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/appengine.py +314 -0
  1027. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +130 -0
  1028. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +518 -0
  1029. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +921 -0
  1030. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/socks.py +216 -0
  1031. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/exceptions.py +323 -0
  1032. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/fields.py +274 -0
  1033. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/filepost.py +98 -0
  1034. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
  1035. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-310.pyc +0 -0
  1036. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-310.pyc +0 -0
  1037. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
  1038. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-310.pyc +0 -0
  1039. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-310.pyc +0 -0
  1040. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +51 -0
  1041. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/six.py +1076 -0
  1042. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/poolmanager.py +537 -0
  1043. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/request.py +170 -0
  1044. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/response.py +879 -0
  1045. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__init__.py +49 -0
  1046. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-310.pyc +0 -0
  1047. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-310.pyc +0 -0
  1048. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-310.pyc +0 -0
  1049. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-310.pyc +0 -0
  1050. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-310.pyc +0 -0
  1051. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-310.pyc +0 -0
  1052. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-310.pyc +0 -0
  1053. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-310.pyc +0 -0
  1054. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-310.pyc +0 -0
  1055. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-310.pyc +0 -0
  1056. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-310.pyc +0 -0
  1057. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-310.pyc +0 -0
  1058. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-310.pyc +0 -0
  1059. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/connection.py +149 -0
  1060. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/proxy.py +57 -0
  1061. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/queue.py +22 -0
  1062. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/request.py +137 -0
  1063. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/response.py +107 -0
  1064. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/retry.py +620 -0
  1065. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssl_.py +495 -0
  1066. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
  1067. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssltransport.py +221 -0
  1068. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/timeout.py +268 -0
  1069. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/url.py +435 -0
  1070. package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/wait.py +152 -0
  1071. package/venv/lib/python3.10/site-packages/pip/_vendor/vendor.txt +23 -0
  1072. package/venv/lib/python3.10/site-packages/pip/_vendor/webencodings/__init__.py +342 -0
  1073. package/venv/lib/python3.10/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-310.pyc +0 -0
  1074. package/venv/lib/python3.10/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-310.pyc +0 -0
  1075. package/venv/lib/python3.10/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-310.pyc +0 -0
  1076. package/venv/lib/python3.10/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-310.pyc +0 -0
  1077. package/venv/lib/python3.10/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-310.pyc +0 -0
  1078. package/venv/lib/python3.10/site-packages/pip/_vendor/webencodings/labels.py +231 -0
  1079. package/venv/lib/python3.10/site-packages/pip/_vendor/webencodings/mklabels.py +59 -0
  1080. package/venv/lib/python3.10/site-packages/pip/_vendor/webencodings/tests.py +153 -0
  1081. package/venv/lib/python3.10/site-packages/pip/_vendor/webencodings/x_user_defined.py +325 -0
  1082. package/venv/lib/python3.10/site-packages/pip/py.typed +4 -0
  1083. package/venv/lib/python3.10/site-packages/pip-23.0.1.dist-info/INSTALLER +1 -0
  1084. package/venv/lib/python3.10/site-packages/pip-23.0.1.dist-info/LICENSE.txt +20 -0
  1085. package/venv/lib/python3.10/site-packages/pip-23.0.1.dist-info/METADATA +88 -0
  1086. package/venv/lib/python3.10/site-packages/pip-23.0.1.dist-info/RECORD +1002 -0
  1087. package/venv/lib/python3.10/site-packages/pip-23.0.1.dist-info/REQUESTED +0 -0
  1088. package/venv/lib/python3.10/site-packages/pip-23.0.1.dist-info/WHEEL +5 -0
  1089. package/venv/lib/python3.10/site-packages/pip-23.0.1.dist-info/entry_points.txt +4 -0
  1090. package/venv/lib/python3.10/site-packages/pip-23.0.1.dist-info/top_level.txt +1 -0
  1091. package/venv/lib/python3.10/site-packages/pkg_resources/__init__.py +3296 -0
  1092. package/venv/lib/python3.10/site-packages/pkg_resources/__pycache__/__init__.cpython-310.pyc +0 -0
  1093. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/__init__.py +0 -0
  1094. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-310.pyc +0 -0
  1095. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-310.pyc +0 -0
  1096. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/__pycache__/zipp.cpython-310.pyc +0 -0
  1097. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/appdirs.py +608 -0
  1098. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/importlib_resources/__init__.py +36 -0
  1099. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/__init__.cpython-310.pyc +0 -0
  1100. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_adapters.cpython-310.pyc +0 -0
  1101. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_common.cpython-310.pyc +0 -0
  1102. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_compat.cpython-310.pyc +0 -0
  1103. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_itertools.cpython-310.pyc +0 -0
  1104. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_legacy.cpython-310.pyc +0 -0
  1105. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/abc.cpython-310.pyc +0 -0
  1106. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/readers.cpython-310.pyc +0 -0
  1107. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/simple.cpython-310.pyc +0 -0
  1108. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/importlib_resources/_adapters.py +170 -0
  1109. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/importlib_resources/_common.py +104 -0
  1110. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/importlib_resources/_compat.py +98 -0
  1111. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/importlib_resources/_itertools.py +35 -0
  1112. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/importlib_resources/_legacy.py +121 -0
  1113. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/importlib_resources/abc.py +137 -0
  1114. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/importlib_resources/readers.py +122 -0
  1115. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/importlib_resources/simple.py +116 -0
  1116. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/jaraco/__init__.py +0 -0
  1117. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/jaraco/__pycache__/__init__.cpython-310.pyc +0 -0
  1118. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/jaraco/__pycache__/context.cpython-310.pyc +0 -0
  1119. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/jaraco/__pycache__/functools.cpython-310.pyc +0 -0
  1120. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/jaraco/context.py +213 -0
  1121. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/jaraco/functools.py +525 -0
  1122. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/jaraco/text/__init__.py +599 -0
  1123. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/jaraco/text/__pycache__/__init__.cpython-310.pyc +0 -0
  1124. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/more_itertools/__init__.py +4 -0
  1125. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/__init__.cpython-310.pyc +0 -0
  1126. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/more.cpython-310.pyc +0 -0
  1127. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/recipes.cpython-310.pyc +0 -0
  1128. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/more_itertools/more.py +4316 -0
  1129. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/more_itertools/recipes.py +698 -0
  1130. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__about__.py +26 -0
  1131. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__init__.py +25 -0
  1132. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-310.pyc +0 -0
  1133. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-310.pyc +0 -0
  1134. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc +0 -0
  1135. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc +0 -0
  1136. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-310.pyc +0 -0
  1137. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-310.pyc +0 -0
  1138. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-310.pyc +0 -0
  1139. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc +0 -0
  1140. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-310.pyc +0 -0
  1141. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-310.pyc +0 -0
  1142. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-310.pyc +0 -0
  1143. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_manylinux.py +301 -0
  1144. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_musllinux.py +136 -0
  1145. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_structures.py +61 -0
  1146. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/markers.py +304 -0
  1147. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/requirements.py +146 -0
  1148. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/specifiers.py +802 -0
  1149. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/tags.py +487 -0
  1150. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/utils.py +136 -0
  1151. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/version.py +504 -0
  1152. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing/__init__.py +331 -0
  1153. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc +0 -0
  1154. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc +0 -0
  1155. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/common.cpython-310.pyc +0 -0
  1156. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/core.cpython-310.pyc +0 -0
  1157. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc +0 -0
  1158. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc +0 -0
  1159. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/results.cpython-310.pyc +0 -0
  1160. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc +0 -0
  1161. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc +0 -0
  1162. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/util.cpython-310.pyc +0 -0
  1163. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing/actions.py +207 -0
  1164. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing/common.py +424 -0
  1165. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing/core.py +5814 -0
  1166. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing/diagram/__init__.py +642 -0
  1167. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc +0 -0
  1168. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing/exceptions.py +267 -0
  1169. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing/helpers.py +1088 -0
  1170. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing/results.py +760 -0
  1171. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing/testing.py +331 -0
  1172. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing/unicode.py +352 -0
  1173. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing/util.py +235 -0
  1174. package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/zipp.py +329 -0
  1175. package/venv/lib/python3.10/site-packages/pkg_resources/extern/__init__.py +76 -0
  1176. package/venv/lib/python3.10/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-310.pyc +0 -0
  1177. package/venv/lib/python3.10/site-packages/requests/__init__.py +184 -0
  1178. package/venv/lib/python3.10/site-packages/requests/__pycache__/__init__.cpython-310.pyc +0 -0
  1179. package/venv/lib/python3.10/site-packages/requests/__pycache__/__version__.cpython-310.pyc +0 -0
  1180. package/venv/lib/python3.10/site-packages/requests/__pycache__/_internal_utils.cpython-310.pyc +0 -0
  1181. package/venv/lib/python3.10/site-packages/requests/__pycache__/adapters.cpython-310.pyc +0 -0
  1182. package/venv/lib/python3.10/site-packages/requests/__pycache__/api.cpython-310.pyc +0 -0
  1183. package/venv/lib/python3.10/site-packages/requests/__pycache__/auth.cpython-310.pyc +0 -0
  1184. package/venv/lib/python3.10/site-packages/requests/__pycache__/certs.cpython-310.pyc +0 -0
  1185. package/venv/lib/python3.10/site-packages/requests/__pycache__/compat.cpython-310.pyc +0 -0
  1186. package/venv/lib/python3.10/site-packages/requests/__pycache__/cookies.cpython-310.pyc +0 -0
  1187. package/venv/lib/python3.10/site-packages/requests/__pycache__/exceptions.cpython-310.pyc +0 -0
  1188. package/venv/lib/python3.10/site-packages/requests/__pycache__/help.cpython-310.pyc +0 -0
  1189. package/venv/lib/python3.10/site-packages/requests/__pycache__/hooks.cpython-310.pyc +0 -0
  1190. package/venv/lib/python3.10/site-packages/requests/__pycache__/models.cpython-310.pyc +0 -0
  1191. package/venv/lib/python3.10/site-packages/requests/__pycache__/packages.cpython-310.pyc +0 -0
  1192. package/venv/lib/python3.10/site-packages/requests/__pycache__/sessions.cpython-310.pyc +0 -0
  1193. package/venv/lib/python3.10/site-packages/requests/__pycache__/status_codes.cpython-310.pyc +0 -0
  1194. package/venv/lib/python3.10/site-packages/requests/__pycache__/structures.cpython-310.pyc +0 -0
  1195. package/venv/lib/python3.10/site-packages/requests/__pycache__/utils.cpython-310.pyc +0 -0
  1196. package/venv/lib/python3.10/site-packages/requests/__version__.py +14 -0
  1197. package/venv/lib/python3.10/site-packages/requests/_internal_utils.py +50 -0
  1198. package/venv/lib/python3.10/site-packages/requests/adapters.py +641 -0
  1199. package/venv/lib/python3.10/site-packages/requests/api.py +157 -0
  1200. package/venv/lib/python3.10/site-packages/requests/auth.py +314 -0
  1201. package/venv/lib/python3.10/site-packages/requests/certs.py +17 -0
  1202. package/venv/lib/python3.10/site-packages/requests/compat.py +94 -0
  1203. package/venv/lib/python3.10/site-packages/requests/cookies.py +561 -0
  1204. package/venv/lib/python3.10/site-packages/requests/exceptions.py +151 -0
  1205. package/venv/lib/python3.10/site-packages/requests/help.py +134 -0
  1206. package/venv/lib/python3.10/site-packages/requests/hooks.py +33 -0
  1207. package/venv/lib/python3.10/site-packages/requests/models.py +1037 -0
  1208. package/venv/lib/python3.10/site-packages/requests/packages.py +23 -0
  1209. package/venv/lib/python3.10/site-packages/requests/sessions.py +831 -0
  1210. package/venv/lib/python3.10/site-packages/requests/status_codes.py +128 -0
  1211. package/venv/lib/python3.10/site-packages/requests/structures.py +99 -0
  1212. package/venv/lib/python3.10/site-packages/requests/utils.py +1096 -0
  1213. package/venv/lib/python3.10/site-packages/requests-2.32.2.dist-info/INSTALLER +1 -0
  1214. package/venv/lib/python3.10/site-packages/requests-2.32.2.dist-info/LICENSE +175 -0
  1215. package/venv/lib/python3.10/site-packages/requests-2.32.2.dist-info/METADATA +119 -0
  1216. package/venv/lib/python3.10/site-packages/requests-2.32.2.dist-info/RECORD +43 -0
  1217. package/venv/lib/python3.10/site-packages/requests-2.32.2.dist-info/REQUESTED +0 -0
  1218. package/venv/lib/python3.10/site-packages/requests-2.32.2.dist-info/WHEEL +5 -0
  1219. package/venv/lib/python3.10/site-packages/requests-2.32.2.dist-info/top_level.txt +1 -0
  1220. package/venv/lib/python3.10/site-packages/setuptools/__init__.py +247 -0
  1221. package/venv/lib/python3.10/site-packages/setuptools/__pycache__/__init__.cpython-310.pyc +0 -0
  1222. package/venv/lib/python3.10/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-310.pyc +0 -0
  1223. package/venv/lib/python3.10/site-packages/setuptools/__pycache__/_entry_points.cpython-310.pyc +0 -0
  1224. package/venv/lib/python3.10/site-packages/setuptools/__pycache__/_imp.cpython-310.pyc +0 -0
  1225. package/venv/lib/python3.10/site-packages/setuptools/__pycache__/_importlib.cpython-310.pyc +0 -0
  1226. package/venv/lib/python3.10/site-packages/setuptools/__pycache__/_itertools.cpython-310.pyc +0 -0
  1227. package/venv/lib/python3.10/site-packages/setuptools/__pycache__/_path.cpython-310.pyc +0 -0
  1228. package/venv/lib/python3.10/site-packages/setuptools/__pycache__/_reqs.cpython-310.pyc +0 -0
  1229. package/venv/lib/python3.10/site-packages/setuptools/__pycache__/archive_util.cpython-310.pyc +0 -0
  1230. package/venv/lib/python3.10/site-packages/setuptools/__pycache__/build_meta.cpython-310.pyc +0 -0
  1231. package/venv/lib/python3.10/site-packages/setuptools/__pycache__/dep_util.cpython-310.pyc +0 -0
  1232. package/venv/lib/python3.10/site-packages/setuptools/__pycache__/depends.cpython-310.pyc +0 -0
  1233. package/venv/lib/python3.10/site-packages/setuptools/__pycache__/discovery.cpython-310.pyc +0 -0
  1234. package/venv/lib/python3.10/site-packages/setuptools/__pycache__/dist.cpython-310.pyc +0 -0
  1235. package/venv/lib/python3.10/site-packages/setuptools/__pycache__/errors.cpython-310.pyc +0 -0
  1236. package/venv/lib/python3.10/site-packages/setuptools/__pycache__/extension.cpython-310.pyc +0 -0
  1237. package/venv/lib/python3.10/site-packages/setuptools/__pycache__/glob.cpython-310.pyc +0 -0
  1238. package/venv/lib/python3.10/site-packages/setuptools/__pycache__/installer.cpython-310.pyc +0 -0
  1239. package/venv/lib/python3.10/site-packages/setuptools/__pycache__/launch.cpython-310.pyc +0 -0
  1240. package/venv/lib/python3.10/site-packages/setuptools/__pycache__/logging.cpython-310.pyc +0 -0
  1241. package/venv/lib/python3.10/site-packages/setuptools/__pycache__/monkey.cpython-310.pyc +0 -0
  1242. package/venv/lib/python3.10/site-packages/setuptools/__pycache__/msvc.cpython-310.pyc +0 -0
  1243. package/venv/lib/python3.10/site-packages/setuptools/__pycache__/namespaces.cpython-310.pyc +0 -0
  1244. package/venv/lib/python3.10/site-packages/setuptools/__pycache__/package_index.cpython-310.pyc +0 -0
  1245. package/venv/lib/python3.10/site-packages/setuptools/__pycache__/py34compat.cpython-310.pyc +0 -0
  1246. package/venv/lib/python3.10/site-packages/setuptools/__pycache__/sandbox.cpython-310.pyc +0 -0
  1247. package/venv/lib/python3.10/site-packages/setuptools/__pycache__/unicode_utils.cpython-310.pyc +0 -0
  1248. package/venv/lib/python3.10/site-packages/setuptools/__pycache__/version.cpython-310.pyc +0 -0
  1249. package/venv/lib/python3.10/site-packages/setuptools/__pycache__/wheel.cpython-310.pyc +0 -0
  1250. package/venv/lib/python3.10/site-packages/setuptools/__pycache__/windows_support.cpython-310.pyc +0 -0
  1251. package/venv/lib/python3.10/site-packages/setuptools/_deprecation_warning.py +7 -0
  1252. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__init__.py +24 -0
  1253. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-310.pyc +0 -0
  1254. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/_collections.cpython-310.pyc +0 -0
  1255. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/_functools.cpython-310.pyc +0 -0
  1256. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/_macos_compat.cpython-310.pyc +0 -0
  1257. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-310.pyc +0 -0
  1258. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-310.pyc +0 -0
  1259. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/bcppcompiler.cpython-310.pyc +0 -0
  1260. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/ccompiler.cpython-310.pyc +0 -0
  1261. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-310.pyc +0 -0
  1262. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/config.cpython-310.pyc +0 -0
  1263. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/core.cpython-310.pyc +0 -0
  1264. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/cygwinccompiler.cpython-310.pyc +0 -0
  1265. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/debug.cpython-310.pyc +0 -0
  1266. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-310.pyc +0 -0
  1267. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-310.pyc +0 -0
  1268. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/dist.cpython-310.pyc +0 -0
  1269. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/errors.cpython-310.pyc +0 -0
  1270. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/extension.cpython-310.pyc +0 -0
  1271. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/fancy_getopt.cpython-310.pyc +0 -0
  1272. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/file_util.cpython-310.pyc +0 -0
  1273. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-310.pyc +0 -0
  1274. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/log.cpython-310.pyc +0 -0
  1275. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/msvc9compiler.cpython-310.pyc +0 -0
  1276. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/msvccompiler.cpython-310.pyc +0 -0
  1277. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/py38compat.cpython-310.pyc +0 -0
  1278. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/py39compat.cpython-310.pyc +0 -0
  1279. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-310.pyc +0 -0
  1280. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-310.pyc +0 -0
  1281. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/text_file.cpython-310.pyc +0 -0
  1282. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/unixccompiler.cpython-310.pyc +0 -0
  1283. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/util.cpython-310.pyc +0 -0
  1284. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/version.cpython-310.pyc +0 -0
  1285. package/venv/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-310.pyc +0 -0
  1286. package/venv/lib/python3.10/site-packages/setuptools/_distutils/_collections.py +56 -0
  1287. package/venv/lib/python3.10/site-packages/setuptools/_distutils/_functools.py +20 -0
  1288. package/venv/lib/python3.10/site-packages/setuptools/_distutils/_macos_compat.py +12 -0
  1289. package/venv/lib/python3.10/site-packages/setuptools/_distutils/_msvccompiler.py +572 -0
  1290. package/venv/lib/python3.10/site-packages/setuptools/_distutils/archive_util.py +280 -0
  1291. package/venv/lib/python3.10/site-packages/setuptools/_distutils/bcppcompiler.py +408 -0
  1292. package/venv/lib/python3.10/site-packages/setuptools/_distutils/ccompiler.py +1220 -0
  1293. package/venv/lib/python3.10/site-packages/setuptools/_distutils/cmd.py +436 -0
  1294. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__init__.py +25 -0
  1295. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/__init__.cpython-310.pyc +0 -0
  1296. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/_framework_compat.cpython-310.pyc +0 -0
  1297. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/bdist.cpython-310.pyc +0 -0
  1298. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/bdist_dumb.cpython-310.pyc +0 -0
  1299. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/bdist_rpm.cpython-310.pyc +0 -0
  1300. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/build.cpython-310.pyc +0 -0
  1301. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/build_clib.cpython-310.pyc +0 -0
  1302. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/build_ext.cpython-310.pyc +0 -0
  1303. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/build_py.cpython-310.pyc +0 -0
  1304. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/build_scripts.cpython-310.pyc +0 -0
  1305. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/check.cpython-310.pyc +0 -0
  1306. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/clean.cpython-310.pyc +0 -0
  1307. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/config.cpython-310.pyc +0 -0
  1308. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install.cpython-310.pyc +0 -0
  1309. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install_data.cpython-310.pyc +0 -0
  1310. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install_egg_info.cpython-310.pyc +0 -0
  1311. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install_headers.cpython-310.pyc +0 -0
  1312. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-310.pyc +0 -0
  1313. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-310.pyc +0 -0
  1314. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/py37compat.cpython-310.pyc +0 -0
  1315. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/register.cpython-310.pyc +0 -0
  1316. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-310.pyc +0 -0
  1317. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/upload.cpython-310.pyc +0 -0
  1318. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/_framework_compat.py +55 -0
  1319. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist.py +157 -0
  1320. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_dumb.py +144 -0
  1321. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_rpm.py +615 -0
  1322. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/build.py +153 -0
  1323. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/build_clib.py +208 -0
  1324. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/build_ext.py +787 -0
  1325. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/build_py.py +407 -0
  1326. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/build_scripts.py +173 -0
  1327. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/check.py +151 -0
  1328. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/clean.py +76 -0
  1329. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/config.py +377 -0
  1330. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/install.py +814 -0
  1331. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/install_data.py +84 -0
  1332. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/install_egg_info.py +91 -0
  1333. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/install_headers.py +45 -0
  1334. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/install_lib.py +238 -0
  1335. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/install_scripts.py +61 -0
  1336. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/py37compat.py +31 -0
  1337. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/register.py +319 -0
  1338. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/sdist.py +531 -0
  1339. package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/upload.py +205 -0
  1340. package/venv/lib/python3.10/site-packages/setuptools/_distutils/config.py +139 -0
  1341. package/venv/lib/python3.10/site-packages/setuptools/_distutils/core.py +291 -0
  1342. package/venv/lib/python3.10/site-packages/setuptools/_distutils/cygwinccompiler.py +364 -0
  1343. package/venv/lib/python3.10/site-packages/setuptools/_distutils/debug.py +5 -0
  1344. package/venv/lib/python3.10/site-packages/setuptools/_distutils/dep_util.py +96 -0
  1345. package/venv/lib/python3.10/site-packages/setuptools/_distutils/dir_util.py +243 -0
  1346. package/venv/lib/python3.10/site-packages/setuptools/_distutils/dist.py +1286 -0
  1347. package/venv/lib/python3.10/site-packages/setuptools/_distutils/errors.py +127 -0
  1348. package/venv/lib/python3.10/site-packages/setuptools/_distutils/extension.py +248 -0
  1349. package/venv/lib/python3.10/site-packages/setuptools/_distutils/fancy_getopt.py +470 -0
  1350. package/venv/lib/python3.10/site-packages/setuptools/_distutils/file_util.py +249 -0
  1351. package/venv/lib/python3.10/site-packages/setuptools/_distutils/filelist.py +371 -0
  1352. package/venv/lib/python3.10/site-packages/setuptools/_distutils/log.py +80 -0
  1353. package/venv/lib/python3.10/site-packages/setuptools/_distutils/msvc9compiler.py +832 -0
  1354. package/venv/lib/python3.10/site-packages/setuptools/_distutils/msvccompiler.py +695 -0
  1355. package/venv/lib/python3.10/site-packages/setuptools/_distutils/py38compat.py +8 -0
  1356. package/venv/lib/python3.10/site-packages/setuptools/_distutils/py39compat.py +22 -0
  1357. package/venv/lib/python3.10/site-packages/setuptools/_distutils/spawn.py +109 -0
  1358. package/venv/lib/python3.10/site-packages/setuptools/_distutils/sysconfig.py +558 -0
  1359. package/venv/lib/python3.10/site-packages/setuptools/_distutils/text_file.py +287 -0
  1360. package/venv/lib/python3.10/site-packages/setuptools/_distutils/unixccompiler.py +401 -0
  1361. package/venv/lib/python3.10/site-packages/setuptools/_distutils/util.py +513 -0
  1362. package/venv/lib/python3.10/site-packages/setuptools/_distutils/version.py +358 -0
  1363. package/venv/lib/python3.10/site-packages/setuptools/_distutils/versionpredicate.py +175 -0
  1364. package/venv/lib/python3.10/site-packages/setuptools/_entry_points.py +86 -0
  1365. package/venv/lib/python3.10/site-packages/setuptools/_imp.py +82 -0
  1366. package/venv/lib/python3.10/site-packages/setuptools/_importlib.py +47 -0
  1367. package/venv/lib/python3.10/site-packages/setuptools/_itertools.py +23 -0
  1368. package/venv/lib/python3.10/site-packages/setuptools/_path.py +29 -0
  1369. package/venv/lib/python3.10/site-packages/setuptools/_reqs.py +19 -0
  1370. package/venv/lib/python3.10/site-packages/setuptools/_vendor/__init__.py +0 -0
  1371. package/venv/lib/python3.10/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-310.pyc +0 -0
  1372. package/venv/lib/python3.10/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-310.pyc +0 -0
  1373. package/venv/lib/python3.10/site-packages/setuptools/_vendor/__pycache__/typing_extensions.cpython-310.pyc +0 -0
  1374. package/venv/lib/python3.10/site-packages/setuptools/_vendor/__pycache__/zipp.cpython-310.pyc +0 -0
  1375. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/__init__.py +1047 -0
  1376. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/__init__.cpython-310.pyc +0 -0
  1377. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_adapters.cpython-310.pyc +0 -0
  1378. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_collections.cpython-310.pyc +0 -0
  1379. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_compat.cpython-310.pyc +0 -0
  1380. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_functools.cpython-310.pyc +0 -0
  1381. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_itertools.cpython-310.pyc +0 -0
  1382. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_meta.cpython-310.pyc +0 -0
  1383. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_text.cpython-310.pyc +0 -0
  1384. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py +68 -0
  1385. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/_collections.py +30 -0
  1386. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/_compat.py +71 -0
  1387. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/_functools.py +104 -0
  1388. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py +73 -0
  1389. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/_meta.py +48 -0
  1390. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/_text.py +99 -0
  1391. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_resources/__init__.py +36 -0
  1392. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_resources/__pycache__/__init__.cpython-310.pyc +0 -0
  1393. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_adapters.cpython-310.pyc +0 -0
  1394. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_common.cpython-310.pyc +0 -0
  1395. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_compat.cpython-310.pyc +0 -0
  1396. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_itertools.cpython-310.pyc +0 -0
  1397. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_legacy.cpython-310.pyc +0 -0
  1398. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_resources/__pycache__/abc.cpython-310.pyc +0 -0
  1399. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_resources/__pycache__/readers.cpython-310.pyc +0 -0
  1400. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_resources/__pycache__/simple.cpython-310.pyc +0 -0
  1401. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_resources/_adapters.py +170 -0
  1402. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_resources/_common.py +104 -0
  1403. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_resources/_compat.py +98 -0
  1404. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_resources/_itertools.py +35 -0
  1405. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_resources/_legacy.py +121 -0
  1406. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_resources/abc.py +137 -0
  1407. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_resources/readers.py +122 -0
  1408. package/venv/lib/python3.10/site-packages/setuptools/_vendor/importlib_resources/simple.py +116 -0
  1409. package/venv/lib/python3.10/site-packages/setuptools/_vendor/jaraco/__init__.py +0 -0
  1410. package/venv/lib/python3.10/site-packages/setuptools/_vendor/jaraco/__pycache__/__init__.cpython-310.pyc +0 -0
  1411. package/venv/lib/python3.10/site-packages/setuptools/_vendor/jaraco/__pycache__/context.cpython-310.pyc +0 -0
  1412. package/venv/lib/python3.10/site-packages/setuptools/_vendor/jaraco/__pycache__/functools.cpython-310.pyc +0 -0
  1413. package/venv/lib/python3.10/site-packages/setuptools/_vendor/jaraco/context.py +213 -0
  1414. package/venv/lib/python3.10/site-packages/setuptools/_vendor/jaraco/functools.py +525 -0
  1415. package/venv/lib/python3.10/site-packages/setuptools/_vendor/jaraco/text/__init__.py +599 -0
  1416. package/venv/lib/python3.10/site-packages/setuptools/_vendor/jaraco/text/__pycache__/__init__.cpython-310.pyc +0 -0
  1417. package/venv/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__init__.py +4 -0
  1418. package/venv/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-310.pyc +0 -0
  1419. package/venv/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__pycache__/more.cpython-310.pyc +0 -0
  1420. package/venv/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-310.pyc +0 -0
  1421. package/venv/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/more.py +3824 -0
  1422. package/venv/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/recipes.py +620 -0
  1423. package/venv/lib/python3.10/site-packages/setuptools/_vendor/ordered_set.py +488 -0
  1424. package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__about__.py +26 -0
  1425. package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__init__.py +25 -0
  1426. package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-310.pyc +0 -0
  1427. package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-310.pyc +0 -0
  1428. package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc +0 -0
  1429. package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc +0 -0
  1430. package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-310.pyc +0 -0
  1431. package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-310.pyc +0 -0
  1432. package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-310.pyc +0 -0
  1433. package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc +0 -0
  1434. package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-310.pyc +0 -0
  1435. package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-310.pyc +0 -0
  1436. package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-310.pyc +0 -0
  1437. package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/_manylinux.py +301 -0
  1438. package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/_musllinux.py +136 -0
  1439. package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/_structures.py +61 -0
  1440. package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/markers.py +304 -0
  1441. package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/requirements.py +146 -0
  1442. package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/specifiers.py +802 -0
  1443. package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/tags.py +487 -0
  1444. package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/utils.py +136 -0
  1445. package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/version.py +504 -0
  1446. package/venv/lib/python3.10/site-packages/setuptools/_vendor/pyparsing/__init__.py +331 -0
  1447. package/venv/lib/python3.10/site-packages/setuptools/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc +0 -0
  1448. package/venv/lib/python3.10/site-packages/setuptools/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc +0 -0
  1449. package/venv/lib/python3.10/site-packages/setuptools/_vendor/pyparsing/__pycache__/common.cpython-310.pyc +0 -0
  1450. package/venv/lib/python3.10/site-packages/setuptools/_vendor/pyparsing/__pycache__/core.cpython-310.pyc +0 -0
  1451. package/venv/lib/python3.10/site-packages/setuptools/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc +0 -0
  1452. package/venv/lib/python3.10/site-packages/setuptools/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc +0 -0
  1453. package/venv/lib/python3.10/site-packages/setuptools/_vendor/pyparsing/__pycache__/results.cpython-310.pyc +0 -0
  1454. package/venv/lib/python3.10/site-packages/setuptools/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc +0 -0
  1455. package/venv/lib/python3.10/site-packages/setuptools/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc +0 -0
  1456. package/venv/lib/python3.10/site-packages/setuptools/_vendor/pyparsing/__pycache__/util.cpython-310.pyc +0 -0
  1457. package/venv/lib/python3.10/site-packages/setuptools/_vendor/pyparsing/actions.py +207 -0
  1458. package/venv/lib/python3.10/site-packages/setuptools/_vendor/pyparsing/common.py +424 -0
  1459. package/venv/lib/python3.10/site-packages/setuptools/_vendor/pyparsing/core.py +5814 -0
  1460. package/venv/lib/python3.10/site-packages/setuptools/_vendor/pyparsing/diagram/__init__.py +642 -0
  1461. package/venv/lib/python3.10/site-packages/setuptools/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc +0 -0
  1462. package/venv/lib/python3.10/site-packages/setuptools/_vendor/pyparsing/exceptions.py +267 -0
  1463. package/venv/lib/python3.10/site-packages/setuptools/_vendor/pyparsing/helpers.py +1088 -0
  1464. package/venv/lib/python3.10/site-packages/setuptools/_vendor/pyparsing/results.py +760 -0
  1465. package/venv/lib/python3.10/site-packages/setuptools/_vendor/pyparsing/testing.py +331 -0
  1466. package/venv/lib/python3.10/site-packages/setuptools/_vendor/pyparsing/unicode.py +352 -0
  1467. package/venv/lib/python3.10/site-packages/setuptools/_vendor/pyparsing/util.py +235 -0
  1468. package/venv/lib/python3.10/site-packages/setuptools/_vendor/tomli/__init__.py +11 -0
  1469. package/venv/lib/python3.10/site-packages/setuptools/_vendor/tomli/__pycache__/__init__.cpython-310.pyc +0 -0
  1470. package/venv/lib/python3.10/site-packages/setuptools/_vendor/tomli/__pycache__/_parser.cpython-310.pyc +0 -0
  1471. package/venv/lib/python3.10/site-packages/setuptools/_vendor/tomli/__pycache__/_re.cpython-310.pyc +0 -0
  1472. package/venv/lib/python3.10/site-packages/setuptools/_vendor/tomli/__pycache__/_types.cpython-310.pyc +0 -0
  1473. package/venv/lib/python3.10/site-packages/setuptools/_vendor/tomli/_parser.py +691 -0
  1474. package/venv/lib/python3.10/site-packages/setuptools/_vendor/tomli/_re.py +107 -0
  1475. package/venv/lib/python3.10/site-packages/setuptools/_vendor/tomli/_types.py +10 -0
  1476. package/venv/lib/python3.10/site-packages/setuptools/_vendor/typing_extensions.py +2296 -0
  1477. package/venv/lib/python3.10/site-packages/setuptools/_vendor/zipp.py +329 -0
  1478. package/venv/lib/python3.10/site-packages/setuptools/archive_util.py +213 -0
  1479. package/venv/lib/python3.10/site-packages/setuptools/build_meta.py +511 -0
  1480. package/venv/lib/python3.10/site-packages/setuptools/cli-32.exe +0 -0
  1481. package/venv/lib/python3.10/site-packages/setuptools/cli-64.exe +0 -0
  1482. package/venv/lib/python3.10/site-packages/setuptools/cli-arm64.exe +0 -0
  1483. package/venv/lib/python3.10/site-packages/setuptools/cli.exe +0 -0
  1484. package/venv/lib/python3.10/site-packages/setuptools/command/__init__.py +12 -0
  1485. package/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/__init__.cpython-310.pyc +0 -0
  1486. package/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/alias.cpython-310.pyc +0 -0
  1487. package/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-310.pyc +0 -0
  1488. package/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-310.pyc +0 -0
  1489. package/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/build.cpython-310.pyc +0 -0
  1490. package/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/build_clib.cpython-310.pyc +0 -0
  1491. package/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/build_ext.cpython-310.pyc +0 -0
  1492. package/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/build_py.cpython-310.pyc +0 -0
  1493. package/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/develop.cpython-310.pyc +0 -0
  1494. package/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/dist_info.cpython-310.pyc +0 -0
  1495. package/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/easy_install.cpython-310.pyc +0 -0
  1496. package/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/editable_wheel.cpython-310.pyc +0 -0
  1497. package/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/egg_info.cpython-310.pyc +0 -0
  1498. package/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/install.cpython-310.pyc +0 -0
  1499. package/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-310.pyc +0 -0
  1500. package/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/install_lib.cpython-310.pyc +0 -0
  1501. package/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/install_scripts.cpython-310.pyc +0 -0
  1502. package/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/py36compat.cpython-310.pyc +0 -0
  1503. package/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/register.cpython-310.pyc +0 -0
  1504. package/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/rotate.cpython-310.pyc +0 -0
  1505. package/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/saveopts.cpython-310.pyc +0 -0
  1506. package/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/sdist.cpython-310.pyc +0 -0
  1507. package/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/setopt.cpython-310.pyc +0 -0
  1508. package/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/test.cpython-310.pyc +0 -0
  1509. package/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/upload.cpython-310.pyc +0 -0
  1510. package/venv/lib/python3.10/site-packages/setuptools/command/__pycache__/upload_docs.cpython-310.pyc +0 -0
  1511. package/venv/lib/python3.10/site-packages/setuptools/command/alias.py +78 -0
  1512. package/venv/lib/python3.10/site-packages/setuptools/command/bdist_egg.py +457 -0
  1513. package/venv/lib/python3.10/site-packages/setuptools/command/bdist_rpm.py +40 -0
  1514. package/venv/lib/python3.10/site-packages/setuptools/command/build.py +146 -0
  1515. package/venv/lib/python3.10/site-packages/setuptools/command/build_clib.py +101 -0
  1516. package/venv/lib/python3.10/site-packages/setuptools/command/build_ext.py +383 -0
  1517. package/venv/lib/python3.10/site-packages/setuptools/command/build_py.py +368 -0
  1518. package/venv/lib/python3.10/site-packages/setuptools/command/develop.py +193 -0
  1519. package/venv/lib/python3.10/site-packages/setuptools/command/dist_info.py +142 -0
  1520. package/venv/lib/python3.10/site-packages/setuptools/command/easy_install.py +2312 -0
  1521. package/venv/lib/python3.10/site-packages/setuptools/command/editable_wheel.py +844 -0
  1522. package/venv/lib/python3.10/site-packages/setuptools/command/egg_info.py +763 -0
  1523. package/venv/lib/python3.10/site-packages/setuptools/command/install.py +139 -0
  1524. package/venv/lib/python3.10/site-packages/setuptools/command/install_egg_info.py +63 -0
  1525. package/venv/lib/python3.10/site-packages/setuptools/command/install_lib.py +122 -0
  1526. package/venv/lib/python3.10/site-packages/setuptools/command/install_scripts.py +70 -0
  1527. package/venv/lib/python3.10/site-packages/setuptools/command/launcher manifest.xml +15 -0
  1528. package/venv/lib/python3.10/site-packages/setuptools/command/py36compat.py +134 -0
  1529. package/venv/lib/python3.10/site-packages/setuptools/command/register.py +18 -0
  1530. package/venv/lib/python3.10/site-packages/setuptools/command/rotate.py +64 -0
  1531. package/venv/lib/python3.10/site-packages/setuptools/command/saveopts.py +22 -0
  1532. package/venv/lib/python3.10/site-packages/setuptools/command/sdist.py +210 -0
  1533. package/venv/lib/python3.10/site-packages/setuptools/command/setopt.py +149 -0
  1534. package/venv/lib/python3.10/site-packages/setuptools/command/test.py +251 -0
  1535. package/venv/lib/python3.10/site-packages/setuptools/command/upload.py +17 -0
  1536. package/venv/lib/python3.10/site-packages/setuptools/command/upload_docs.py +213 -0
  1537. package/venv/lib/python3.10/site-packages/setuptools/config/__init__.py +35 -0
  1538. package/venv/lib/python3.10/site-packages/setuptools/config/__pycache__/__init__.cpython-310.pyc +0 -0
  1539. package/venv/lib/python3.10/site-packages/setuptools/config/__pycache__/_apply_pyprojecttoml.cpython-310.pyc +0 -0
  1540. package/venv/lib/python3.10/site-packages/setuptools/config/__pycache__/expand.cpython-310.pyc +0 -0
  1541. package/venv/lib/python3.10/site-packages/setuptools/config/__pycache__/pyprojecttoml.cpython-310.pyc +0 -0
  1542. package/venv/lib/python3.10/site-packages/setuptools/config/__pycache__/setupcfg.cpython-310.pyc +0 -0
  1543. package/venv/lib/python3.10/site-packages/setuptools/config/_apply_pyprojecttoml.py +377 -0
  1544. package/venv/lib/python3.10/site-packages/setuptools/config/_validate_pyproject/__init__.py +34 -0
  1545. package/venv/lib/python3.10/site-packages/setuptools/config/_validate_pyproject/__pycache__/__init__.cpython-310.pyc +0 -0
  1546. package/venv/lib/python3.10/site-packages/setuptools/config/_validate_pyproject/__pycache__/error_reporting.cpython-310.pyc +0 -0
  1547. package/venv/lib/python3.10/site-packages/setuptools/config/_validate_pyproject/__pycache__/extra_validations.cpython-310.pyc +0 -0
  1548. package/venv/lib/python3.10/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_exceptions.cpython-310.pyc +0 -0
  1549. package/venv/lib/python3.10/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_validations.cpython-310.pyc +0 -0
  1550. package/venv/lib/python3.10/site-packages/setuptools/config/_validate_pyproject/__pycache__/formats.cpython-310.pyc +0 -0
  1551. package/venv/lib/python3.10/site-packages/setuptools/config/_validate_pyproject/error_reporting.py +318 -0
  1552. package/venv/lib/python3.10/site-packages/setuptools/config/_validate_pyproject/extra_validations.py +36 -0
  1553. package/venv/lib/python3.10/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py +51 -0
  1554. package/venv/lib/python3.10/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py +1035 -0
  1555. package/venv/lib/python3.10/site-packages/setuptools/config/_validate_pyproject/formats.py +259 -0
  1556. package/venv/lib/python3.10/site-packages/setuptools/config/expand.py +462 -0
  1557. package/venv/lib/python3.10/site-packages/setuptools/config/pyprojecttoml.py +493 -0
  1558. package/venv/lib/python3.10/site-packages/setuptools/config/setupcfg.py +762 -0
  1559. package/venv/lib/python3.10/site-packages/setuptools/dep_util.py +25 -0
  1560. package/venv/lib/python3.10/site-packages/setuptools/depends.py +176 -0
  1561. package/venv/lib/python3.10/site-packages/setuptools/discovery.py +600 -0
  1562. package/venv/lib/python3.10/site-packages/setuptools/dist.py +1222 -0
  1563. package/venv/lib/python3.10/site-packages/setuptools/errors.py +58 -0
  1564. package/venv/lib/python3.10/site-packages/setuptools/extension.py +148 -0
  1565. package/venv/lib/python3.10/site-packages/setuptools/extern/__init__.py +76 -0
  1566. package/venv/lib/python3.10/site-packages/setuptools/extern/__pycache__/__init__.cpython-310.pyc +0 -0
  1567. package/venv/lib/python3.10/site-packages/setuptools/glob.py +167 -0
  1568. package/venv/lib/python3.10/site-packages/setuptools/gui-32.exe +0 -0
  1569. package/venv/lib/python3.10/site-packages/setuptools/gui-64.exe +0 -0
  1570. package/venv/lib/python3.10/site-packages/setuptools/gui-arm64.exe +0 -0
  1571. package/venv/lib/python3.10/site-packages/setuptools/gui.exe +0 -0
  1572. package/venv/lib/python3.10/site-packages/setuptools/installer.py +104 -0
  1573. package/venv/lib/python3.10/site-packages/setuptools/launch.py +36 -0
  1574. package/venv/lib/python3.10/site-packages/setuptools/logging.py +36 -0
  1575. package/venv/lib/python3.10/site-packages/setuptools/monkey.py +165 -0
  1576. package/venv/lib/python3.10/site-packages/setuptools/msvc.py +1703 -0
  1577. package/venv/lib/python3.10/site-packages/setuptools/namespaces.py +107 -0
  1578. package/venv/lib/python3.10/site-packages/setuptools/package_index.py +1126 -0
  1579. package/venv/lib/python3.10/site-packages/setuptools/py34compat.py +13 -0
  1580. package/venv/lib/python3.10/site-packages/setuptools/sandbox.py +530 -0
  1581. package/venv/lib/python3.10/site-packages/setuptools/script (dev).tmpl +6 -0
  1582. package/venv/lib/python3.10/site-packages/setuptools/script.tmpl +3 -0
  1583. package/venv/lib/python3.10/site-packages/setuptools/unicode_utils.py +42 -0
  1584. package/venv/lib/python3.10/site-packages/setuptools/version.py +6 -0
  1585. package/venv/lib/python3.10/site-packages/setuptools/wheel.py +222 -0
  1586. package/venv/lib/python3.10/site-packages/setuptools/windows_support.py +29 -0
  1587. package/venv/lib/python3.10/site-packages/setuptools-65.5.0.dist-info/INSTALLER +1 -0
  1588. package/venv/lib/python3.10/site-packages/setuptools-65.5.0.dist-info/LICENSE +19 -0
  1589. package/venv/lib/python3.10/site-packages/setuptools-65.5.0.dist-info/METADATA +144 -0
  1590. package/venv/lib/python3.10/site-packages/setuptools-65.5.0.dist-info/RECORD +466 -0
  1591. package/venv/lib/python3.10/site-packages/setuptools-65.5.0.dist-info/REQUESTED +0 -0
  1592. package/venv/lib/python3.10/site-packages/setuptools-65.5.0.dist-info/WHEEL +5 -0
  1593. package/venv/lib/python3.10/site-packages/setuptools-65.5.0.dist-info/entry_points.txt +57 -0
  1594. package/venv/lib/python3.10/site-packages/setuptools-65.5.0.dist-info/top_level.txt +3 -0
  1595. package/venv/lib/python3.10/site-packages/urllib3/__init__.py +211 -0
  1596. package/venv/lib/python3.10/site-packages/urllib3/__pycache__/__init__.cpython-310.pyc +0 -0
  1597. package/venv/lib/python3.10/site-packages/urllib3/__pycache__/_base_connection.cpython-310.pyc +0 -0
  1598. package/venv/lib/python3.10/site-packages/urllib3/__pycache__/_collections.cpython-310.pyc +0 -0
  1599. package/venv/lib/python3.10/site-packages/urllib3/__pycache__/_request_methods.cpython-310.pyc +0 -0
  1600. package/venv/lib/python3.10/site-packages/urllib3/__pycache__/_version.cpython-310.pyc +0 -0
  1601. package/venv/lib/python3.10/site-packages/urllib3/__pycache__/connection.cpython-310.pyc +0 -0
  1602. package/venv/lib/python3.10/site-packages/urllib3/__pycache__/connectionpool.cpython-310.pyc +0 -0
  1603. package/venv/lib/python3.10/site-packages/urllib3/__pycache__/exceptions.cpython-310.pyc +0 -0
  1604. package/venv/lib/python3.10/site-packages/urllib3/__pycache__/fields.cpython-310.pyc +0 -0
  1605. package/venv/lib/python3.10/site-packages/urllib3/__pycache__/filepost.cpython-310.pyc +0 -0
  1606. package/venv/lib/python3.10/site-packages/urllib3/__pycache__/http2.cpython-310.pyc +0 -0
  1607. package/venv/lib/python3.10/site-packages/urllib3/__pycache__/poolmanager.cpython-310.pyc +0 -0
  1608. package/venv/lib/python3.10/site-packages/urllib3/__pycache__/response.cpython-310.pyc +0 -0
  1609. package/venv/lib/python3.10/site-packages/urllib3/_base_connection.py +172 -0
  1610. package/venv/lib/python3.10/site-packages/urllib3/_collections.py +483 -0
  1611. package/venv/lib/python3.10/site-packages/urllib3/_request_methods.py +279 -0
  1612. package/venv/lib/python3.10/site-packages/urllib3/_version.py +4 -0
  1613. package/venv/lib/python3.10/site-packages/urllib3/connection.py +930 -0
  1614. package/venv/lib/python3.10/site-packages/urllib3/connectionpool.py +1186 -0
  1615. package/venv/lib/python3.10/site-packages/urllib3/contrib/__init__.py +0 -0
  1616. package/venv/lib/python3.10/site-packages/urllib3/contrib/__pycache__/__init__.cpython-310.pyc +0 -0
  1617. package/venv/lib/python3.10/site-packages/urllib3/contrib/__pycache__/pyopenssl.cpython-310.pyc +0 -0
  1618. package/venv/lib/python3.10/site-packages/urllib3/contrib/__pycache__/socks.cpython-310.pyc +0 -0
  1619. package/venv/lib/python3.10/site-packages/urllib3/contrib/emscripten/__init__.py +16 -0
  1620. package/venv/lib/python3.10/site-packages/urllib3/contrib/emscripten/__pycache__/__init__.cpython-310.pyc +0 -0
  1621. package/venv/lib/python3.10/site-packages/urllib3/contrib/emscripten/__pycache__/connection.cpython-310.pyc +0 -0
  1622. package/venv/lib/python3.10/site-packages/urllib3/contrib/emscripten/__pycache__/fetch.cpython-310.pyc +0 -0
  1623. package/venv/lib/python3.10/site-packages/urllib3/contrib/emscripten/__pycache__/request.cpython-310.pyc +0 -0
  1624. package/venv/lib/python3.10/site-packages/urllib3/contrib/emscripten/__pycache__/response.cpython-310.pyc +0 -0
  1625. package/venv/lib/python3.10/site-packages/urllib3/contrib/emscripten/connection.py +254 -0
  1626. package/venv/lib/python3.10/site-packages/urllib3/contrib/emscripten/emscripten_fetch_worker.js +110 -0
  1627. package/venv/lib/python3.10/site-packages/urllib3/contrib/emscripten/fetch.py +418 -0
  1628. package/venv/lib/python3.10/site-packages/urllib3/contrib/emscripten/request.py +22 -0
  1629. package/venv/lib/python3.10/site-packages/urllib3/contrib/emscripten/response.py +276 -0
  1630. package/venv/lib/python3.10/site-packages/urllib3/contrib/pyopenssl.py +548 -0
  1631. package/venv/lib/python3.10/site-packages/urllib3/contrib/socks.py +230 -0
  1632. package/venv/lib/python3.10/site-packages/urllib3/exceptions.py +321 -0
  1633. package/venv/lib/python3.10/site-packages/urllib3/fields.py +341 -0
  1634. package/venv/lib/python3.10/site-packages/urllib3/filepost.py +89 -0
  1635. package/venv/lib/python3.10/site-packages/urllib3/http2.py +229 -0
  1636. package/venv/lib/python3.10/site-packages/urllib3/poolmanager.py +638 -0
  1637. package/venv/lib/python3.10/site-packages/urllib3/py.typed +2 -0
  1638. package/venv/lib/python3.10/site-packages/urllib3/response.py +1243 -0
  1639. package/venv/lib/python3.10/site-packages/urllib3/util/__init__.py +42 -0
  1640. package/venv/lib/python3.10/site-packages/urllib3/util/__pycache__/__init__.cpython-310.pyc +0 -0
  1641. package/venv/lib/python3.10/site-packages/urllib3/util/__pycache__/connection.cpython-310.pyc +0 -0
  1642. package/venv/lib/python3.10/site-packages/urllib3/util/__pycache__/proxy.cpython-310.pyc +0 -0
  1643. package/venv/lib/python3.10/site-packages/urllib3/util/__pycache__/request.cpython-310.pyc +0 -0
  1644. package/venv/lib/python3.10/site-packages/urllib3/util/__pycache__/response.cpython-310.pyc +0 -0
  1645. package/venv/lib/python3.10/site-packages/urllib3/util/__pycache__/retry.cpython-310.pyc +0 -0
  1646. package/venv/lib/python3.10/site-packages/urllib3/util/__pycache__/ssl_.cpython-310.pyc +0 -0
  1647. package/venv/lib/python3.10/site-packages/urllib3/util/__pycache__/ssl_match_hostname.cpython-310.pyc +0 -0
  1648. package/venv/lib/python3.10/site-packages/urllib3/util/__pycache__/ssltransport.cpython-310.pyc +0 -0
  1649. package/venv/lib/python3.10/site-packages/urllib3/util/__pycache__/timeout.cpython-310.pyc +0 -0
  1650. package/venv/lib/python3.10/site-packages/urllib3/util/__pycache__/url.cpython-310.pyc +0 -0
  1651. package/venv/lib/python3.10/site-packages/urllib3/util/__pycache__/util.cpython-310.pyc +0 -0
  1652. package/venv/lib/python3.10/site-packages/urllib3/util/__pycache__/wait.cpython-310.pyc +0 -0
  1653. package/venv/lib/python3.10/site-packages/urllib3/util/connection.py +137 -0
  1654. package/venv/lib/python3.10/site-packages/urllib3/util/proxy.py +43 -0
  1655. package/venv/lib/python3.10/site-packages/urllib3/util/request.py +256 -0
  1656. package/venv/lib/python3.10/site-packages/urllib3/util/response.py +101 -0
  1657. package/venv/lib/python3.10/site-packages/urllib3/util/retry.py +529 -0
  1658. package/venv/lib/python3.10/site-packages/urllib3/util/ssl_.py +509 -0
  1659. package/venv/lib/python3.10/site-packages/urllib3/util/ssl_match_hostname.py +159 -0
  1660. package/venv/lib/python3.10/site-packages/urllib3/util/ssltransport.py +280 -0
  1661. package/venv/lib/python3.10/site-packages/urllib3/util/timeout.py +275 -0
  1662. package/venv/lib/python3.10/site-packages/urllib3/util/url.py +471 -0
  1663. package/venv/lib/python3.10/site-packages/urllib3/util/util.py +42 -0
  1664. package/venv/lib/python3.10/site-packages/urllib3/util/wait.py +124 -0
  1665. package/venv/lib/python3.10/site-packages/urllib3-2.2.1.dist-info/INSTALLER +1 -0
  1666. package/venv/lib/python3.10/site-packages/urllib3-2.2.1.dist-info/METADATA +154 -0
  1667. package/venv/lib/python3.10/site-packages/urllib3-2.2.1.dist-info/RECORD +75 -0
  1668. package/venv/lib/python3.10/site-packages/urllib3-2.2.1.dist-info/WHEEL +4 -0
  1669. package/venv/lib/python3.10/site-packages/urllib3-2.2.1.dist-info/licenses/LICENSE.txt +21 -0
  1670. package/venv/pyvenv.cfg +3 -0
@@ -0,0 +1,2612 @@
1
+ import inspect
2
+ import io
3
+ import os
4
+ import platform
5
+ import sys
6
+ import threading
7
+ import zlib
8
+ from abc import ABC, abstractmethod
9
+ from dataclasses import dataclass, field
10
+ from datetime import datetime
11
+ from functools import wraps
12
+ from getpass import getpass
13
+ from html import escape
14
+ from inspect import isclass
15
+ from itertools import islice
16
+ from math import ceil
17
+ from time import monotonic
18
+ from types import FrameType, ModuleType, TracebackType
19
+ from typing import (
20
+ IO,
21
+ TYPE_CHECKING,
22
+ Any,
23
+ Callable,
24
+ Dict,
25
+ Iterable,
26
+ List,
27
+ Mapping,
28
+ NamedTuple,
29
+ Optional,
30
+ TextIO,
31
+ Tuple,
32
+ Type,
33
+ Union,
34
+ cast,
35
+ )
36
+
37
+ from pip._vendor.rich._null_file import NULL_FILE
38
+
39
+ if sys.version_info >= (3, 8):
40
+ from typing import Literal, Protocol, runtime_checkable
41
+ else:
42
+ from pip._vendor.typing_extensions import (
43
+ Literal,
44
+ Protocol,
45
+ runtime_checkable,
46
+ ) # pragma: no cover
47
+
48
+ from . import errors, themes
49
+ from ._emoji_replace import _emoji_replace
50
+ from ._export_format import CONSOLE_HTML_FORMAT, CONSOLE_SVG_FORMAT
51
+ from ._log_render import FormatTimeCallable, LogRender
52
+ from .align import Align, AlignMethod
53
+ from .color import ColorSystem, blend_rgb
54
+ from .control import Control
55
+ from .emoji import EmojiVariant
56
+ from .highlighter import NullHighlighter, ReprHighlighter
57
+ from .markup import render as render_markup
58
+ from .measure import Measurement, measure_renderables
59
+ from .pager import Pager, SystemPager
60
+ from .pretty import Pretty, is_expandable
61
+ from .protocol import rich_cast
62
+ from .region import Region
63
+ from .scope import render_scope
64
+ from .screen import Screen
65
+ from .segment import Segment
66
+ from .style import Style, StyleType
67
+ from .styled import Styled
68
+ from .terminal_theme import DEFAULT_TERMINAL_THEME, SVG_EXPORT_THEME, TerminalTheme
69
+ from .text import Text, TextType
70
+ from .theme import Theme, ThemeStack
71
+
72
+ if TYPE_CHECKING:
73
+ from ._windows import WindowsConsoleFeatures
74
+ from .live import Live
75
+ from .status import Status
76
+
77
+ JUPYTER_DEFAULT_COLUMNS = 115
78
+ JUPYTER_DEFAULT_LINES = 100
79
+ WINDOWS = platform.system() == "Windows"
80
+
81
+ HighlighterType = Callable[[Union[str, "Text"]], "Text"]
82
+ JustifyMethod = Literal["default", "left", "center", "right", "full"]
83
+ OverflowMethod = Literal["fold", "crop", "ellipsis", "ignore"]
84
+
85
+
86
+ class NoChange:
87
+ pass
88
+
89
+
90
+ NO_CHANGE = NoChange()
91
+
92
+ try:
93
+ _STDIN_FILENO = sys.__stdin__.fileno()
94
+ except Exception:
95
+ _STDIN_FILENO = 0
96
+ try:
97
+ _STDOUT_FILENO = sys.__stdout__.fileno()
98
+ except Exception:
99
+ _STDOUT_FILENO = 1
100
+ try:
101
+ _STDERR_FILENO = sys.__stderr__.fileno()
102
+ except Exception:
103
+ _STDERR_FILENO = 2
104
+
105
+ _STD_STREAMS = (_STDIN_FILENO, _STDOUT_FILENO, _STDERR_FILENO)
106
+ _STD_STREAMS_OUTPUT = (_STDOUT_FILENO, _STDERR_FILENO)
107
+
108
+
109
+ _TERM_COLORS = {
110
+ "kitty": ColorSystem.EIGHT_BIT,
111
+ "256color": ColorSystem.EIGHT_BIT,
112
+ "16color": ColorSystem.STANDARD,
113
+ }
114
+
115
+
116
+ class ConsoleDimensions(NamedTuple):
117
+ """Size of the terminal."""
118
+
119
+ width: int
120
+ """The width of the console in 'cells'."""
121
+ height: int
122
+ """The height of the console in lines."""
123
+
124
+
125
+ @dataclass
126
+ class ConsoleOptions:
127
+ """Options for __rich_console__ method."""
128
+
129
+ size: ConsoleDimensions
130
+ """Size of console."""
131
+ legacy_windows: bool
132
+ """legacy_windows: flag for legacy windows."""
133
+ min_width: int
134
+ """Minimum width of renderable."""
135
+ max_width: int
136
+ """Maximum width of renderable."""
137
+ is_terminal: bool
138
+ """True if the target is a terminal, otherwise False."""
139
+ encoding: str
140
+ """Encoding of terminal."""
141
+ max_height: int
142
+ """Height of container (starts as terminal)"""
143
+ justify: Optional[JustifyMethod] = None
144
+ """Justify value override for renderable."""
145
+ overflow: Optional[OverflowMethod] = None
146
+ """Overflow value override for renderable."""
147
+ no_wrap: Optional[bool] = False
148
+ """Disable wrapping for text."""
149
+ highlight: Optional[bool] = None
150
+ """Highlight override for render_str."""
151
+ markup: Optional[bool] = None
152
+ """Enable markup when rendering strings."""
153
+ height: Optional[int] = None
154
+
155
+ @property
156
+ def ascii_only(self) -> bool:
157
+ """Check if renderables should use ascii only."""
158
+ return not self.encoding.startswith("utf")
159
+
160
+ def copy(self) -> "ConsoleOptions":
161
+ """Return a copy of the options.
162
+
163
+ Returns:
164
+ ConsoleOptions: a copy of self.
165
+ """
166
+ options: ConsoleOptions = ConsoleOptions.__new__(ConsoleOptions)
167
+ options.__dict__ = self.__dict__.copy()
168
+ return options
169
+
170
+ def update(
171
+ self,
172
+ *,
173
+ width: Union[int, NoChange] = NO_CHANGE,
174
+ min_width: Union[int, NoChange] = NO_CHANGE,
175
+ max_width: Union[int, NoChange] = NO_CHANGE,
176
+ justify: Union[Optional[JustifyMethod], NoChange] = NO_CHANGE,
177
+ overflow: Union[Optional[OverflowMethod], NoChange] = NO_CHANGE,
178
+ no_wrap: Union[Optional[bool], NoChange] = NO_CHANGE,
179
+ highlight: Union[Optional[bool], NoChange] = NO_CHANGE,
180
+ markup: Union[Optional[bool], NoChange] = NO_CHANGE,
181
+ height: Union[Optional[int], NoChange] = NO_CHANGE,
182
+ ) -> "ConsoleOptions":
183
+ """Update values, return a copy."""
184
+ options = self.copy()
185
+ if not isinstance(width, NoChange):
186
+ options.min_width = options.max_width = max(0, width)
187
+ if not isinstance(min_width, NoChange):
188
+ options.min_width = min_width
189
+ if not isinstance(max_width, NoChange):
190
+ options.max_width = max_width
191
+ if not isinstance(justify, NoChange):
192
+ options.justify = justify
193
+ if not isinstance(overflow, NoChange):
194
+ options.overflow = overflow
195
+ if not isinstance(no_wrap, NoChange):
196
+ options.no_wrap = no_wrap
197
+ if not isinstance(highlight, NoChange):
198
+ options.highlight = highlight
199
+ if not isinstance(markup, NoChange):
200
+ options.markup = markup
201
+ if not isinstance(height, NoChange):
202
+ if height is not None:
203
+ options.max_height = height
204
+ options.height = None if height is None else max(0, height)
205
+ return options
206
+
207
+ def update_width(self, width: int) -> "ConsoleOptions":
208
+ """Update just the width, return a copy.
209
+
210
+ Args:
211
+ width (int): New width (sets both min_width and max_width)
212
+
213
+ Returns:
214
+ ~ConsoleOptions: New console options instance.
215
+ """
216
+ options = self.copy()
217
+ options.min_width = options.max_width = max(0, width)
218
+ return options
219
+
220
+ def update_height(self, height: int) -> "ConsoleOptions":
221
+ """Update the height, and return a copy.
222
+
223
+ Args:
224
+ height (int): New height
225
+
226
+ Returns:
227
+ ~ConsoleOptions: New Console options instance.
228
+ """
229
+ options = self.copy()
230
+ options.max_height = options.height = height
231
+ return options
232
+
233
+ def reset_height(self) -> "ConsoleOptions":
234
+ """Return a copy of the options with height set to ``None``.
235
+
236
+ Returns:
237
+ ~ConsoleOptions: New console options instance.
238
+ """
239
+ options = self.copy()
240
+ options.height = None
241
+ return options
242
+
243
+ def update_dimensions(self, width: int, height: int) -> "ConsoleOptions":
244
+ """Update the width and height, and return a copy.
245
+
246
+ Args:
247
+ width (int): New width (sets both min_width and max_width).
248
+ height (int): New height.
249
+
250
+ Returns:
251
+ ~ConsoleOptions: New console options instance.
252
+ """
253
+ options = self.copy()
254
+ options.min_width = options.max_width = max(0, width)
255
+ options.height = options.max_height = height
256
+ return options
257
+
258
+
259
+ @runtime_checkable
260
+ class RichCast(Protocol):
261
+ """An object that may be 'cast' to a console renderable."""
262
+
263
+ def __rich__(
264
+ self,
265
+ ) -> Union["ConsoleRenderable", "RichCast", str]: # pragma: no cover
266
+ ...
267
+
268
+
269
+ @runtime_checkable
270
+ class ConsoleRenderable(Protocol):
271
+ """An object that supports the console protocol."""
272
+
273
+ def __rich_console__(
274
+ self, console: "Console", options: "ConsoleOptions"
275
+ ) -> "RenderResult": # pragma: no cover
276
+ ...
277
+
278
+
279
+ # A type that may be rendered by Console.
280
+ RenderableType = Union[ConsoleRenderable, RichCast, str]
281
+
282
+ # The result of calling a __rich_console__ method.
283
+ RenderResult = Iterable[Union[RenderableType, Segment]]
284
+
285
+ _null_highlighter = NullHighlighter()
286
+
287
+
288
+ class CaptureError(Exception):
289
+ """An error in the Capture context manager."""
290
+
291
+
292
+ class NewLine:
293
+ """A renderable to generate new line(s)"""
294
+
295
+ def __init__(self, count: int = 1) -> None:
296
+ self.count = count
297
+
298
+ def __rich_console__(
299
+ self, console: "Console", options: "ConsoleOptions"
300
+ ) -> Iterable[Segment]:
301
+ yield Segment("\n" * self.count)
302
+
303
+
304
+ class ScreenUpdate:
305
+ """Render a list of lines at a given offset."""
306
+
307
+ def __init__(self, lines: List[List[Segment]], x: int, y: int) -> None:
308
+ self._lines = lines
309
+ self.x = x
310
+ self.y = y
311
+
312
+ def __rich_console__(
313
+ self, console: "Console", options: ConsoleOptions
314
+ ) -> RenderResult:
315
+ x = self.x
316
+ move_to = Control.move_to
317
+ for offset, line in enumerate(self._lines, self.y):
318
+ yield move_to(x, offset)
319
+ yield from line
320
+
321
+
322
+ class Capture:
323
+ """Context manager to capture the result of printing to the console.
324
+ See :meth:`~rich.console.Console.capture` for how to use.
325
+
326
+ Args:
327
+ console (Console): A console instance to capture output.
328
+ """
329
+
330
+ def __init__(self, console: "Console") -> None:
331
+ self._console = console
332
+ self._result: Optional[str] = None
333
+
334
+ def __enter__(self) -> "Capture":
335
+ self._console.begin_capture()
336
+ return self
337
+
338
+ def __exit__(
339
+ self,
340
+ exc_type: Optional[Type[BaseException]],
341
+ exc_val: Optional[BaseException],
342
+ exc_tb: Optional[TracebackType],
343
+ ) -> None:
344
+ self._result = self._console.end_capture()
345
+
346
+ def get(self) -> str:
347
+ """Get the result of the capture."""
348
+ if self._result is None:
349
+ raise CaptureError(
350
+ "Capture result is not available until context manager exits."
351
+ )
352
+ return self._result
353
+
354
+
355
+ class ThemeContext:
356
+ """A context manager to use a temporary theme. See :meth:`~rich.console.Console.use_theme` for usage."""
357
+
358
+ def __init__(self, console: "Console", theme: Theme, inherit: bool = True) -> None:
359
+ self.console = console
360
+ self.theme = theme
361
+ self.inherit = inherit
362
+
363
+ def __enter__(self) -> "ThemeContext":
364
+ self.console.push_theme(self.theme)
365
+ return self
366
+
367
+ def __exit__(
368
+ self,
369
+ exc_type: Optional[Type[BaseException]],
370
+ exc_val: Optional[BaseException],
371
+ exc_tb: Optional[TracebackType],
372
+ ) -> None:
373
+ self.console.pop_theme()
374
+
375
+
376
+ class PagerContext:
377
+ """A context manager that 'pages' content. See :meth:`~rich.console.Console.pager` for usage."""
378
+
379
+ def __init__(
380
+ self,
381
+ console: "Console",
382
+ pager: Optional[Pager] = None,
383
+ styles: bool = False,
384
+ links: bool = False,
385
+ ) -> None:
386
+ self._console = console
387
+ self.pager = SystemPager() if pager is None else pager
388
+ self.styles = styles
389
+ self.links = links
390
+
391
+ def __enter__(self) -> "PagerContext":
392
+ self._console._enter_buffer()
393
+ return self
394
+
395
+ def __exit__(
396
+ self,
397
+ exc_type: Optional[Type[BaseException]],
398
+ exc_val: Optional[BaseException],
399
+ exc_tb: Optional[TracebackType],
400
+ ) -> None:
401
+ if exc_type is None:
402
+ with self._console._lock:
403
+ buffer: List[Segment] = self._console._buffer[:]
404
+ del self._console._buffer[:]
405
+ segments: Iterable[Segment] = buffer
406
+ if not self.styles:
407
+ segments = Segment.strip_styles(segments)
408
+ elif not self.links:
409
+ segments = Segment.strip_links(segments)
410
+ content = self._console._render_buffer(segments)
411
+ self.pager.show(content)
412
+ self._console._exit_buffer()
413
+
414
+
415
+ class ScreenContext:
416
+ """A context manager that enables an alternative screen. See :meth:`~rich.console.Console.screen` for usage."""
417
+
418
+ def __init__(
419
+ self, console: "Console", hide_cursor: bool, style: StyleType = ""
420
+ ) -> None:
421
+ self.console = console
422
+ self.hide_cursor = hide_cursor
423
+ self.screen = Screen(style=style)
424
+ self._changed = False
425
+
426
+ def update(
427
+ self, *renderables: RenderableType, style: Optional[StyleType] = None
428
+ ) -> None:
429
+ """Update the screen.
430
+
431
+ Args:
432
+ renderable (RenderableType, optional): Optional renderable to replace current renderable,
433
+ or None for no change. Defaults to None.
434
+ style: (Style, optional): Replacement style, or None for no change. Defaults to None.
435
+ """
436
+ if renderables:
437
+ self.screen.renderable = (
438
+ Group(*renderables) if len(renderables) > 1 else renderables[0]
439
+ )
440
+ if style is not None:
441
+ self.screen.style = style
442
+ self.console.print(self.screen, end="")
443
+
444
+ def __enter__(self) -> "ScreenContext":
445
+ self._changed = self.console.set_alt_screen(True)
446
+ if self._changed and self.hide_cursor:
447
+ self.console.show_cursor(False)
448
+ return self
449
+
450
+ def __exit__(
451
+ self,
452
+ exc_type: Optional[Type[BaseException]],
453
+ exc_val: Optional[BaseException],
454
+ exc_tb: Optional[TracebackType],
455
+ ) -> None:
456
+ if self._changed:
457
+ self.console.set_alt_screen(False)
458
+ if self.hide_cursor:
459
+ self.console.show_cursor(True)
460
+
461
+
462
+ class Group:
463
+ """Takes a group of renderables and returns a renderable object that renders the group.
464
+
465
+ Args:
466
+ renderables (Iterable[RenderableType]): An iterable of renderable objects.
467
+ fit (bool, optional): Fit dimension of group to contents, or fill available space. Defaults to True.
468
+ """
469
+
470
+ def __init__(self, *renderables: "RenderableType", fit: bool = True) -> None:
471
+ self._renderables = renderables
472
+ self.fit = fit
473
+ self._render: Optional[List[RenderableType]] = None
474
+
475
+ @property
476
+ def renderables(self) -> List["RenderableType"]:
477
+ if self._render is None:
478
+ self._render = list(self._renderables)
479
+ return self._render
480
+
481
+ def __rich_measure__(
482
+ self, console: "Console", options: "ConsoleOptions"
483
+ ) -> "Measurement":
484
+ if self.fit:
485
+ return measure_renderables(console, options, self.renderables)
486
+ else:
487
+ return Measurement(options.max_width, options.max_width)
488
+
489
+ def __rich_console__(
490
+ self, console: "Console", options: "ConsoleOptions"
491
+ ) -> RenderResult:
492
+ yield from self.renderables
493
+
494
+
495
+ def group(fit: bool = True) -> Callable[..., Callable[..., Group]]:
496
+ """A decorator that turns an iterable of renderables in to a group.
497
+
498
+ Args:
499
+ fit (bool, optional): Fit dimension of group to contents, or fill available space. Defaults to True.
500
+ """
501
+
502
+ def decorator(
503
+ method: Callable[..., Iterable[RenderableType]]
504
+ ) -> Callable[..., Group]:
505
+ """Convert a method that returns an iterable of renderables in to a Group."""
506
+
507
+ @wraps(method)
508
+ def _replace(*args: Any, **kwargs: Any) -> Group:
509
+ renderables = method(*args, **kwargs)
510
+ return Group(*renderables, fit=fit)
511
+
512
+ return _replace
513
+
514
+ return decorator
515
+
516
+
517
+ def _is_jupyter() -> bool: # pragma: no cover
518
+ """Check if we're running in a Jupyter notebook."""
519
+ try:
520
+ get_ipython # type: ignore[name-defined]
521
+ except NameError:
522
+ return False
523
+ ipython = get_ipython() # type: ignore[name-defined]
524
+ shell = ipython.__class__.__name__
525
+ if (
526
+ "google.colab" in str(ipython.__class__)
527
+ or os.getenv("DATABRICKS_RUNTIME_VERSION")
528
+ or shell == "ZMQInteractiveShell"
529
+ ):
530
+ return True # Jupyter notebook or qtconsole
531
+ elif shell == "TerminalInteractiveShell":
532
+ return False # Terminal running IPython
533
+ else:
534
+ return False # Other type (?)
535
+
536
+
537
+ COLOR_SYSTEMS = {
538
+ "standard": ColorSystem.STANDARD,
539
+ "256": ColorSystem.EIGHT_BIT,
540
+ "truecolor": ColorSystem.TRUECOLOR,
541
+ "windows": ColorSystem.WINDOWS,
542
+ }
543
+
544
+ _COLOR_SYSTEMS_NAMES = {system: name for name, system in COLOR_SYSTEMS.items()}
545
+
546
+
547
+ @dataclass
548
+ class ConsoleThreadLocals(threading.local):
549
+ """Thread local values for Console context."""
550
+
551
+ theme_stack: ThemeStack
552
+ buffer: List[Segment] = field(default_factory=list)
553
+ buffer_index: int = 0
554
+
555
+
556
+ class RenderHook(ABC):
557
+ """Provides hooks in to the render process."""
558
+
559
+ @abstractmethod
560
+ def process_renderables(
561
+ self, renderables: List[ConsoleRenderable]
562
+ ) -> List[ConsoleRenderable]:
563
+ """Called with a list of objects to render.
564
+
565
+ This method can return a new list of renderables, or modify and return the same list.
566
+
567
+ Args:
568
+ renderables (List[ConsoleRenderable]): A number of renderable objects.
569
+
570
+ Returns:
571
+ List[ConsoleRenderable]: A replacement list of renderables.
572
+ """
573
+
574
+
575
+ _windows_console_features: Optional["WindowsConsoleFeatures"] = None
576
+
577
+
578
+ def get_windows_console_features() -> "WindowsConsoleFeatures": # pragma: no cover
579
+ global _windows_console_features
580
+ if _windows_console_features is not None:
581
+ return _windows_console_features
582
+ from ._windows import get_windows_console_features
583
+
584
+ _windows_console_features = get_windows_console_features()
585
+ return _windows_console_features
586
+
587
+
588
+ def detect_legacy_windows() -> bool:
589
+ """Detect legacy Windows."""
590
+ return WINDOWS and not get_windows_console_features().vt
591
+
592
+
593
+ class Console:
594
+ """A high level console interface.
595
+
596
+ Args:
597
+ color_system (str, optional): The color system supported by your terminal,
598
+ either ``"standard"``, ``"256"`` or ``"truecolor"``. Leave as ``"auto"`` to autodetect.
599
+ force_terminal (Optional[bool], optional): Enable/disable terminal control codes, or None to auto-detect terminal. Defaults to None.
600
+ force_jupyter (Optional[bool], optional): Enable/disable Jupyter rendering, or None to auto-detect Jupyter. Defaults to None.
601
+ force_interactive (Optional[bool], optional): Enable/disable interactive mode, or None to auto detect. Defaults to None.
602
+ soft_wrap (Optional[bool], optional): Set soft wrap default on print method. Defaults to False.
603
+ theme (Theme, optional): An optional style theme object, or ``None`` for default theme.
604
+ stderr (bool, optional): Use stderr rather than stdout if ``file`` is not specified. Defaults to False.
605
+ file (IO, optional): A file object where the console should write to. Defaults to stdout.
606
+ quiet (bool, Optional): Boolean to suppress all output. Defaults to False.
607
+ width (int, optional): The width of the terminal. Leave as default to auto-detect width.
608
+ height (int, optional): The height of the terminal. Leave as default to auto-detect height.
609
+ style (StyleType, optional): Style to apply to all output, or None for no style. Defaults to None.
610
+ no_color (Optional[bool], optional): Enabled no color mode, or None to auto detect. Defaults to None.
611
+ tab_size (int, optional): Number of spaces used to replace a tab character. Defaults to 8.
612
+ record (bool, optional): Boolean to enable recording of terminal output,
613
+ required to call :meth:`export_html`, :meth:`export_svg`, and :meth:`export_text`. Defaults to False.
614
+ markup (bool, optional): Boolean to enable :ref:`console_markup`. Defaults to True.
615
+ emoji (bool, optional): Enable emoji code. Defaults to True.
616
+ emoji_variant (str, optional): Optional emoji variant, either "text" or "emoji". Defaults to None.
617
+ highlight (bool, optional): Enable automatic highlighting. Defaults to True.
618
+ log_time (bool, optional): Boolean to enable logging of time by :meth:`log` methods. Defaults to True.
619
+ log_path (bool, optional): Boolean to enable the logging of the caller by :meth:`log`. Defaults to True.
620
+ log_time_format (Union[str, TimeFormatterCallable], optional): If ``log_time`` is enabled, either string for strftime or callable that formats the time. Defaults to "[%X] ".
621
+ highlighter (HighlighterType, optional): Default highlighter.
622
+ legacy_windows (bool, optional): Enable legacy Windows mode, or ``None`` to auto detect. Defaults to ``None``.
623
+ safe_box (bool, optional): Restrict box options that don't render on legacy Windows.
624
+ get_datetime (Callable[[], datetime], optional): Callable that gets the current time as a datetime.datetime object (used by Console.log),
625
+ or None for datetime.now.
626
+ get_time (Callable[[], time], optional): Callable that gets the current time in seconds, default uses time.monotonic.
627
+ """
628
+
629
+ _environ: Mapping[str, str] = os.environ
630
+
631
+ def __init__(
632
+ self,
633
+ *,
634
+ color_system: Optional[
635
+ Literal["auto", "standard", "256", "truecolor", "windows"]
636
+ ] = "auto",
637
+ force_terminal: Optional[bool] = None,
638
+ force_jupyter: Optional[bool] = None,
639
+ force_interactive: Optional[bool] = None,
640
+ soft_wrap: bool = False,
641
+ theme: Optional[Theme] = None,
642
+ stderr: bool = False,
643
+ file: Optional[IO[str]] = None,
644
+ quiet: bool = False,
645
+ width: Optional[int] = None,
646
+ height: Optional[int] = None,
647
+ style: Optional[StyleType] = None,
648
+ no_color: Optional[bool] = None,
649
+ tab_size: int = 8,
650
+ record: bool = False,
651
+ markup: bool = True,
652
+ emoji: bool = True,
653
+ emoji_variant: Optional[EmojiVariant] = None,
654
+ highlight: bool = True,
655
+ log_time: bool = True,
656
+ log_path: bool = True,
657
+ log_time_format: Union[str, FormatTimeCallable] = "[%X]",
658
+ highlighter: Optional["HighlighterType"] = ReprHighlighter(),
659
+ legacy_windows: Optional[bool] = None,
660
+ safe_box: bool = True,
661
+ get_datetime: Optional[Callable[[], datetime]] = None,
662
+ get_time: Optional[Callable[[], float]] = None,
663
+ _environ: Optional[Mapping[str, str]] = None,
664
+ ):
665
+ # Copy of os.environ allows us to replace it for testing
666
+ if _environ is not None:
667
+ self._environ = _environ
668
+
669
+ self.is_jupyter = _is_jupyter() if force_jupyter is None else force_jupyter
670
+ if self.is_jupyter:
671
+ if width is None:
672
+ jupyter_columns = self._environ.get("JUPYTER_COLUMNS")
673
+ if jupyter_columns is not None and jupyter_columns.isdigit():
674
+ width = int(jupyter_columns)
675
+ else:
676
+ width = JUPYTER_DEFAULT_COLUMNS
677
+ if height is None:
678
+ jupyter_lines = self._environ.get("JUPYTER_LINES")
679
+ if jupyter_lines is not None and jupyter_lines.isdigit():
680
+ height = int(jupyter_lines)
681
+ else:
682
+ height = JUPYTER_DEFAULT_LINES
683
+
684
+ self.tab_size = tab_size
685
+ self.record = record
686
+ self._markup = markup
687
+ self._emoji = emoji
688
+ self._emoji_variant: Optional[EmojiVariant] = emoji_variant
689
+ self._highlight = highlight
690
+ self.legacy_windows: bool = (
691
+ (detect_legacy_windows() and not self.is_jupyter)
692
+ if legacy_windows is None
693
+ else legacy_windows
694
+ )
695
+
696
+ if width is None:
697
+ columns = self._environ.get("COLUMNS")
698
+ if columns is not None and columns.isdigit():
699
+ width = int(columns) - self.legacy_windows
700
+ if height is None:
701
+ lines = self._environ.get("LINES")
702
+ if lines is not None and lines.isdigit():
703
+ height = int(lines)
704
+
705
+ self.soft_wrap = soft_wrap
706
+ self._width = width
707
+ self._height = height
708
+
709
+ self._color_system: Optional[ColorSystem]
710
+
711
+ self._force_terminal = None
712
+ if force_terminal is not None:
713
+ self._force_terminal = force_terminal
714
+ else:
715
+ # If FORCE_COLOR env var has any value at all, we force terminal.
716
+ force_color = self._environ.get("FORCE_COLOR")
717
+ if force_color is not None:
718
+ self._force_terminal = True
719
+
720
+ self._file = file
721
+ self.quiet = quiet
722
+ self.stderr = stderr
723
+
724
+ if color_system is None:
725
+ self._color_system = None
726
+ elif color_system == "auto":
727
+ self._color_system = self._detect_color_system()
728
+ else:
729
+ self._color_system = COLOR_SYSTEMS[color_system]
730
+
731
+ self._lock = threading.RLock()
732
+ self._log_render = LogRender(
733
+ show_time=log_time,
734
+ show_path=log_path,
735
+ time_format=log_time_format,
736
+ )
737
+ self.highlighter: HighlighterType = highlighter or _null_highlighter
738
+ self.safe_box = safe_box
739
+ self.get_datetime = get_datetime or datetime.now
740
+ self.get_time = get_time or monotonic
741
+ self.style = style
742
+ self.no_color = (
743
+ no_color if no_color is not None else "NO_COLOR" in self._environ
744
+ )
745
+ self.is_interactive = (
746
+ (self.is_terminal and not self.is_dumb_terminal)
747
+ if force_interactive is None
748
+ else force_interactive
749
+ )
750
+
751
+ self._record_buffer_lock = threading.RLock()
752
+ self._thread_locals = ConsoleThreadLocals(
753
+ theme_stack=ThemeStack(themes.DEFAULT if theme is None else theme)
754
+ )
755
+ self._record_buffer: List[Segment] = []
756
+ self._render_hooks: List[RenderHook] = []
757
+ self._live: Optional["Live"] = None
758
+ self._is_alt_screen = False
759
+
760
+ def __repr__(self) -> str:
761
+ return f"<console width={self.width} {str(self._color_system)}>"
762
+
763
+ @property
764
+ def file(self) -> IO[str]:
765
+ """Get the file object to write to."""
766
+ file = self._file or (sys.stderr if self.stderr else sys.stdout)
767
+ file = getattr(file, "rich_proxied_file", file)
768
+ if file is None:
769
+ file = NULL_FILE
770
+ return file
771
+
772
+ @file.setter
773
+ def file(self, new_file: IO[str]) -> None:
774
+ """Set a new file object."""
775
+ self._file = new_file
776
+
777
+ @property
778
+ def _buffer(self) -> List[Segment]:
779
+ """Get a thread local buffer."""
780
+ return self._thread_locals.buffer
781
+
782
+ @property
783
+ def _buffer_index(self) -> int:
784
+ """Get a thread local buffer."""
785
+ return self._thread_locals.buffer_index
786
+
787
+ @_buffer_index.setter
788
+ def _buffer_index(self, value: int) -> None:
789
+ self._thread_locals.buffer_index = value
790
+
791
+ @property
792
+ def _theme_stack(self) -> ThemeStack:
793
+ """Get the thread local theme stack."""
794
+ return self._thread_locals.theme_stack
795
+
796
+ def _detect_color_system(self) -> Optional[ColorSystem]:
797
+ """Detect color system from env vars."""
798
+ if self.is_jupyter:
799
+ return ColorSystem.TRUECOLOR
800
+ if not self.is_terminal or self.is_dumb_terminal:
801
+ return None
802
+ if WINDOWS: # pragma: no cover
803
+ if self.legacy_windows: # pragma: no cover
804
+ return ColorSystem.WINDOWS
805
+ windows_console_features = get_windows_console_features()
806
+ return (
807
+ ColorSystem.TRUECOLOR
808
+ if windows_console_features.truecolor
809
+ else ColorSystem.EIGHT_BIT
810
+ )
811
+ else:
812
+ color_term = self._environ.get("COLORTERM", "").strip().lower()
813
+ if color_term in ("truecolor", "24bit"):
814
+ return ColorSystem.TRUECOLOR
815
+ term = self._environ.get("TERM", "").strip().lower()
816
+ _term_name, _hyphen, colors = term.rpartition("-")
817
+ color_system = _TERM_COLORS.get(colors, ColorSystem.STANDARD)
818
+ return color_system
819
+
820
+ def _enter_buffer(self) -> None:
821
+ """Enter in to a buffer context, and buffer all output."""
822
+ self._buffer_index += 1
823
+
824
+ def _exit_buffer(self) -> None:
825
+ """Leave buffer context, and render content if required."""
826
+ self._buffer_index -= 1
827
+ self._check_buffer()
828
+
829
+ def set_live(self, live: "Live") -> None:
830
+ """Set Live instance. Used by Live context manager.
831
+
832
+ Args:
833
+ live (Live): Live instance using this Console.
834
+
835
+ Raises:
836
+ errors.LiveError: If this Console has a Live context currently active.
837
+ """
838
+ with self._lock:
839
+ if self._live is not None:
840
+ raise errors.LiveError("Only one live display may be active at once")
841
+ self._live = live
842
+
843
+ def clear_live(self) -> None:
844
+ """Clear the Live instance."""
845
+ with self._lock:
846
+ self._live = None
847
+
848
+ def push_render_hook(self, hook: RenderHook) -> None:
849
+ """Add a new render hook to the stack.
850
+
851
+ Args:
852
+ hook (RenderHook): Render hook instance.
853
+ """
854
+ with self._lock:
855
+ self._render_hooks.append(hook)
856
+
857
+ def pop_render_hook(self) -> None:
858
+ """Pop the last renderhook from the stack."""
859
+ with self._lock:
860
+ self._render_hooks.pop()
861
+
862
+ def __enter__(self) -> "Console":
863
+ """Own context manager to enter buffer context."""
864
+ self._enter_buffer()
865
+ return self
866
+
867
+ def __exit__(self, exc_type: Any, exc_value: Any, traceback: Any) -> None:
868
+ """Exit buffer context."""
869
+ self._exit_buffer()
870
+
871
+ def begin_capture(self) -> None:
872
+ """Begin capturing console output. Call :meth:`end_capture` to exit capture mode and return output."""
873
+ self._enter_buffer()
874
+
875
+ def end_capture(self) -> str:
876
+ """End capture mode and return captured string.
877
+
878
+ Returns:
879
+ str: Console output.
880
+ """
881
+ render_result = self._render_buffer(self._buffer)
882
+ del self._buffer[:]
883
+ self._exit_buffer()
884
+ return render_result
885
+
886
+ def push_theme(self, theme: Theme, *, inherit: bool = True) -> None:
887
+ """Push a new theme on to the top of the stack, replacing the styles from the previous theme.
888
+ Generally speaking, you should call :meth:`~rich.console.Console.use_theme` to get a context manager, rather
889
+ than calling this method directly.
890
+
891
+ Args:
892
+ theme (Theme): A theme instance.
893
+ inherit (bool, optional): Inherit existing styles. Defaults to True.
894
+ """
895
+ self._theme_stack.push_theme(theme, inherit=inherit)
896
+
897
+ def pop_theme(self) -> None:
898
+ """Remove theme from top of stack, restoring previous theme."""
899
+ self._theme_stack.pop_theme()
900
+
901
+ def use_theme(self, theme: Theme, *, inherit: bool = True) -> ThemeContext:
902
+ """Use a different theme for the duration of the context manager.
903
+
904
+ Args:
905
+ theme (Theme): Theme instance to user.
906
+ inherit (bool, optional): Inherit existing console styles. Defaults to True.
907
+
908
+ Returns:
909
+ ThemeContext: [description]
910
+ """
911
+ return ThemeContext(self, theme, inherit)
912
+
913
+ @property
914
+ def color_system(self) -> Optional[str]:
915
+ """Get color system string.
916
+
917
+ Returns:
918
+ Optional[str]: "standard", "256" or "truecolor".
919
+ """
920
+
921
+ if self._color_system is not None:
922
+ return _COLOR_SYSTEMS_NAMES[self._color_system]
923
+ else:
924
+ return None
925
+
926
+ @property
927
+ def encoding(self) -> str:
928
+ """Get the encoding of the console file, e.g. ``"utf-8"``.
929
+
930
+ Returns:
931
+ str: A standard encoding string.
932
+ """
933
+ return (getattr(self.file, "encoding", "utf-8") or "utf-8").lower()
934
+
935
+ @property
936
+ def is_terminal(self) -> bool:
937
+ """Check if the console is writing to a terminal.
938
+
939
+ Returns:
940
+ bool: True if the console writing to a device capable of
941
+ understanding terminal codes, otherwise False.
942
+ """
943
+ if self._force_terminal is not None:
944
+ return self._force_terminal
945
+
946
+ if hasattr(sys.stdin, "__module__") and sys.stdin.__module__.startswith(
947
+ "idlelib"
948
+ ):
949
+ # Return False for Idle which claims to be a tty but can't handle ansi codes
950
+ return False
951
+
952
+ isatty: Optional[Callable[[], bool]] = getattr(self.file, "isatty", None)
953
+ try:
954
+ return False if isatty is None else isatty()
955
+ except ValueError:
956
+ # in some situation (at the end of a pytest run for example) isatty() can raise
957
+ # ValueError: I/O operation on closed file
958
+ # return False because we aren't in a terminal anymore
959
+ return False
960
+
961
+ @property
962
+ def is_dumb_terminal(self) -> bool:
963
+ """Detect dumb terminal.
964
+
965
+ Returns:
966
+ bool: True if writing to a dumb terminal, otherwise False.
967
+
968
+ """
969
+ _term = self._environ.get("TERM", "")
970
+ is_dumb = _term.lower() in ("dumb", "unknown")
971
+ return self.is_terminal and is_dumb
972
+
973
+ @property
974
+ def options(self) -> ConsoleOptions:
975
+ """Get default console options."""
976
+ return ConsoleOptions(
977
+ max_height=self.size.height,
978
+ size=self.size,
979
+ legacy_windows=self.legacy_windows,
980
+ min_width=1,
981
+ max_width=self.width,
982
+ encoding=self.encoding,
983
+ is_terminal=self.is_terminal,
984
+ )
985
+
986
+ @property
987
+ def size(self) -> ConsoleDimensions:
988
+ """Get the size of the console.
989
+
990
+ Returns:
991
+ ConsoleDimensions: A named tuple containing the dimensions.
992
+ """
993
+
994
+ if self._width is not None and self._height is not None:
995
+ return ConsoleDimensions(self._width - self.legacy_windows, self._height)
996
+
997
+ if self.is_dumb_terminal:
998
+ return ConsoleDimensions(80, 25)
999
+
1000
+ width: Optional[int] = None
1001
+ height: Optional[int] = None
1002
+
1003
+ if WINDOWS: # pragma: no cover
1004
+ try:
1005
+ width, height = os.get_terminal_size()
1006
+ except (AttributeError, ValueError, OSError): # Probably not a terminal
1007
+ pass
1008
+ else:
1009
+ for file_descriptor in _STD_STREAMS:
1010
+ try:
1011
+ width, height = os.get_terminal_size(file_descriptor)
1012
+ except (AttributeError, ValueError, OSError):
1013
+ pass
1014
+ else:
1015
+ break
1016
+
1017
+ columns = self._environ.get("COLUMNS")
1018
+ if columns is not None and columns.isdigit():
1019
+ width = int(columns)
1020
+ lines = self._environ.get("LINES")
1021
+ if lines is not None and lines.isdigit():
1022
+ height = int(lines)
1023
+
1024
+ # get_terminal_size can report 0, 0 if run from pseudo-terminal
1025
+ width = width or 80
1026
+ height = height or 25
1027
+ return ConsoleDimensions(
1028
+ width - self.legacy_windows if self._width is None else self._width,
1029
+ height if self._height is None else self._height,
1030
+ )
1031
+
1032
+ @size.setter
1033
+ def size(self, new_size: Tuple[int, int]) -> None:
1034
+ """Set a new size for the terminal.
1035
+
1036
+ Args:
1037
+ new_size (Tuple[int, int]): New width and height.
1038
+ """
1039
+ width, height = new_size
1040
+ self._width = width
1041
+ self._height = height
1042
+
1043
+ @property
1044
+ def width(self) -> int:
1045
+ """Get the width of the console.
1046
+
1047
+ Returns:
1048
+ int: The width (in characters) of the console.
1049
+ """
1050
+ return self.size.width
1051
+
1052
+ @width.setter
1053
+ def width(self, width: int) -> None:
1054
+ """Set width.
1055
+
1056
+ Args:
1057
+ width (int): New width.
1058
+ """
1059
+ self._width = width
1060
+
1061
+ @property
1062
+ def height(self) -> int:
1063
+ """Get the height of the console.
1064
+
1065
+ Returns:
1066
+ int: The height (in lines) of the console.
1067
+ """
1068
+ return self.size.height
1069
+
1070
+ @height.setter
1071
+ def height(self, height: int) -> None:
1072
+ """Set height.
1073
+
1074
+ Args:
1075
+ height (int): new height.
1076
+ """
1077
+ self._height = height
1078
+
1079
+ def bell(self) -> None:
1080
+ """Play a 'bell' sound (if supported by the terminal)."""
1081
+ self.control(Control.bell())
1082
+
1083
+ def capture(self) -> Capture:
1084
+ """A context manager to *capture* the result of print() or log() in a string,
1085
+ rather than writing it to the console.
1086
+
1087
+ Example:
1088
+ >>> from rich.console import Console
1089
+ >>> console = Console()
1090
+ >>> with console.capture() as capture:
1091
+ ... console.print("[bold magenta]Hello World[/]")
1092
+ >>> print(capture.get())
1093
+
1094
+ Returns:
1095
+ Capture: Context manager with disables writing to the terminal.
1096
+ """
1097
+ capture = Capture(self)
1098
+ return capture
1099
+
1100
+ def pager(
1101
+ self, pager: Optional[Pager] = None, styles: bool = False, links: bool = False
1102
+ ) -> PagerContext:
1103
+ """A context manager to display anything printed within a "pager". The pager application
1104
+ is defined by the system and will typically support at least pressing a key to scroll.
1105
+
1106
+ Args:
1107
+ pager (Pager, optional): A pager object, or None to use :class:`~rich.pager.SystemPager`. Defaults to None.
1108
+ styles (bool, optional): Show styles in pager. Defaults to False.
1109
+ links (bool, optional): Show links in pager. Defaults to False.
1110
+
1111
+ Example:
1112
+ >>> from rich.console import Console
1113
+ >>> from rich.__main__ import make_test_card
1114
+ >>> console = Console()
1115
+ >>> with console.pager():
1116
+ console.print(make_test_card())
1117
+
1118
+ Returns:
1119
+ PagerContext: A context manager.
1120
+ """
1121
+ return PagerContext(self, pager=pager, styles=styles, links=links)
1122
+
1123
+ def line(self, count: int = 1) -> None:
1124
+ """Write new line(s).
1125
+
1126
+ Args:
1127
+ count (int, optional): Number of new lines. Defaults to 1.
1128
+ """
1129
+
1130
+ assert count >= 0, "count must be >= 0"
1131
+ self.print(NewLine(count))
1132
+
1133
+ def clear(self, home: bool = True) -> None:
1134
+ """Clear the screen.
1135
+
1136
+ Args:
1137
+ home (bool, optional): Also move the cursor to 'home' position. Defaults to True.
1138
+ """
1139
+ if home:
1140
+ self.control(Control.clear(), Control.home())
1141
+ else:
1142
+ self.control(Control.clear())
1143
+
1144
+ def status(
1145
+ self,
1146
+ status: RenderableType,
1147
+ *,
1148
+ spinner: str = "dots",
1149
+ spinner_style: str = "status.spinner",
1150
+ speed: float = 1.0,
1151
+ refresh_per_second: float = 12.5,
1152
+ ) -> "Status":
1153
+ """Display a status and spinner.
1154
+
1155
+ Args:
1156
+ status (RenderableType): A status renderable (str or Text typically).
1157
+ spinner (str, optional): Name of spinner animation (see python -m rich.spinner). Defaults to "dots".
1158
+ spinner_style (StyleType, optional): Style of spinner. Defaults to "status.spinner".
1159
+ speed (float, optional): Speed factor for spinner animation. Defaults to 1.0.
1160
+ refresh_per_second (float, optional): Number of refreshes per second. Defaults to 12.5.
1161
+
1162
+ Returns:
1163
+ Status: A Status object that may be used as a context manager.
1164
+ """
1165
+ from .status import Status
1166
+
1167
+ status_renderable = Status(
1168
+ status,
1169
+ console=self,
1170
+ spinner=spinner,
1171
+ spinner_style=spinner_style,
1172
+ speed=speed,
1173
+ refresh_per_second=refresh_per_second,
1174
+ )
1175
+ return status_renderable
1176
+
1177
+ def show_cursor(self, show: bool = True) -> bool:
1178
+ """Show or hide the cursor.
1179
+
1180
+ Args:
1181
+ show (bool, optional): Set visibility of the cursor.
1182
+ """
1183
+ if self.is_terminal:
1184
+ self.control(Control.show_cursor(show))
1185
+ return True
1186
+ return False
1187
+
1188
+ def set_alt_screen(self, enable: bool = True) -> bool:
1189
+ """Enables alternative screen mode.
1190
+
1191
+ Note, if you enable this mode, you should ensure that is disabled before
1192
+ the application exits. See :meth:`~rich.Console.screen` for a context manager
1193
+ that handles this for you.
1194
+
1195
+ Args:
1196
+ enable (bool, optional): Enable (True) or disable (False) alternate screen. Defaults to True.
1197
+
1198
+ Returns:
1199
+ bool: True if the control codes were written.
1200
+
1201
+ """
1202
+ changed = False
1203
+ if self.is_terminal and not self.legacy_windows:
1204
+ self.control(Control.alt_screen(enable))
1205
+ changed = True
1206
+ self._is_alt_screen = enable
1207
+ return changed
1208
+
1209
+ @property
1210
+ def is_alt_screen(self) -> bool:
1211
+ """Check if the alt screen was enabled.
1212
+
1213
+ Returns:
1214
+ bool: True if the alt screen was enabled, otherwise False.
1215
+ """
1216
+ return self._is_alt_screen
1217
+
1218
+ def set_window_title(self, title: str) -> bool:
1219
+ """Set the title of the console terminal window.
1220
+
1221
+ Warning: There is no means within Rich of "resetting" the window title to its
1222
+ previous value, meaning the title you set will persist even after your application
1223
+ exits.
1224
+
1225
+ ``fish`` shell resets the window title before and after each command by default,
1226
+ negating this issue. Windows Terminal and command prompt will also reset the title for you.
1227
+ Most other shells and terminals, however, do not do this.
1228
+
1229
+ Some terminals may require configuration changes before you can set the title.
1230
+ Some terminals may not support setting the title at all.
1231
+
1232
+ Other software (including the terminal itself, the shell, custom prompts, plugins, etc.)
1233
+ may also set the terminal window title. This could result in whatever value you write
1234
+ using this method being overwritten.
1235
+
1236
+ Args:
1237
+ title (str): The new title of the terminal window.
1238
+
1239
+ Returns:
1240
+ bool: True if the control code to change the terminal title was
1241
+ written, otherwise False. Note that a return value of True
1242
+ does not guarantee that the window title has actually changed,
1243
+ since the feature may be unsupported/disabled in some terminals.
1244
+ """
1245
+ if self.is_terminal:
1246
+ self.control(Control.title(title))
1247
+ return True
1248
+ return False
1249
+
1250
+ def screen(
1251
+ self, hide_cursor: bool = True, style: Optional[StyleType] = None
1252
+ ) -> "ScreenContext":
1253
+ """Context manager to enable and disable 'alternative screen' mode.
1254
+
1255
+ Args:
1256
+ hide_cursor (bool, optional): Also hide the cursor. Defaults to False.
1257
+ style (Style, optional): Optional style for screen. Defaults to None.
1258
+
1259
+ Returns:
1260
+ ~ScreenContext: Context which enables alternate screen on enter, and disables it on exit.
1261
+ """
1262
+ return ScreenContext(self, hide_cursor=hide_cursor, style=style or "")
1263
+
1264
+ def measure(
1265
+ self, renderable: RenderableType, *, options: Optional[ConsoleOptions] = None
1266
+ ) -> Measurement:
1267
+ """Measure a renderable. Returns a :class:`~rich.measure.Measurement` object which contains
1268
+ information regarding the number of characters required to print the renderable.
1269
+
1270
+ Args:
1271
+ renderable (RenderableType): Any renderable or string.
1272
+ options (Optional[ConsoleOptions], optional): Options to use when measuring, or None
1273
+ to use default options. Defaults to None.
1274
+
1275
+ Returns:
1276
+ Measurement: A measurement of the renderable.
1277
+ """
1278
+ measurement = Measurement.get(self, options or self.options, renderable)
1279
+ return measurement
1280
+
1281
+ def render(
1282
+ self, renderable: RenderableType, options: Optional[ConsoleOptions] = None
1283
+ ) -> Iterable[Segment]:
1284
+ """Render an object in to an iterable of `Segment` instances.
1285
+
1286
+ This method contains the logic for rendering objects with the console protocol.
1287
+ You are unlikely to need to use it directly, unless you are extending the library.
1288
+
1289
+ Args:
1290
+ renderable (RenderableType): An object supporting the console protocol, or
1291
+ an object that may be converted to a string.
1292
+ options (ConsoleOptions, optional): An options object, or None to use self.options. Defaults to None.
1293
+
1294
+ Returns:
1295
+ Iterable[Segment]: An iterable of segments that may be rendered.
1296
+ """
1297
+
1298
+ _options = options or self.options
1299
+ if _options.max_width < 1:
1300
+ # No space to render anything. This prevents potential recursion errors.
1301
+ return
1302
+ render_iterable: RenderResult
1303
+
1304
+ renderable = rich_cast(renderable)
1305
+ if hasattr(renderable, "__rich_console__") and not isclass(renderable):
1306
+ render_iterable = renderable.__rich_console__(self, _options) # type: ignore[union-attr]
1307
+ elif isinstance(renderable, str):
1308
+ text_renderable = self.render_str(
1309
+ renderable, highlight=_options.highlight, markup=_options.markup
1310
+ )
1311
+ render_iterable = text_renderable.__rich_console__(self, _options)
1312
+ else:
1313
+ raise errors.NotRenderableError(
1314
+ f"Unable to render {renderable!r}; "
1315
+ "A str, Segment or object with __rich_console__ method is required"
1316
+ )
1317
+
1318
+ try:
1319
+ iter_render = iter(render_iterable)
1320
+ except TypeError:
1321
+ raise errors.NotRenderableError(
1322
+ f"object {render_iterable!r} is not renderable"
1323
+ )
1324
+ _Segment = Segment
1325
+ _options = _options.reset_height()
1326
+ for render_output in iter_render:
1327
+ if isinstance(render_output, _Segment):
1328
+ yield render_output
1329
+ else:
1330
+ yield from self.render(render_output, _options)
1331
+
1332
+ def render_lines(
1333
+ self,
1334
+ renderable: RenderableType,
1335
+ options: Optional[ConsoleOptions] = None,
1336
+ *,
1337
+ style: Optional[Style] = None,
1338
+ pad: bool = True,
1339
+ new_lines: bool = False,
1340
+ ) -> List[List[Segment]]:
1341
+ """Render objects in to a list of lines.
1342
+
1343
+ The output of render_lines is useful when further formatting of rendered console text
1344
+ is required, such as the Panel class which draws a border around any renderable object.
1345
+
1346
+ Args:
1347
+ renderable (RenderableType): Any object renderable in the console.
1348
+ options (Optional[ConsoleOptions], optional): Console options, or None to use self.options. Default to ``None``.
1349
+ style (Style, optional): Optional style to apply to renderables. Defaults to ``None``.
1350
+ pad (bool, optional): Pad lines shorter than render width. Defaults to ``True``.
1351
+ new_lines (bool, optional): Include "\n" characters at end of lines.
1352
+
1353
+ Returns:
1354
+ List[List[Segment]]: A list of lines, where a line is a list of Segment objects.
1355
+ """
1356
+ with self._lock:
1357
+ render_options = options or self.options
1358
+ _rendered = self.render(renderable, render_options)
1359
+ if style:
1360
+ _rendered = Segment.apply_style(_rendered, style)
1361
+
1362
+ render_height = render_options.height
1363
+ if render_height is not None:
1364
+ render_height = max(0, render_height)
1365
+
1366
+ lines = list(
1367
+ islice(
1368
+ Segment.split_and_crop_lines(
1369
+ _rendered,
1370
+ render_options.max_width,
1371
+ include_new_lines=new_lines,
1372
+ pad=pad,
1373
+ style=style,
1374
+ ),
1375
+ None,
1376
+ render_height,
1377
+ )
1378
+ )
1379
+ if render_options.height is not None:
1380
+ extra_lines = render_options.height - len(lines)
1381
+ if extra_lines > 0:
1382
+ pad_line = [
1383
+ [Segment(" " * render_options.max_width, style), Segment("\n")]
1384
+ if new_lines
1385
+ else [Segment(" " * render_options.max_width, style)]
1386
+ ]
1387
+ lines.extend(pad_line * extra_lines)
1388
+
1389
+ return lines
1390
+
1391
+ def render_str(
1392
+ self,
1393
+ text: str,
1394
+ *,
1395
+ style: Union[str, Style] = "",
1396
+ justify: Optional[JustifyMethod] = None,
1397
+ overflow: Optional[OverflowMethod] = None,
1398
+ emoji: Optional[bool] = None,
1399
+ markup: Optional[bool] = None,
1400
+ highlight: Optional[bool] = None,
1401
+ highlighter: Optional[HighlighterType] = None,
1402
+ ) -> "Text":
1403
+ """Convert a string to a Text instance. This is called automatically if
1404
+ you print or log a string.
1405
+
1406
+ Args:
1407
+ text (str): Text to render.
1408
+ style (Union[str, Style], optional): Style to apply to rendered text.
1409
+ justify (str, optional): Justify method: "default", "left", "center", "full", or "right". Defaults to ``None``.
1410
+ overflow (str, optional): Overflow method: "crop", "fold", or "ellipsis". Defaults to ``None``.
1411
+ emoji (Optional[bool], optional): Enable emoji, or ``None`` to use Console default.
1412
+ markup (Optional[bool], optional): Enable markup, or ``None`` to use Console default.
1413
+ highlight (Optional[bool], optional): Enable highlighting, or ``None`` to use Console default.
1414
+ highlighter (HighlighterType, optional): Optional highlighter to apply.
1415
+ Returns:
1416
+ ConsoleRenderable: Renderable object.
1417
+
1418
+ """
1419
+ emoji_enabled = emoji or (emoji is None and self._emoji)
1420
+ markup_enabled = markup or (markup is None and self._markup)
1421
+ highlight_enabled = highlight or (highlight is None and self._highlight)
1422
+
1423
+ if markup_enabled:
1424
+ rich_text = render_markup(
1425
+ text,
1426
+ style=style,
1427
+ emoji=emoji_enabled,
1428
+ emoji_variant=self._emoji_variant,
1429
+ )
1430
+ rich_text.justify = justify
1431
+ rich_text.overflow = overflow
1432
+ else:
1433
+ rich_text = Text(
1434
+ _emoji_replace(text, default_variant=self._emoji_variant)
1435
+ if emoji_enabled
1436
+ else text,
1437
+ justify=justify,
1438
+ overflow=overflow,
1439
+ style=style,
1440
+ )
1441
+
1442
+ _highlighter = (highlighter or self.highlighter) if highlight_enabled else None
1443
+ if _highlighter is not None:
1444
+ highlight_text = _highlighter(str(rich_text))
1445
+ highlight_text.copy_styles(rich_text)
1446
+ return highlight_text
1447
+
1448
+ return rich_text
1449
+
1450
+ def get_style(
1451
+ self, name: Union[str, Style], *, default: Optional[Union[Style, str]] = None
1452
+ ) -> Style:
1453
+ """Get a Style instance by its theme name or parse a definition.
1454
+
1455
+ Args:
1456
+ name (str): The name of a style or a style definition.
1457
+
1458
+ Returns:
1459
+ Style: A Style object.
1460
+
1461
+ Raises:
1462
+ MissingStyle: If no style could be parsed from name.
1463
+
1464
+ """
1465
+ if isinstance(name, Style):
1466
+ return name
1467
+
1468
+ try:
1469
+ style = self._theme_stack.get(name)
1470
+ if style is None:
1471
+ style = Style.parse(name)
1472
+ return style.copy() if style.link else style
1473
+ except errors.StyleSyntaxError as error:
1474
+ if default is not None:
1475
+ return self.get_style(default)
1476
+ raise errors.MissingStyle(
1477
+ f"Failed to get style {name!r}; {error}"
1478
+ ) from None
1479
+
1480
+ def _collect_renderables(
1481
+ self,
1482
+ objects: Iterable[Any],
1483
+ sep: str,
1484
+ end: str,
1485
+ *,
1486
+ justify: Optional[JustifyMethod] = None,
1487
+ emoji: Optional[bool] = None,
1488
+ markup: Optional[bool] = None,
1489
+ highlight: Optional[bool] = None,
1490
+ ) -> List[ConsoleRenderable]:
1491
+ """Combine a number of renderables and text into one renderable.
1492
+
1493
+ Args:
1494
+ objects (Iterable[Any]): Anything that Rich can render.
1495
+ sep (str): String to write between print data.
1496
+ end (str): String to write at end of print data.
1497
+ justify (str, optional): One of "left", "right", "center", or "full". Defaults to ``None``.
1498
+ emoji (Optional[bool], optional): Enable emoji code, or ``None`` to use console default.
1499
+ markup (Optional[bool], optional): Enable markup, or ``None`` to use console default.
1500
+ highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use console default.
1501
+
1502
+ Returns:
1503
+ List[ConsoleRenderable]: A list of things to render.
1504
+ """
1505
+ renderables: List[ConsoleRenderable] = []
1506
+ _append = renderables.append
1507
+ text: List[Text] = []
1508
+ append_text = text.append
1509
+
1510
+ append = _append
1511
+ if justify in ("left", "center", "right"):
1512
+
1513
+ def align_append(renderable: RenderableType) -> None:
1514
+ _append(Align(renderable, cast(AlignMethod, justify)))
1515
+
1516
+ append = align_append
1517
+
1518
+ _highlighter: HighlighterType = _null_highlighter
1519
+ if highlight or (highlight is None and self._highlight):
1520
+ _highlighter = self.highlighter
1521
+
1522
+ def check_text() -> None:
1523
+ if text:
1524
+ sep_text = Text(sep, justify=justify, end=end)
1525
+ append(sep_text.join(text))
1526
+ del text[:]
1527
+
1528
+ for renderable in objects:
1529
+ renderable = rich_cast(renderable)
1530
+ if isinstance(renderable, str):
1531
+ append_text(
1532
+ self.render_str(
1533
+ renderable, emoji=emoji, markup=markup, highlighter=_highlighter
1534
+ )
1535
+ )
1536
+ elif isinstance(renderable, Text):
1537
+ append_text(renderable)
1538
+ elif isinstance(renderable, ConsoleRenderable):
1539
+ check_text()
1540
+ append(renderable)
1541
+ elif is_expandable(renderable):
1542
+ check_text()
1543
+ append(Pretty(renderable, highlighter=_highlighter))
1544
+ else:
1545
+ append_text(_highlighter(str(renderable)))
1546
+
1547
+ check_text()
1548
+
1549
+ if self.style is not None:
1550
+ style = self.get_style(self.style)
1551
+ renderables = [Styled(renderable, style) for renderable in renderables]
1552
+
1553
+ return renderables
1554
+
1555
+ def rule(
1556
+ self,
1557
+ title: TextType = "",
1558
+ *,
1559
+ characters: str = "─",
1560
+ style: Union[str, Style] = "rule.line",
1561
+ align: AlignMethod = "center",
1562
+ ) -> None:
1563
+ """Draw a line with optional centered title.
1564
+
1565
+ Args:
1566
+ title (str, optional): Text to render over the rule. Defaults to "".
1567
+ characters (str, optional): Character(s) to form the line. Defaults to "─".
1568
+ style (str, optional): Style of line. Defaults to "rule.line".
1569
+ align (str, optional): How to align the title, one of "left", "center", or "right". Defaults to "center".
1570
+ """
1571
+ from .rule import Rule
1572
+
1573
+ rule = Rule(title=title, characters=characters, style=style, align=align)
1574
+ self.print(rule)
1575
+
1576
+ def control(self, *control: Control) -> None:
1577
+ """Insert non-printing control codes.
1578
+
1579
+ Args:
1580
+ control_codes (str): Control codes, such as those that may move the cursor.
1581
+ """
1582
+ if not self.is_dumb_terminal:
1583
+ with self:
1584
+ self._buffer.extend(_control.segment for _control in control)
1585
+
1586
+ def out(
1587
+ self,
1588
+ *objects: Any,
1589
+ sep: str = " ",
1590
+ end: str = "\n",
1591
+ style: Optional[Union[str, Style]] = None,
1592
+ highlight: Optional[bool] = None,
1593
+ ) -> None:
1594
+ """Output to the terminal. This is a low-level way of writing to the terminal which unlike
1595
+ :meth:`~rich.console.Console.print` won't pretty print, wrap text, or apply markup, but will
1596
+ optionally apply highlighting and a basic style.
1597
+
1598
+ Args:
1599
+ sep (str, optional): String to write between print data. Defaults to " ".
1600
+ end (str, optional): String to write at end of print data. Defaults to "\\\\n".
1601
+ style (Union[str, Style], optional): A style to apply to output. Defaults to None.
1602
+ highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use
1603
+ console default. Defaults to ``None``.
1604
+ """
1605
+ raw_output: str = sep.join(str(_object) for _object in objects)
1606
+ self.print(
1607
+ raw_output,
1608
+ style=style,
1609
+ highlight=highlight,
1610
+ emoji=False,
1611
+ markup=False,
1612
+ no_wrap=True,
1613
+ overflow="ignore",
1614
+ crop=False,
1615
+ end=end,
1616
+ )
1617
+
1618
+ def print(
1619
+ self,
1620
+ *objects: Any,
1621
+ sep: str = " ",
1622
+ end: str = "\n",
1623
+ style: Optional[Union[str, Style]] = None,
1624
+ justify: Optional[JustifyMethod] = None,
1625
+ overflow: Optional[OverflowMethod] = None,
1626
+ no_wrap: Optional[bool] = None,
1627
+ emoji: Optional[bool] = None,
1628
+ markup: Optional[bool] = None,
1629
+ highlight: Optional[bool] = None,
1630
+ width: Optional[int] = None,
1631
+ height: Optional[int] = None,
1632
+ crop: bool = True,
1633
+ soft_wrap: Optional[bool] = None,
1634
+ new_line_start: bool = False,
1635
+ ) -> None:
1636
+ """Print to the console.
1637
+
1638
+ Args:
1639
+ objects (positional args): Objects to log to the terminal.
1640
+ sep (str, optional): String to write between print data. Defaults to " ".
1641
+ end (str, optional): String to write at end of print data. Defaults to "\\\\n".
1642
+ style (Union[str, Style], optional): A style to apply to output. Defaults to None.
1643
+ justify (str, optional): Justify method: "default", "left", "right", "center", or "full". Defaults to ``None``.
1644
+ overflow (str, optional): Overflow method: "ignore", "crop", "fold", or "ellipsis". Defaults to None.
1645
+ no_wrap (Optional[bool], optional): Disable word wrapping. Defaults to None.
1646
+ emoji (Optional[bool], optional): Enable emoji code, or ``None`` to use console default. Defaults to ``None``.
1647
+ markup (Optional[bool], optional): Enable markup, or ``None`` to use console default. Defaults to ``None``.
1648
+ highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use console default. Defaults to ``None``.
1649
+ width (Optional[int], optional): Width of output, or ``None`` to auto-detect. Defaults to ``None``.
1650
+ crop (Optional[bool], optional): Crop output to width of terminal. Defaults to True.
1651
+ soft_wrap (bool, optional): Enable soft wrap mode which disables word wrapping and cropping of text or ``None`` for
1652
+ Console default. Defaults to ``None``.
1653
+ new_line_start (bool, False): Insert a new line at the start if the output contains more than one line. Defaults to ``False``.
1654
+ """
1655
+ if not objects:
1656
+ objects = (NewLine(),)
1657
+
1658
+ if soft_wrap is None:
1659
+ soft_wrap = self.soft_wrap
1660
+ if soft_wrap:
1661
+ if no_wrap is None:
1662
+ no_wrap = True
1663
+ if overflow is None:
1664
+ overflow = "ignore"
1665
+ crop = False
1666
+ render_hooks = self._render_hooks[:]
1667
+ with self:
1668
+ renderables = self._collect_renderables(
1669
+ objects,
1670
+ sep,
1671
+ end,
1672
+ justify=justify,
1673
+ emoji=emoji,
1674
+ markup=markup,
1675
+ highlight=highlight,
1676
+ )
1677
+ for hook in render_hooks:
1678
+ renderables = hook.process_renderables(renderables)
1679
+ render_options = self.options.update(
1680
+ justify=justify,
1681
+ overflow=overflow,
1682
+ width=min(width, self.width) if width is not None else NO_CHANGE,
1683
+ height=height,
1684
+ no_wrap=no_wrap,
1685
+ markup=markup,
1686
+ highlight=highlight,
1687
+ )
1688
+
1689
+ new_segments: List[Segment] = []
1690
+ extend = new_segments.extend
1691
+ render = self.render
1692
+ if style is None:
1693
+ for renderable in renderables:
1694
+ extend(render(renderable, render_options))
1695
+ else:
1696
+ for renderable in renderables:
1697
+ extend(
1698
+ Segment.apply_style(
1699
+ render(renderable, render_options), self.get_style(style)
1700
+ )
1701
+ )
1702
+ if new_line_start:
1703
+ if (
1704
+ len("".join(segment.text for segment in new_segments).splitlines())
1705
+ > 1
1706
+ ):
1707
+ new_segments.insert(0, Segment.line())
1708
+ if crop:
1709
+ buffer_extend = self._buffer.extend
1710
+ for line in Segment.split_and_crop_lines(
1711
+ new_segments, self.width, pad=False
1712
+ ):
1713
+ buffer_extend(line)
1714
+ else:
1715
+ self._buffer.extend(new_segments)
1716
+
1717
+ def print_json(
1718
+ self,
1719
+ json: Optional[str] = None,
1720
+ *,
1721
+ data: Any = None,
1722
+ indent: Union[None, int, str] = 2,
1723
+ highlight: bool = True,
1724
+ skip_keys: bool = False,
1725
+ ensure_ascii: bool = False,
1726
+ check_circular: bool = True,
1727
+ allow_nan: bool = True,
1728
+ default: Optional[Callable[[Any], Any]] = None,
1729
+ sort_keys: bool = False,
1730
+ ) -> None:
1731
+ """Pretty prints JSON. Output will be valid JSON.
1732
+
1733
+ Args:
1734
+ json (Optional[str]): A string containing JSON.
1735
+ data (Any): If json is not supplied, then encode this data.
1736
+ indent (Union[None, int, str], optional): Number of spaces to indent. Defaults to 2.
1737
+ highlight (bool, optional): Enable highlighting of output: Defaults to True.
1738
+ skip_keys (bool, optional): Skip keys not of a basic type. Defaults to False.
1739
+ ensure_ascii (bool, optional): Escape all non-ascii characters. Defaults to False.
1740
+ check_circular (bool, optional): Check for circular references. Defaults to True.
1741
+ allow_nan (bool, optional): Allow NaN and Infinity values. Defaults to True.
1742
+ default (Callable, optional): A callable that converts values that can not be encoded
1743
+ in to something that can be JSON encoded. Defaults to None.
1744
+ sort_keys (bool, optional): Sort dictionary keys. Defaults to False.
1745
+ """
1746
+ from pip._vendor.rich.json import JSON
1747
+
1748
+ if json is None:
1749
+ json_renderable = JSON.from_data(
1750
+ data,
1751
+ indent=indent,
1752
+ highlight=highlight,
1753
+ skip_keys=skip_keys,
1754
+ ensure_ascii=ensure_ascii,
1755
+ check_circular=check_circular,
1756
+ allow_nan=allow_nan,
1757
+ default=default,
1758
+ sort_keys=sort_keys,
1759
+ )
1760
+ else:
1761
+ if not isinstance(json, str):
1762
+ raise TypeError(
1763
+ f"json must be str. Did you mean print_json(data={json!r}) ?"
1764
+ )
1765
+ json_renderable = JSON(
1766
+ json,
1767
+ indent=indent,
1768
+ highlight=highlight,
1769
+ skip_keys=skip_keys,
1770
+ ensure_ascii=ensure_ascii,
1771
+ check_circular=check_circular,
1772
+ allow_nan=allow_nan,
1773
+ default=default,
1774
+ sort_keys=sort_keys,
1775
+ )
1776
+ self.print(json_renderable, soft_wrap=True)
1777
+
1778
+ def update_screen(
1779
+ self,
1780
+ renderable: RenderableType,
1781
+ *,
1782
+ region: Optional[Region] = None,
1783
+ options: Optional[ConsoleOptions] = None,
1784
+ ) -> None:
1785
+ """Update the screen at a given offset.
1786
+
1787
+ Args:
1788
+ renderable (RenderableType): A Rich renderable.
1789
+ region (Region, optional): Region of screen to update, or None for entire screen. Defaults to None.
1790
+ x (int, optional): x offset. Defaults to 0.
1791
+ y (int, optional): y offset. Defaults to 0.
1792
+
1793
+ Raises:
1794
+ errors.NoAltScreen: If the Console isn't in alt screen mode.
1795
+
1796
+ """
1797
+ if not self.is_alt_screen:
1798
+ raise errors.NoAltScreen("Alt screen must be enabled to call update_screen")
1799
+ render_options = options or self.options
1800
+ if region is None:
1801
+ x = y = 0
1802
+ render_options = render_options.update_dimensions(
1803
+ render_options.max_width, render_options.height or self.height
1804
+ )
1805
+ else:
1806
+ x, y, width, height = region
1807
+ render_options = render_options.update_dimensions(width, height)
1808
+
1809
+ lines = self.render_lines(renderable, options=render_options)
1810
+ self.update_screen_lines(lines, x, y)
1811
+
1812
+ def update_screen_lines(
1813
+ self, lines: List[List[Segment]], x: int = 0, y: int = 0
1814
+ ) -> None:
1815
+ """Update lines of the screen at a given offset.
1816
+
1817
+ Args:
1818
+ lines (List[List[Segment]]): Rendered lines (as produced by :meth:`~rich.Console.render_lines`).
1819
+ x (int, optional): x offset (column no). Defaults to 0.
1820
+ y (int, optional): y offset (column no). Defaults to 0.
1821
+
1822
+ Raises:
1823
+ errors.NoAltScreen: If the Console isn't in alt screen mode.
1824
+ """
1825
+ if not self.is_alt_screen:
1826
+ raise errors.NoAltScreen("Alt screen must be enabled to call update_screen")
1827
+ screen_update = ScreenUpdate(lines, x, y)
1828
+ segments = self.render(screen_update)
1829
+ self._buffer.extend(segments)
1830
+ self._check_buffer()
1831
+
1832
+ def print_exception(
1833
+ self,
1834
+ *,
1835
+ width: Optional[int] = 100,
1836
+ extra_lines: int = 3,
1837
+ theme: Optional[str] = None,
1838
+ word_wrap: bool = False,
1839
+ show_locals: bool = False,
1840
+ suppress: Iterable[Union[str, ModuleType]] = (),
1841
+ max_frames: int = 100,
1842
+ ) -> None:
1843
+ """Prints a rich render of the last exception and traceback.
1844
+
1845
+ Args:
1846
+ width (Optional[int], optional): Number of characters used to render code. Defaults to 100.
1847
+ extra_lines (int, optional): Additional lines of code to render. Defaults to 3.
1848
+ theme (str, optional): Override pygments theme used in traceback
1849
+ word_wrap (bool, optional): Enable word wrapping of long lines. Defaults to False.
1850
+ show_locals (bool, optional): Enable display of local variables. Defaults to False.
1851
+ suppress (Iterable[Union[str, ModuleType]]): Optional sequence of modules or paths to exclude from traceback.
1852
+ max_frames (int): Maximum number of frames to show in a traceback, 0 for no maximum. Defaults to 100.
1853
+ """
1854
+ from .traceback import Traceback
1855
+
1856
+ traceback = Traceback(
1857
+ width=width,
1858
+ extra_lines=extra_lines,
1859
+ theme=theme,
1860
+ word_wrap=word_wrap,
1861
+ show_locals=show_locals,
1862
+ suppress=suppress,
1863
+ max_frames=max_frames,
1864
+ )
1865
+ self.print(traceback)
1866
+
1867
+ @staticmethod
1868
+ def _caller_frame_info(
1869
+ offset: int,
1870
+ currentframe: Callable[[], Optional[FrameType]] = inspect.currentframe,
1871
+ ) -> Tuple[str, int, Dict[str, Any]]:
1872
+ """Get caller frame information.
1873
+
1874
+ Args:
1875
+ offset (int): the caller offset within the current frame stack.
1876
+ currentframe (Callable[[], Optional[FrameType]], optional): the callable to use to
1877
+ retrieve the current frame. Defaults to ``inspect.currentframe``.
1878
+
1879
+ Returns:
1880
+ Tuple[str, int, Dict[str, Any]]: A tuple containing the filename, the line number and
1881
+ the dictionary of local variables associated with the caller frame.
1882
+
1883
+ Raises:
1884
+ RuntimeError: If the stack offset is invalid.
1885
+ """
1886
+ # Ignore the frame of this local helper
1887
+ offset += 1
1888
+
1889
+ frame = currentframe()
1890
+ if frame is not None:
1891
+ # Use the faster currentframe where implemented
1892
+ while offset and frame is not None:
1893
+ frame = frame.f_back
1894
+ offset -= 1
1895
+ assert frame is not None
1896
+ return frame.f_code.co_filename, frame.f_lineno, frame.f_locals
1897
+ else:
1898
+ # Fallback to the slower stack
1899
+ frame_info = inspect.stack()[offset]
1900
+ return frame_info.filename, frame_info.lineno, frame_info.frame.f_locals
1901
+
1902
+ def log(
1903
+ self,
1904
+ *objects: Any,
1905
+ sep: str = " ",
1906
+ end: str = "\n",
1907
+ style: Optional[Union[str, Style]] = None,
1908
+ justify: Optional[JustifyMethod] = None,
1909
+ emoji: Optional[bool] = None,
1910
+ markup: Optional[bool] = None,
1911
+ highlight: Optional[bool] = None,
1912
+ log_locals: bool = False,
1913
+ _stack_offset: int = 1,
1914
+ ) -> None:
1915
+ """Log rich content to the terminal.
1916
+
1917
+ Args:
1918
+ objects (positional args): Objects to log to the terminal.
1919
+ sep (str, optional): String to write between print data. Defaults to " ".
1920
+ end (str, optional): String to write at end of print data. Defaults to "\\\\n".
1921
+ style (Union[str, Style], optional): A style to apply to output. Defaults to None.
1922
+ justify (str, optional): One of "left", "right", "center", or "full". Defaults to ``None``.
1923
+ overflow (str, optional): Overflow method: "crop", "fold", or "ellipsis". Defaults to None.
1924
+ emoji (Optional[bool], optional): Enable emoji code, or ``None`` to use console default. Defaults to None.
1925
+ markup (Optional[bool], optional): Enable markup, or ``None`` to use console default. Defaults to None.
1926
+ highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use console default. Defaults to None.
1927
+ log_locals (bool, optional): Boolean to enable logging of locals where ``log()``
1928
+ was called. Defaults to False.
1929
+ _stack_offset (int, optional): Offset of caller from end of call stack. Defaults to 1.
1930
+ """
1931
+ if not objects:
1932
+ objects = (NewLine(),)
1933
+
1934
+ render_hooks = self._render_hooks[:]
1935
+
1936
+ with self:
1937
+ renderables = self._collect_renderables(
1938
+ objects,
1939
+ sep,
1940
+ end,
1941
+ justify=justify,
1942
+ emoji=emoji,
1943
+ markup=markup,
1944
+ highlight=highlight,
1945
+ )
1946
+ if style is not None:
1947
+ renderables = [Styled(renderable, style) for renderable in renderables]
1948
+
1949
+ filename, line_no, locals = self._caller_frame_info(_stack_offset)
1950
+ link_path = None if filename.startswith("<") else os.path.abspath(filename)
1951
+ path = filename.rpartition(os.sep)[-1]
1952
+ if log_locals:
1953
+ locals_map = {
1954
+ key: value
1955
+ for key, value in locals.items()
1956
+ if not key.startswith("__")
1957
+ }
1958
+ renderables.append(render_scope(locals_map, title="[i]locals"))
1959
+
1960
+ renderables = [
1961
+ self._log_render(
1962
+ self,
1963
+ renderables,
1964
+ log_time=self.get_datetime(),
1965
+ path=path,
1966
+ line_no=line_no,
1967
+ link_path=link_path,
1968
+ )
1969
+ ]
1970
+ for hook in render_hooks:
1971
+ renderables = hook.process_renderables(renderables)
1972
+ new_segments: List[Segment] = []
1973
+ extend = new_segments.extend
1974
+ render = self.render
1975
+ render_options = self.options
1976
+ for renderable in renderables:
1977
+ extend(render(renderable, render_options))
1978
+ buffer_extend = self._buffer.extend
1979
+ for line in Segment.split_and_crop_lines(
1980
+ new_segments, self.width, pad=False
1981
+ ):
1982
+ buffer_extend(line)
1983
+
1984
+ def _check_buffer(self) -> None:
1985
+ """Check if the buffer may be rendered. Render it if it can (e.g. Console.quiet is False)
1986
+ Rendering is supported on Windows, Unix and Jupyter environments. For
1987
+ legacy Windows consoles, the win32 API is called directly.
1988
+ This method will also record what it renders if recording is enabled via Console.record.
1989
+ """
1990
+ if self.quiet:
1991
+ del self._buffer[:]
1992
+ return
1993
+ with self._lock:
1994
+ if self.record:
1995
+ with self._record_buffer_lock:
1996
+ self._record_buffer.extend(self._buffer[:])
1997
+
1998
+ if self._buffer_index == 0:
1999
+
2000
+ if self.is_jupyter: # pragma: no cover
2001
+ from .jupyter import display
2002
+
2003
+ display(self._buffer, self._render_buffer(self._buffer[:]))
2004
+ del self._buffer[:]
2005
+ else:
2006
+ if WINDOWS:
2007
+ use_legacy_windows_render = False
2008
+ if self.legacy_windows:
2009
+ try:
2010
+ use_legacy_windows_render = (
2011
+ self.file.fileno() in _STD_STREAMS_OUTPUT
2012
+ )
2013
+ except (ValueError, io.UnsupportedOperation):
2014
+ pass
2015
+
2016
+ if use_legacy_windows_render:
2017
+ from pip._vendor.rich._win32_console import LegacyWindowsTerm
2018
+ from pip._vendor.rich._windows_renderer import legacy_windows_render
2019
+
2020
+ buffer = self._buffer[:]
2021
+ if self.no_color and self._color_system:
2022
+ buffer = list(Segment.remove_color(buffer))
2023
+
2024
+ legacy_windows_render(buffer, LegacyWindowsTerm(self.file))
2025
+ else:
2026
+ # Either a non-std stream on legacy Windows, or modern Windows.
2027
+ text = self._render_buffer(self._buffer[:])
2028
+ # https://bugs.python.org/issue37871
2029
+ write = self.file.write
2030
+ for line in text.splitlines(True):
2031
+ try:
2032
+ write(line)
2033
+ except UnicodeEncodeError as error:
2034
+ error.reason = f"{error.reason}\n*** You may need to add PYTHONIOENCODING=utf-8 to your environment ***"
2035
+ raise
2036
+ else:
2037
+ text = self._render_buffer(self._buffer[:])
2038
+ try:
2039
+ self.file.write(text)
2040
+ except UnicodeEncodeError as error:
2041
+ error.reason = f"{error.reason}\n*** You may need to add PYTHONIOENCODING=utf-8 to your environment ***"
2042
+ raise
2043
+
2044
+ self.file.flush()
2045
+ del self._buffer[:]
2046
+
2047
+ def _render_buffer(self, buffer: Iterable[Segment]) -> str:
2048
+ """Render buffered output, and clear buffer."""
2049
+ output: List[str] = []
2050
+ append = output.append
2051
+ color_system = self._color_system
2052
+ legacy_windows = self.legacy_windows
2053
+ not_terminal = not self.is_terminal
2054
+ if self.no_color and color_system:
2055
+ buffer = Segment.remove_color(buffer)
2056
+ for text, style, control in buffer:
2057
+ if style:
2058
+ append(
2059
+ style.render(
2060
+ text,
2061
+ color_system=color_system,
2062
+ legacy_windows=legacy_windows,
2063
+ )
2064
+ )
2065
+ elif not (not_terminal and control):
2066
+ append(text)
2067
+
2068
+ rendered = "".join(output)
2069
+ return rendered
2070
+
2071
+ def input(
2072
+ self,
2073
+ prompt: TextType = "",
2074
+ *,
2075
+ markup: bool = True,
2076
+ emoji: bool = True,
2077
+ password: bool = False,
2078
+ stream: Optional[TextIO] = None,
2079
+ ) -> str:
2080
+ """Displays a prompt and waits for input from the user. The prompt may contain color / style.
2081
+
2082
+ It works in the same way as Python's builtin :func:`input` function and provides elaborate line editing and history features if Python's builtin :mod:`readline` module is previously loaded.
2083
+
2084
+ Args:
2085
+ prompt (Union[str, Text]): Text to render in the prompt.
2086
+ markup (bool, optional): Enable console markup (requires a str prompt). Defaults to True.
2087
+ emoji (bool, optional): Enable emoji (requires a str prompt). Defaults to True.
2088
+ password: (bool, optional): Hide typed text. Defaults to False.
2089
+ stream: (TextIO, optional): Optional file to read input from (rather than stdin). Defaults to None.
2090
+
2091
+ Returns:
2092
+ str: Text read from stdin.
2093
+ """
2094
+ if prompt:
2095
+ self.print(prompt, markup=markup, emoji=emoji, end="")
2096
+ if password:
2097
+ result = getpass("", stream=stream)
2098
+ else:
2099
+ if stream:
2100
+ result = stream.readline()
2101
+ else:
2102
+ result = input()
2103
+ return result
2104
+
2105
+ def export_text(self, *, clear: bool = True, styles: bool = False) -> str:
2106
+ """Generate text from console contents (requires record=True argument in constructor).
2107
+
2108
+ Args:
2109
+ clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``.
2110
+ styles (bool, optional): If ``True``, ansi escape codes will be included. ``False`` for plain text.
2111
+ Defaults to ``False``.
2112
+
2113
+ Returns:
2114
+ str: String containing console contents.
2115
+
2116
+ """
2117
+ assert (
2118
+ self.record
2119
+ ), "To export console contents set record=True in the constructor or instance"
2120
+
2121
+ with self._record_buffer_lock:
2122
+ if styles:
2123
+ text = "".join(
2124
+ (style.render(text) if style else text)
2125
+ for text, style, _ in self._record_buffer
2126
+ )
2127
+ else:
2128
+ text = "".join(
2129
+ segment.text
2130
+ for segment in self._record_buffer
2131
+ if not segment.control
2132
+ )
2133
+ if clear:
2134
+ del self._record_buffer[:]
2135
+ return text
2136
+
2137
+ def save_text(self, path: str, *, clear: bool = True, styles: bool = False) -> None:
2138
+ """Generate text from console and save to a given location (requires record=True argument in constructor).
2139
+
2140
+ Args:
2141
+ path (str): Path to write text files.
2142
+ clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``.
2143
+ styles (bool, optional): If ``True``, ansi style codes will be included. ``False`` for plain text.
2144
+ Defaults to ``False``.
2145
+
2146
+ """
2147
+ text = self.export_text(clear=clear, styles=styles)
2148
+ with open(path, "wt", encoding="utf-8") as write_file:
2149
+ write_file.write(text)
2150
+
2151
+ def export_html(
2152
+ self,
2153
+ *,
2154
+ theme: Optional[TerminalTheme] = None,
2155
+ clear: bool = True,
2156
+ code_format: Optional[str] = None,
2157
+ inline_styles: bool = False,
2158
+ ) -> str:
2159
+ """Generate HTML from console contents (requires record=True argument in constructor).
2160
+
2161
+ Args:
2162
+ theme (TerminalTheme, optional): TerminalTheme object containing console colors.
2163
+ clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``.
2164
+ code_format (str, optional): Format string to render HTML. In addition to '{foreground}',
2165
+ '{background}', and '{code}', should contain '{stylesheet}' if inline_styles is ``False``.
2166
+ inline_styles (bool, optional): If ``True`` styles will be inlined in to spans, which makes files
2167
+ larger but easier to cut and paste markup. If ``False``, styles will be embedded in a style tag.
2168
+ Defaults to False.
2169
+
2170
+ Returns:
2171
+ str: String containing console contents as HTML.
2172
+ """
2173
+ assert (
2174
+ self.record
2175
+ ), "To export console contents set record=True in the constructor or instance"
2176
+ fragments: List[str] = []
2177
+ append = fragments.append
2178
+ _theme = theme or DEFAULT_TERMINAL_THEME
2179
+ stylesheet = ""
2180
+
2181
+ render_code_format = CONSOLE_HTML_FORMAT if code_format is None else code_format
2182
+
2183
+ with self._record_buffer_lock:
2184
+ if inline_styles:
2185
+ for text, style, _ in Segment.filter_control(
2186
+ Segment.simplify(self._record_buffer)
2187
+ ):
2188
+ text = escape(text)
2189
+ if style:
2190
+ rule = style.get_html_style(_theme)
2191
+ if style.link:
2192
+ text = f'<a href="{style.link}">{text}</a>'
2193
+ text = f'<span style="{rule}">{text}</span>' if rule else text
2194
+ append(text)
2195
+ else:
2196
+ styles: Dict[str, int] = {}
2197
+ for text, style, _ in Segment.filter_control(
2198
+ Segment.simplify(self._record_buffer)
2199
+ ):
2200
+ text = escape(text)
2201
+ if style:
2202
+ rule = style.get_html_style(_theme)
2203
+ style_number = styles.setdefault(rule, len(styles) + 1)
2204
+ if style.link:
2205
+ text = f'<a class="r{style_number}" href="{style.link}">{text}</a>'
2206
+ else:
2207
+ text = f'<span class="r{style_number}">{text}</span>'
2208
+ append(text)
2209
+ stylesheet_rules: List[str] = []
2210
+ stylesheet_append = stylesheet_rules.append
2211
+ for style_rule, style_number in styles.items():
2212
+ if style_rule:
2213
+ stylesheet_append(f".r{style_number} {{{style_rule}}}")
2214
+ stylesheet = "\n".join(stylesheet_rules)
2215
+
2216
+ rendered_code = render_code_format.format(
2217
+ code="".join(fragments),
2218
+ stylesheet=stylesheet,
2219
+ foreground=_theme.foreground_color.hex,
2220
+ background=_theme.background_color.hex,
2221
+ )
2222
+ if clear:
2223
+ del self._record_buffer[:]
2224
+ return rendered_code
2225
+
2226
+ def save_html(
2227
+ self,
2228
+ path: str,
2229
+ *,
2230
+ theme: Optional[TerminalTheme] = None,
2231
+ clear: bool = True,
2232
+ code_format: str = CONSOLE_HTML_FORMAT,
2233
+ inline_styles: bool = False,
2234
+ ) -> None:
2235
+ """Generate HTML from console contents and write to a file (requires record=True argument in constructor).
2236
+
2237
+ Args:
2238
+ path (str): Path to write html file.
2239
+ theme (TerminalTheme, optional): TerminalTheme object containing console colors.
2240
+ clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``.
2241
+ code_format (str, optional): Format string to render HTML. In addition to '{foreground}',
2242
+ '{background}', and '{code}', should contain '{stylesheet}' if inline_styles is ``False``.
2243
+ inline_styles (bool, optional): If ``True`` styles will be inlined in to spans, which makes files
2244
+ larger but easier to cut and paste markup. If ``False``, styles will be embedded in a style tag.
2245
+ Defaults to False.
2246
+
2247
+ """
2248
+ html = self.export_html(
2249
+ theme=theme,
2250
+ clear=clear,
2251
+ code_format=code_format,
2252
+ inline_styles=inline_styles,
2253
+ )
2254
+ with open(path, "wt", encoding="utf-8") as write_file:
2255
+ write_file.write(html)
2256
+
2257
+ def export_svg(
2258
+ self,
2259
+ *,
2260
+ title: str = "Rich",
2261
+ theme: Optional[TerminalTheme] = None,
2262
+ clear: bool = True,
2263
+ code_format: str = CONSOLE_SVG_FORMAT,
2264
+ font_aspect_ratio: float = 0.61,
2265
+ unique_id: Optional[str] = None,
2266
+ ) -> str:
2267
+ """
2268
+ Generate an SVG from the console contents (requires record=True in Console constructor).
2269
+
2270
+ Args:
2271
+ title (str, optional): The title of the tab in the output image
2272
+ theme (TerminalTheme, optional): The ``TerminalTheme`` object to use to style the terminal
2273
+ clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``
2274
+ code_format (str, optional): Format string used to generate the SVG. Rich will inject a number of variables
2275
+ into the string in order to form the final SVG output. The default template used and the variables
2276
+ injected by Rich can be found by inspecting the ``console.CONSOLE_SVG_FORMAT`` variable.
2277
+ font_aspect_ratio (float, optional): The width to height ratio of the font used in the ``code_format``
2278
+ string. Defaults to 0.61, which is the width to height ratio of Fira Code (the default font).
2279
+ If you aren't specifying a different font inside ``code_format``, you probably don't need this.
2280
+ unique_id (str, optional): unique id that is used as the prefix for various elements (CSS styles, node
2281
+ ids). If not set, this defaults to a computed value based on the recorded content.
2282
+ """
2283
+
2284
+ from pip._vendor.rich.cells import cell_len
2285
+
2286
+ style_cache: Dict[Style, str] = {}
2287
+
2288
+ def get_svg_style(style: Style) -> str:
2289
+ """Convert a Style to CSS rules for SVG."""
2290
+ if style in style_cache:
2291
+ return style_cache[style]
2292
+ css_rules = []
2293
+ color = (
2294
+ _theme.foreground_color
2295
+ if (style.color is None or style.color.is_default)
2296
+ else style.color.get_truecolor(_theme)
2297
+ )
2298
+ bgcolor = (
2299
+ _theme.background_color
2300
+ if (style.bgcolor is None or style.bgcolor.is_default)
2301
+ else style.bgcolor.get_truecolor(_theme)
2302
+ )
2303
+ if style.reverse:
2304
+ color, bgcolor = bgcolor, color
2305
+ if style.dim:
2306
+ color = blend_rgb(color, bgcolor, 0.4)
2307
+ css_rules.append(f"fill: {color.hex}")
2308
+ if style.bold:
2309
+ css_rules.append("font-weight: bold")
2310
+ if style.italic:
2311
+ css_rules.append("font-style: italic;")
2312
+ if style.underline:
2313
+ css_rules.append("text-decoration: underline;")
2314
+ if style.strike:
2315
+ css_rules.append("text-decoration: line-through;")
2316
+
2317
+ css = ";".join(css_rules)
2318
+ style_cache[style] = css
2319
+ return css
2320
+
2321
+ _theme = theme or SVG_EXPORT_THEME
2322
+
2323
+ width = self.width
2324
+ char_height = 20
2325
+ char_width = char_height * font_aspect_ratio
2326
+ line_height = char_height * 1.22
2327
+
2328
+ margin_top = 1
2329
+ margin_right = 1
2330
+ margin_bottom = 1
2331
+ margin_left = 1
2332
+
2333
+ padding_top = 40
2334
+ padding_right = 8
2335
+ padding_bottom = 8
2336
+ padding_left = 8
2337
+
2338
+ padding_width = padding_left + padding_right
2339
+ padding_height = padding_top + padding_bottom
2340
+ margin_width = margin_left + margin_right
2341
+ margin_height = margin_top + margin_bottom
2342
+
2343
+ text_backgrounds: List[str] = []
2344
+ text_group: List[str] = []
2345
+ classes: Dict[str, int] = {}
2346
+ style_no = 1
2347
+
2348
+ def escape_text(text: str) -> str:
2349
+ """HTML escape text and replace spaces with nbsp."""
2350
+ return escape(text).replace(" ", "&#160;")
2351
+
2352
+ def make_tag(
2353
+ name: str, content: Optional[str] = None, **attribs: object
2354
+ ) -> str:
2355
+ """Make a tag from name, content, and attributes."""
2356
+
2357
+ def stringify(value: object) -> str:
2358
+ if isinstance(value, (float)):
2359
+ return format(value, "g")
2360
+ return str(value)
2361
+
2362
+ tag_attribs = " ".join(
2363
+ f'{k.lstrip("_").replace("_", "-")}="{stringify(v)}"'
2364
+ for k, v in attribs.items()
2365
+ )
2366
+ return (
2367
+ f"<{name} {tag_attribs}>{content}</{name}>"
2368
+ if content
2369
+ else f"<{name} {tag_attribs}/>"
2370
+ )
2371
+
2372
+ with self._record_buffer_lock:
2373
+ segments = list(Segment.filter_control(self._record_buffer))
2374
+ if clear:
2375
+ self._record_buffer.clear()
2376
+
2377
+ if unique_id is None:
2378
+ unique_id = "terminal-" + str(
2379
+ zlib.adler32(
2380
+ ("".join(repr(segment) for segment in segments)).encode(
2381
+ "utf-8",
2382
+ "ignore",
2383
+ )
2384
+ + title.encode("utf-8", "ignore")
2385
+ )
2386
+ )
2387
+ y = 0
2388
+ for y, line in enumerate(Segment.split_and_crop_lines(segments, length=width)):
2389
+ x = 0
2390
+ for text, style, _control in line:
2391
+ style = style or Style()
2392
+ rules = get_svg_style(style)
2393
+ if rules not in classes:
2394
+ classes[rules] = style_no
2395
+ style_no += 1
2396
+ class_name = f"r{classes[rules]}"
2397
+
2398
+ if style.reverse:
2399
+ has_background = True
2400
+ background = (
2401
+ _theme.foreground_color.hex
2402
+ if style.color is None
2403
+ else style.color.get_truecolor(_theme).hex
2404
+ )
2405
+ else:
2406
+ bgcolor = style.bgcolor
2407
+ has_background = bgcolor is not None and not bgcolor.is_default
2408
+ background = (
2409
+ _theme.background_color.hex
2410
+ if style.bgcolor is None
2411
+ else style.bgcolor.get_truecolor(_theme).hex
2412
+ )
2413
+
2414
+ text_length = cell_len(text)
2415
+ if has_background:
2416
+ text_backgrounds.append(
2417
+ make_tag(
2418
+ "rect",
2419
+ fill=background,
2420
+ x=x * char_width,
2421
+ y=y * line_height + 1.5,
2422
+ width=char_width * text_length,
2423
+ height=line_height + 0.25,
2424
+ shape_rendering="crispEdges",
2425
+ )
2426
+ )
2427
+
2428
+ if text != " " * len(text):
2429
+ text_group.append(
2430
+ make_tag(
2431
+ "text",
2432
+ escape_text(text),
2433
+ _class=f"{unique_id}-{class_name}",
2434
+ x=x * char_width,
2435
+ y=y * line_height + char_height,
2436
+ textLength=char_width * len(text),
2437
+ clip_path=f"url(#{unique_id}-line-{y})",
2438
+ )
2439
+ )
2440
+ x += cell_len(text)
2441
+
2442
+ line_offsets = [line_no * line_height + 1.5 for line_no in range(y)]
2443
+ lines = "\n".join(
2444
+ f"""<clipPath id="{unique_id}-line-{line_no}">
2445
+ {make_tag("rect", x=0, y=offset, width=char_width * width, height=line_height + 0.25)}
2446
+ </clipPath>"""
2447
+ for line_no, offset in enumerate(line_offsets)
2448
+ )
2449
+
2450
+ styles = "\n".join(
2451
+ f".{unique_id}-r{rule_no} {{ {css} }}" for css, rule_no in classes.items()
2452
+ )
2453
+ backgrounds = "".join(text_backgrounds)
2454
+ matrix = "".join(text_group)
2455
+
2456
+ terminal_width = ceil(width * char_width + padding_width)
2457
+ terminal_height = (y + 1) * line_height + padding_height
2458
+ chrome = make_tag(
2459
+ "rect",
2460
+ fill=_theme.background_color.hex,
2461
+ stroke="rgba(255,255,255,0.35)",
2462
+ stroke_width="1",
2463
+ x=margin_left,
2464
+ y=margin_top,
2465
+ width=terminal_width,
2466
+ height=terminal_height,
2467
+ rx=8,
2468
+ )
2469
+
2470
+ title_color = _theme.foreground_color.hex
2471
+ if title:
2472
+ chrome += make_tag(
2473
+ "text",
2474
+ escape_text(title),
2475
+ _class=f"{unique_id}-title",
2476
+ fill=title_color,
2477
+ text_anchor="middle",
2478
+ x=terminal_width // 2,
2479
+ y=margin_top + char_height + 6,
2480
+ )
2481
+ chrome += f"""
2482
+ <g transform="translate(26,22)">
2483
+ <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
2484
+ <circle cx="22" cy="0" r="7" fill="#febc2e"/>
2485
+ <circle cx="44" cy="0" r="7" fill="#28c840"/>
2486
+ </g>
2487
+ """
2488
+
2489
+ svg = code_format.format(
2490
+ unique_id=unique_id,
2491
+ char_width=char_width,
2492
+ char_height=char_height,
2493
+ line_height=line_height,
2494
+ terminal_width=char_width * width - 1,
2495
+ terminal_height=(y + 1) * line_height - 1,
2496
+ width=terminal_width + margin_width,
2497
+ height=terminal_height + margin_height,
2498
+ terminal_x=margin_left + padding_left,
2499
+ terminal_y=margin_top + padding_top,
2500
+ styles=styles,
2501
+ chrome=chrome,
2502
+ backgrounds=backgrounds,
2503
+ matrix=matrix,
2504
+ lines=lines,
2505
+ )
2506
+ return svg
2507
+
2508
+ def save_svg(
2509
+ self,
2510
+ path: str,
2511
+ *,
2512
+ title: str = "Rich",
2513
+ theme: Optional[TerminalTheme] = None,
2514
+ clear: bool = True,
2515
+ code_format: str = CONSOLE_SVG_FORMAT,
2516
+ font_aspect_ratio: float = 0.61,
2517
+ unique_id: Optional[str] = None,
2518
+ ) -> None:
2519
+ """Generate an SVG file from the console contents (requires record=True in Console constructor).
2520
+
2521
+ Args:
2522
+ path (str): The path to write the SVG to.
2523
+ title (str, optional): The title of the tab in the output image
2524
+ theme (TerminalTheme, optional): The ``TerminalTheme`` object to use to style the terminal
2525
+ clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``
2526
+ code_format (str, optional): Format string used to generate the SVG. Rich will inject a number of variables
2527
+ into the string in order to form the final SVG output. The default template used and the variables
2528
+ injected by Rich can be found by inspecting the ``console.CONSOLE_SVG_FORMAT`` variable.
2529
+ font_aspect_ratio (float, optional): The width to height ratio of the font used in the ``code_format``
2530
+ string. Defaults to 0.61, which is the width to height ratio of Fira Code (the default font).
2531
+ If you aren't specifying a different font inside ``code_format``, you probably don't need this.
2532
+ unique_id (str, optional): unique id that is used as the prefix for various elements (CSS styles, node
2533
+ ids). If not set, this defaults to a computed value based on the recorded content.
2534
+ """
2535
+ svg = self.export_svg(
2536
+ title=title,
2537
+ theme=theme,
2538
+ clear=clear,
2539
+ code_format=code_format,
2540
+ font_aspect_ratio=font_aspect_ratio,
2541
+ unique_id=unique_id,
2542
+ )
2543
+ with open(path, "wt", encoding="utf-8") as write_file:
2544
+ write_file.write(svg)
2545
+
2546
+
2547
+ def _svg_hash(svg_main_code: str) -> str:
2548
+ """Returns a unique hash for the given SVG main code.
2549
+
2550
+ Args:
2551
+ svg_main_code (str): The content we're going to inject in the SVG envelope.
2552
+
2553
+ Returns:
2554
+ str: a hash of the given content
2555
+ """
2556
+ return str(zlib.adler32(svg_main_code.encode()))
2557
+
2558
+
2559
+ if __name__ == "__main__": # pragma: no cover
2560
+ console = Console(record=True)
2561
+
2562
+ console.log(
2563
+ "JSONRPC [i]request[/i]",
2564
+ 5,
2565
+ 1.3,
2566
+ True,
2567
+ False,
2568
+ None,
2569
+ {
2570
+ "jsonrpc": "2.0",
2571
+ "method": "subtract",
2572
+ "params": {"minuend": 42, "subtrahend": 23},
2573
+ "id": 3,
2574
+ },
2575
+ )
2576
+
2577
+ console.log("Hello, World!", "{'a': 1}", repr(console))
2578
+
2579
+ console.print(
2580
+ {
2581
+ "name": None,
2582
+ "empty": [],
2583
+ "quiz": {
2584
+ "sport": {
2585
+ "answered": True,
2586
+ "q1": {
2587
+ "question": "Which one is correct team name in NBA?",
2588
+ "options": [
2589
+ "New York Bulls",
2590
+ "Los Angeles Kings",
2591
+ "Golden State Warriors",
2592
+ "Huston Rocket",
2593
+ ],
2594
+ "answer": "Huston Rocket",
2595
+ },
2596
+ },
2597
+ "maths": {
2598
+ "answered": False,
2599
+ "q1": {
2600
+ "question": "5 + 7 = ?",
2601
+ "options": [10, 11, 12, 13],
2602
+ "answer": 12,
2603
+ },
2604
+ "q2": {
2605
+ "question": "12 - 8 = ?",
2606
+ "options": [1, 2, 3, 4],
2607
+ "answer": 4,
2608
+ },
2609
+ },
2610
+ },
2611
+ }
2612
+ )