hmdev-cli 1.0.0

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 (1158) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +157 -0
  3. package/bin/hmdev-cli.js +29 -0
  4. package/package.json +40 -0
  5. package/python/.venv/Lib/site-packages/__pycache__/typing_extensions.cpython-312.pyc +0 -0
  6. package/python/.venv/Lib/site-packages/anyio/__init__.py +111 -0
  7. package/python/.venv/Lib/site-packages/anyio/__pycache__/__init__.cpython-312.pyc +0 -0
  8. package/python/.venv/Lib/site-packages/anyio/__pycache__/from_thread.cpython-312.pyc +0 -0
  9. package/python/.venv/Lib/site-packages/anyio/__pycache__/functools.cpython-312.pyc +0 -0
  10. package/python/.venv/Lib/site-packages/anyio/__pycache__/lowlevel.cpython-312.pyc +0 -0
  11. package/python/.venv/Lib/site-packages/anyio/__pycache__/pytest_plugin.cpython-312.pyc +0 -0
  12. package/python/.venv/Lib/site-packages/anyio/__pycache__/to_interpreter.cpython-312.pyc +0 -0
  13. package/python/.venv/Lib/site-packages/anyio/__pycache__/to_process.cpython-312.pyc +0 -0
  14. package/python/.venv/Lib/site-packages/anyio/__pycache__/to_thread.cpython-312.pyc +0 -0
  15. package/python/.venv/Lib/site-packages/anyio/_backends/__init__.py +0 -0
  16. package/python/.venv/Lib/site-packages/anyio/_backends/__pycache__/__init__.cpython-312.pyc +0 -0
  17. package/python/.venv/Lib/site-packages/anyio/_backends/__pycache__/_asyncio.cpython-312.pyc +0 -0
  18. package/python/.venv/Lib/site-packages/anyio/_backends/__pycache__/_trio.cpython-312.pyc +0 -0
  19. package/python/.venv/Lib/site-packages/anyio/_backends/_asyncio.py +2996 -0
  20. package/python/.venv/Lib/site-packages/anyio/_backends/_trio.py +1343 -0
  21. package/python/.venv/Lib/site-packages/anyio/_core/__init__.py +0 -0
  22. package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/__init__.cpython-312.pyc +0 -0
  23. package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/_asyncio_selector_thread.cpython-312.pyc +0 -0
  24. package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/_contextmanagers.cpython-312.pyc +0 -0
  25. package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/_eventloop.cpython-312.pyc +0 -0
  26. package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/_exceptions.cpython-312.pyc +0 -0
  27. package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/_fileio.cpython-312.pyc +0 -0
  28. package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/_resources.cpython-312.pyc +0 -0
  29. package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/_signals.cpython-312.pyc +0 -0
  30. package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/_sockets.cpython-312.pyc +0 -0
  31. package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/_streams.cpython-312.pyc +0 -0
  32. package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/_subprocesses.cpython-312.pyc +0 -0
  33. package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/_synchronization.cpython-312.pyc +0 -0
  34. package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/_tasks.cpython-312.pyc +0 -0
  35. package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/_tempfile.cpython-312.pyc +0 -0
  36. package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/_testing.cpython-312.pyc +0 -0
  37. package/python/.venv/Lib/site-packages/anyio/_core/__pycache__/_typedattr.cpython-312.pyc +0 -0
  38. package/python/.venv/Lib/site-packages/anyio/_core/_asyncio_selector_thread.py +167 -0
  39. package/python/.venv/Lib/site-packages/anyio/_core/_contextmanagers.py +200 -0
  40. package/python/.venv/Lib/site-packages/anyio/_core/_eventloop.py +234 -0
  41. package/python/.venv/Lib/site-packages/anyio/_core/_exceptions.py +156 -0
  42. package/python/.venv/Lib/site-packages/anyio/_core/_fileio.py +799 -0
  43. package/python/.venv/Lib/site-packages/anyio/_core/_resources.py +18 -0
  44. package/python/.venv/Lib/site-packages/anyio/_core/_signals.py +29 -0
  45. package/python/.venv/Lib/site-packages/anyio/_core/_sockets.py +1003 -0
  46. package/python/.venv/Lib/site-packages/anyio/_core/_streams.py +52 -0
  47. package/python/.venv/Lib/site-packages/anyio/_core/_subprocesses.py +196 -0
  48. package/python/.venv/Lib/site-packages/anyio/_core/_synchronization.py +757 -0
  49. package/python/.venv/Lib/site-packages/anyio/_core/_tasks.py +173 -0
  50. package/python/.venv/Lib/site-packages/anyio/_core/_tempfile.py +613 -0
  51. package/python/.venv/Lib/site-packages/anyio/_core/_testing.py +82 -0
  52. package/python/.venv/Lib/site-packages/anyio/_core/_typedattr.py +81 -0
  53. package/python/.venv/Lib/site-packages/anyio/abc/__init__.py +58 -0
  54. package/python/.venv/Lib/site-packages/anyio/abc/__pycache__/__init__.cpython-312.pyc +0 -0
  55. package/python/.venv/Lib/site-packages/anyio/abc/__pycache__/_eventloop.cpython-312.pyc +0 -0
  56. package/python/.venv/Lib/site-packages/anyio/abc/__pycache__/_resources.cpython-312.pyc +0 -0
  57. package/python/.venv/Lib/site-packages/anyio/abc/__pycache__/_sockets.cpython-312.pyc +0 -0
  58. package/python/.venv/Lib/site-packages/anyio/abc/__pycache__/_streams.cpython-312.pyc +0 -0
  59. package/python/.venv/Lib/site-packages/anyio/abc/__pycache__/_subprocesses.cpython-312.pyc +0 -0
  60. package/python/.venv/Lib/site-packages/anyio/abc/__pycache__/_tasks.cpython-312.pyc +0 -0
  61. package/python/.venv/Lib/site-packages/anyio/abc/__pycache__/_testing.cpython-312.pyc +0 -0
  62. package/python/.venv/Lib/site-packages/anyio/abc/_eventloop.py +409 -0
  63. package/python/.venv/Lib/site-packages/anyio/abc/_resources.py +33 -0
  64. package/python/.venv/Lib/site-packages/anyio/abc/_sockets.py +399 -0
  65. package/python/.venv/Lib/site-packages/anyio/abc/_streams.py +233 -0
  66. package/python/.venv/Lib/site-packages/anyio/abc/_subprocesses.py +79 -0
  67. package/python/.venv/Lib/site-packages/anyio/abc/_tasks.py +117 -0
  68. package/python/.venv/Lib/site-packages/anyio/abc/_testing.py +65 -0
  69. package/python/.venv/Lib/site-packages/anyio/from_thread.py +578 -0
  70. package/python/.venv/Lib/site-packages/anyio/functools.py +409 -0
  71. package/python/.venv/Lib/site-packages/anyio/lowlevel.py +196 -0
  72. package/python/.venv/Lib/site-packages/anyio/py.typed +0 -0
  73. package/python/.venv/Lib/site-packages/anyio/pytest_plugin.py +363 -0
  74. package/python/.venv/Lib/site-packages/anyio/streams/__init__.py +0 -0
  75. package/python/.venv/Lib/site-packages/anyio/streams/__pycache__/__init__.cpython-312.pyc +0 -0
  76. package/python/.venv/Lib/site-packages/anyio/streams/__pycache__/buffered.cpython-312.pyc +0 -0
  77. package/python/.venv/Lib/site-packages/anyio/streams/__pycache__/file.cpython-312.pyc +0 -0
  78. package/python/.venv/Lib/site-packages/anyio/streams/__pycache__/memory.cpython-312.pyc +0 -0
  79. package/python/.venv/Lib/site-packages/anyio/streams/__pycache__/stapled.cpython-312.pyc +0 -0
  80. package/python/.venv/Lib/site-packages/anyio/streams/__pycache__/text.cpython-312.pyc +0 -0
  81. package/python/.venv/Lib/site-packages/anyio/streams/__pycache__/tls.cpython-312.pyc +0 -0
  82. package/python/.venv/Lib/site-packages/anyio/streams/buffered.py +188 -0
  83. package/python/.venv/Lib/site-packages/anyio/streams/file.py +154 -0
  84. package/python/.venv/Lib/site-packages/anyio/streams/memory.py +325 -0
  85. package/python/.venv/Lib/site-packages/anyio/streams/stapled.py +147 -0
  86. package/python/.venv/Lib/site-packages/anyio/streams/text.py +176 -0
  87. package/python/.venv/Lib/site-packages/anyio/streams/tls.py +421 -0
  88. package/python/.venv/Lib/site-packages/anyio/to_interpreter.py +246 -0
  89. package/python/.venv/Lib/site-packages/anyio/to_process.py +266 -0
  90. package/python/.venv/Lib/site-packages/anyio/to_thread.py +78 -0
  91. package/python/.venv/Lib/site-packages/anyio-4.13.0.dist-info/INSTALLER +1 -0
  92. package/python/.venv/Lib/site-packages/anyio-4.13.0.dist-info/METADATA +105 -0
  93. package/python/.venv/Lib/site-packages/anyio-4.13.0.dist-info/RECORD +92 -0
  94. package/python/.venv/Lib/site-packages/anyio-4.13.0.dist-info/WHEEL +5 -0
  95. package/python/.venv/Lib/site-packages/anyio-4.13.0.dist-info/entry_points.txt +2 -0
  96. package/python/.venv/Lib/site-packages/anyio-4.13.0.dist-info/licenses/LICENSE +20 -0
  97. package/python/.venv/Lib/site-packages/anyio-4.13.0.dist-info/top_level.txt +1 -0
  98. package/python/.venv/Lib/site-packages/certifi/__init__.py +4 -0
  99. package/python/.venv/Lib/site-packages/certifi/__main__.py +12 -0
  100. package/python/.venv/Lib/site-packages/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
  101. package/python/.venv/Lib/site-packages/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
  102. package/python/.venv/Lib/site-packages/certifi/__pycache__/core.cpython-312.pyc +0 -0
  103. package/python/.venv/Lib/site-packages/certifi/cacert.pem +3933 -0
  104. package/python/.venv/Lib/site-packages/certifi/core.py +83 -0
  105. package/python/.venv/Lib/site-packages/certifi/py.typed +0 -0
  106. package/python/.venv/Lib/site-packages/certifi-2026.4.22.dist-info/INSTALLER +1 -0
  107. package/python/.venv/Lib/site-packages/certifi-2026.4.22.dist-info/METADATA +78 -0
  108. package/python/.venv/Lib/site-packages/certifi-2026.4.22.dist-info/RECORD +14 -0
  109. package/python/.venv/Lib/site-packages/certifi-2026.4.22.dist-info/WHEEL +5 -0
  110. package/python/.venv/Lib/site-packages/certifi-2026.4.22.dist-info/licenses/LICENSE +20 -0
  111. package/python/.venv/Lib/site-packages/certifi-2026.4.22.dist-info/top_level.txt +1 -0
  112. package/python/.venv/Lib/site-packages/h11/__init__.py +62 -0
  113. package/python/.venv/Lib/site-packages/h11/__pycache__/__init__.cpython-312.pyc +0 -0
  114. package/python/.venv/Lib/site-packages/h11/__pycache__/_abnf.cpython-312.pyc +0 -0
  115. package/python/.venv/Lib/site-packages/h11/__pycache__/_connection.cpython-312.pyc +0 -0
  116. package/python/.venv/Lib/site-packages/h11/__pycache__/_events.cpython-312.pyc +0 -0
  117. package/python/.venv/Lib/site-packages/h11/__pycache__/_headers.cpython-312.pyc +0 -0
  118. package/python/.venv/Lib/site-packages/h11/__pycache__/_readers.cpython-312.pyc +0 -0
  119. package/python/.venv/Lib/site-packages/h11/__pycache__/_receivebuffer.cpython-312.pyc +0 -0
  120. package/python/.venv/Lib/site-packages/h11/__pycache__/_state.cpython-312.pyc +0 -0
  121. package/python/.venv/Lib/site-packages/h11/__pycache__/_util.cpython-312.pyc +0 -0
  122. package/python/.venv/Lib/site-packages/h11/__pycache__/_version.cpython-312.pyc +0 -0
  123. package/python/.venv/Lib/site-packages/h11/__pycache__/_writers.cpython-312.pyc +0 -0
  124. package/python/.venv/Lib/site-packages/h11/_abnf.py +132 -0
  125. package/python/.venv/Lib/site-packages/h11/_connection.py +659 -0
  126. package/python/.venv/Lib/site-packages/h11/_events.py +369 -0
  127. package/python/.venv/Lib/site-packages/h11/_headers.py +282 -0
  128. package/python/.venv/Lib/site-packages/h11/_readers.py +250 -0
  129. package/python/.venv/Lib/site-packages/h11/_receivebuffer.py +153 -0
  130. package/python/.venv/Lib/site-packages/h11/_state.py +365 -0
  131. package/python/.venv/Lib/site-packages/h11/_util.py +135 -0
  132. package/python/.venv/Lib/site-packages/h11/_version.py +16 -0
  133. package/python/.venv/Lib/site-packages/h11/_writers.py +145 -0
  134. package/python/.venv/Lib/site-packages/h11/py.typed +1 -0
  135. package/python/.venv/Lib/site-packages/h11-0.16.0.dist-info/INSTALLER +1 -0
  136. package/python/.venv/Lib/site-packages/h11-0.16.0.dist-info/METADATA +202 -0
  137. package/python/.venv/Lib/site-packages/h11-0.16.0.dist-info/RECORD +29 -0
  138. package/python/.venv/Lib/site-packages/h11-0.16.0.dist-info/WHEEL +5 -0
  139. package/python/.venv/Lib/site-packages/h11-0.16.0.dist-info/licenses/LICENSE.txt +22 -0
  140. package/python/.venv/Lib/site-packages/h11-0.16.0.dist-info/top_level.txt +1 -0
  141. package/python/.venv/Lib/site-packages/httpcore/__init__.py +141 -0
  142. package/python/.venv/Lib/site-packages/httpcore/__pycache__/__init__.cpython-312.pyc +0 -0
  143. package/python/.venv/Lib/site-packages/httpcore/__pycache__/_api.cpython-312.pyc +0 -0
  144. package/python/.venv/Lib/site-packages/httpcore/__pycache__/_exceptions.cpython-312.pyc +0 -0
  145. package/python/.venv/Lib/site-packages/httpcore/__pycache__/_models.cpython-312.pyc +0 -0
  146. package/python/.venv/Lib/site-packages/httpcore/__pycache__/_ssl.cpython-312.pyc +0 -0
  147. package/python/.venv/Lib/site-packages/httpcore/__pycache__/_synchronization.cpython-312.pyc +0 -0
  148. package/python/.venv/Lib/site-packages/httpcore/__pycache__/_trace.cpython-312.pyc +0 -0
  149. package/python/.venv/Lib/site-packages/httpcore/__pycache__/_utils.cpython-312.pyc +0 -0
  150. package/python/.venv/Lib/site-packages/httpcore/_api.py +94 -0
  151. package/python/.venv/Lib/site-packages/httpcore/_async/__init__.py +39 -0
  152. package/python/.venv/Lib/site-packages/httpcore/_async/__pycache__/__init__.cpython-312.pyc +0 -0
  153. package/python/.venv/Lib/site-packages/httpcore/_async/__pycache__/connection.cpython-312.pyc +0 -0
  154. package/python/.venv/Lib/site-packages/httpcore/_async/__pycache__/connection_pool.cpython-312.pyc +0 -0
  155. package/python/.venv/Lib/site-packages/httpcore/_async/__pycache__/http11.cpython-312.pyc +0 -0
  156. package/python/.venv/Lib/site-packages/httpcore/_async/__pycache__/http2.cpython-312.pyc +0 -0
  157. package/python/.venv/Lib/site-packages/httpcore/_async/__pycache__/http_proxy.cpython-312.pyc +0 -0
  158. package/python/.venv/Lib/site-packages/httpcore/_async/__pycache__/interfaces.cpython-312.pyc +0 -0
  159. package/python/.venv/Lib/site-packages/httpcore/_async/__pycache__/socks_proxy.cpython-312.pyc +0 -0
  160. package/python/.venv/Lib/site-packages/httpcore/_async/connection.py +222 -0
  161. package/python/.venv/Lib/site-packages/httpcore/_async/connection_pool.py +420 -0
  162. package/python/.venv/Lib/site-packages/httpcore/_async/http11.py +379 -0
  163. package/python/.venv/Lib/site-packages/httpcore/_async/http2.py +592 -0
  164. package/python/.venv/Lib/site-packages/httpcore/_async/http_proxy.py +367 -0
  165. package/python/.venv/Lib/site-packages/httpcore/_async/interfaces.py +137 -0
  166. package/python/.venv/Lib/site-packages/httpcore/_async/socks_proxy.py +341 -0
  167. package/python/.venv/Lib/site-packages/httpcore/_backends/__init__.py +0 -0
  168. package/python/.venv/Lib/site-packages/httpcore/_backends/__pycache__/__init__.cpython-312.pyc +0 -0
  169. package/python/.venv/Lib/site-packages/httpcore/_backends/__pycache__/anyio.cpython-312.pyc +0 -0
  170. package/python/.venv/Lib/site-packages/httpcore/_backends/__pycache__/auto.cpython-312.pyc +0 -0
  171. package/python/.venv/Lib/site-packages/httpcore/_backends/__pycache__/base.cpython-312.pyc +0 -0
  172. package/python/.venv/Lib/site-packages/httpcore/_backends/__pycache__/mock.cpython-312.pyc +0 -0
  173. package/python/.venv/Lib/site-packages/httpcore/_backends/__pycache__/sync.cpython-312.pyc +0 -0
  174. package/python/.venv/Lib/site-packages/httpcore/_backends/__pycache__/trio.cpython-312.pyc +0 -0
  175. package/python/.venv/Lib/site-packages/httpcore/_backends/anyio.py +146 -0
  176. package/python/.venv/Lib/site-packages/httpcore/_backends/auto.py +52 -0
  177. package/python/.venv/Lib/site-packages/httpcore/_backends/base.py +101 -0
  178. package/python/.venv/Lib/site-packages/httpcore/_backends/mock.py +143 -0
  179. package/python/.venv/Lib/site-packages/httpcore/_backends/sync.py +241 -0
  180. package/python/.venv/Lib/site-packages/httpcore/_backends/trio.py +159 -0
  181. package/python/.venv/Lib/site-packages/httpcore/_exceptions.py +81 -0
  182. package/python/.venv/Lib/site-packages/httpcore/_models.py +516 -0
  183. package/python/.venv/Lib/site-packages/httpcore/_ssl.py +9 -0
  184. package/python/.venv/Lib/site-packages/httpcore/_sync/__init__.py +39 -0
  185. package/python/.venv/Lib/site-packages/httpcore/_sync/__pycache__/__init__.cpython-312.pyc +0 -0
  186. package/python/.venv/Lib/site-packages/httpcore/_sync/__pycache__/connection.cpython-312.pyc +0 -0
  187. package/python/.venv/Lib/site-packages/httpcore/_sync/__pycache__/connection_pool.cpython-312.pyc +0 -0
  188. package/python/.venv/Lib/site-packages/httpcore/_sync/__pycache__/http11.cpython-312.pyc +0 -0
  189. package/python/.venv/Lib/site-packages/httpcore/_sync/__pycache__/http2.cpython-312.pyc +0 -0
  190. package/python/.venv/Lib/site-packages/httpcore/_sync/__pycache__/http_proxy.cpython-312.pyc +0 -0
  191. package/python/.venv/Lib/site-packages/httpcore/_sync/__pycache__/interfaces.cpython-312.pyc +0 -0
  192. package/python/.venv/Lib/site-packages/httpcore/_sync/__pycache__/socks_proxy.cpython-312.pyc +0 -0
  193. package/python/.venv/Lib/site-packages/httpcore/_sync/connection.py +222 -0
  194. package/python/.venv/Lib/site-packages/httpcore/_sync/connection_pool.py +420 -0
  195. package/python/.venv/Lib/site-packages/httpcore/_sync/http11.py +379 -0
  196. package/python/.venv/Lib/site-packages/httpcore/_sync/http2.py +592 -0
  197. package/python/.venv/Lib/site-packages/httpcore/_sync/http_proxy.py +367 -0
  198. package/python/.venv/Lib/site-packages/httpcore/_sync/interfaces.py +137 -0
  199. package/python/.venv/Lib/site-packages/httpcore/_sync/socks_proxy.py +341 -0
  200. package/python/.venv/Lib/site-packages/httpcore/_synchronization.py +318 -0
  201. package/python/.venv/Lib/site-packages/httpcore/_trace.py +107 -0
  202. package/python/.venv/Lib/site-packages/httpcore/_utils.py +37 -0
  203. package/python/.venv/Lib/site-packages/httpcore/py.typed +0 -0
  204. package/python/.venv/Lib/site-packages/httpcore-1.0.9.dist-info/INSTALLER +1 -0
  205. package/python/.venv/Lib/site-packages/httpcore-1.0.9.dist-info/METADATA +625 -0
  206. package/python/.venv/Lib/site-packages/httpcore-1.0.9.dist-info/RECORD +68 -0
  207. package/python/.venv/Lib/site-packages/httpcore-1.0.9.dist-info/WHEEL +4 -0
  208. package/python/.venv/Lib/site-packages/httpcore-1.0.9.dist-info/licenses/LICENSE.md +27 -0
  209. package/python/.venv/Lib/site-packages/httpx/__init__.py +105 -0
  210. package/python/.venv/Lib/site-packages/httpx/__pycache__/__init__.cpython-312.pyc +0 -0
  211. package/python/.venv/Lib/site-packages/httpx/__pycache__/__version__.cpython-312.pyc +0 -0
  212. package/python/.venv/Lib/site-packages/httpx/__pycache__/_api.cpython-312.pyc +0 -0
  213. package/python/.venv/Lib/site-packages/httpx/__pycache__/_auth.cpython-312.pyc +0 -0
  214. package/python/.venv/Lib/site-packages/httpx/__pycache__/_client.cpython-312.pyc +0 -0
  215. package/python/.venv/Lib/site-packages/httpx/__pycache__/_config.cpython-312.pyc +0 -0
  216. package/python/.venv/Lib/site-packages/httpx/__pycache__/_content.cpython-312.pyc +0 -0
  217. package/python/.venv/Lib/site-packages/httpx/__pycache__/_decoders.cpython-312.pyc +0 -0
  218. package/python/.venv/Lib/site-packages/httpx/__pycache__/_exceptions.cpython-312.pyc +0 -0
  219. package/python/.venv/Lib/site-packages/httpx/__pycache__/_main.cpython-312.pyc +0 -0
  220. package/python/.venv/Lib/site-packages/httpx/__pycache__/_models.cpython-312.pyc +0 -0
  221. package/python/.venv/Lib/site-packages/httpx/__pycache__/_multipart.cpython-312.pyc +0 -0
  222. package/python/.venv/Lib/site-packages/httpx/__pycache__/_status_codes.cpython-312.pyc +0 -0
  223. package/python/.venv/Lib/site-packages/httpx/__pycache__/_types.cpython-312.pyc +0 -0
  224. package/python/.venv/Lib/site-packages/httpx/__pycache__/_urlparse.cpython-312.pyc +0 -0
  225. package/python/.venv/Lib/site-packages/httpx/__pycache__/_urls.cpython-312.pyc +0 -0
  226. package/python/.venv/Lib/site-packages/httpx/__pycache__/_utils.cpython-312.pyc +0 -0
  227. package/python/.venv/Lib/site-packages/httpx/__version__.py +3 -0
  228. package/python/.venv/Lib/site-packages/httpx/_api.py +438 -0
  229. package/python/.venv/Lib/site-packages/httpx/_auth.py +348 -0
  230. package/python/.venv/Lib/site-packages/httpx/_client.py +2019 -0
  231. package/python/.venv/Lib/site-packages/httpx/_config.py +248 -0
  232. package/python/.venv/Lib/site-packages/httpx/_content.py +240 -0
  233. package/python/.venv/Lib/site-packages/httpx/_decoders.py +393 -0
  234. package/python/.venv/Lib/site-packages/httpx/_exceptions.py +379 -0
  235. package/python/.venv/Lib/site-packages/httpx/_main.py +506 -0
  236. package/python/.venv/Lib/site-packages/httpx/_models.py +1277 -0
  237. package/python/.venv/Lib/site-packages/httpx/_multipart.py +300 -0
  238. package/python/.venv/Lib/site-packages/httpx/_status_codes.py +162 -0
  239. package/python/.venv/Lib/site-packages/httpx/_transports/__init__.py +15 -0
  240. package/python/.venv/Lib/site-packages/httpx/_transports/__pycache__/__init__.cpython-312.pyc +0 -0
  241. package/python/.venv/Lib/site-packages/httpx/_transports/__pycache__/asgi.cpython-312.pyc +0 -0
  242. package/python/.venv/Lib/site-packages/httpx/_transports/__pycache__/base.cpython-312.pyc +0 -0
  243. package/python/.venv/Lib/site-packages/httpx/_transports/__pycache__/default.cpython-312.pyc +0 -0
  244. package/python/.venv/Lib/site-packages/httpx/_transports/__pycache__/mock.cpython-312.pyc +0 -0
  245. package/python/.venv/Lib/site-packages/httpx/_transports/__pycache__/wsgi.cpython-312.pyc +0 -0
  246. package/python/.venv/Lib/site-packages/httpx/_transports/asgi.py +187 -0
  247. package/python/.venv/Lib/site-packages/httpx/_transports/base.py +86 -0
  248. package/python/.venv/Lib/site-packages/httpx/_transports/default.py +406 -0
  249. package/python/.venv/Lib/site-packages/httpx/_transports/mock.py +43 -0
  250. package/python/.venv/Lib/site-packages/httpx/_transports/wsgi.py +149 -0
  251. package/python/.venv/Lib/site-packages/httpx/_types.py +114 -0
  252. package/python/.venv/Lib/site-packages/httpx/_urlparse.py +527 -0
  253. package/python/.venv/Lib/site-packages/httpx/_urls.py +641 -0
  254. package/python/.venv/Lib/site-packages/httpx/_utils.py +242 -0
  255. package/python/.venv/Lib/site-packages/httpx/py.typed +0 -0
  256. package/python/.venv/Lib/site-packages/httpx-0.28.1.dist-info/INSTALLER +1 -0
  257. package/python/.venv/Lib/site-packages/httpx-0.28.1.dist-info/METADATA +203 -0
  258. package/python/.venv/Lib/site-packages/httpx-0.28.1.dist-info/RECORD +55 -0
  259. package/python/.venv/Lib/site-packages/httpx-0.28.1.dist-info/REQUESTED +0 -0
  260. package/python/.venv/Lib/site-packages/httpx-0.28.1.dist-info/WHEEL +4 -0
  261. package/python/.venv/Lib/site-packages/httpx-0.28.1.dist-info/entry_points.txt +2 -0
  262. package/python/.venv/Lib/site-packages/httpx-0.28.1.dist-info/licenses/LICENSE.md +12 -0
  263. package/python/.venv/Lib/site-packages/idna/__init__.py +45 -0
  264. package/python/.venv/Lib/site-packages/idna/__pycache__/__init__.cpython-312.pyc +0 -0
  265. package/python/.venv/Lib/site-packages/idna/__pycache__/codec.cpython-312.pyc +0 -0
  266. package/python/.venv/Lib/site-packages/idna/__pycache__/compat.cpython-312.pyc +0 -0
  267. package/python/.venv/Lib/site-packages/idna/__pycache__/core.cpython-312.pyc +0 -0
  268. package/python/.venv/Lib/site-packages/idna/__pycache__/idnadata.cpython-312.pyc +0 -0
  269. package/python/.venv/Lib/site-packages/idna/__pycache__/intranges.cpython-312.pyc +0 -0
  270. package/python/.venv/Lib/site-packages/idna/__pycache__/package_data.cpython-312.pyc +0 -0
  271. package/python/.venv/Lib/site-packages/idna/__pycache__/uts46data.cpython-312.pyc +0 -0
  272. package/python/.venv/Lib/site-packages/idna/codec.py +159 -0
  273. package/python/.venv/Lib/site-packages/idna/compat.py +41 -0
  274. package/python/.venv/Lib/site-packages/idna/core.py +620 -0
  275. package/python/.venv/Lib/site-packages/idna/idnadata.py +4367 -0
  276. package/python/.venv/Lib/site-packages/idna/intranges.py +56 -0
  277. package/python/.venv/Lib/site-packages/idna/package_data.py +1 -0
  278. package/python/.venv/Lib/site-packages/idna/py.typed +0 -0
  279. package/python/.venv/Lib/site-packages/idna/uts46data.py +8383 -0
  280. package/python/.venv/Lib/site-packages/idna-3.15.dist-info/INSTALLER +1 -0
  281. package/python/.venv/Lib/site-packages/idna-3.15.dist-info/METADATA +194 -0
  282. package/python/.venv/Lib/site-packages/idna-3.15.dist-info/RECORD +22 -0
  283. package/python/.venv/Lib/site-packages/idna-3.15.dist-info/WHEEL +4 -0
  284. package/python/.venv/Lib/site-packages/idna-3.15.dist-info/licenses/LICENSE.md +31 -0
  285. package/python/.venv/Lib/site-packages/pip/__init__.py +13 -0
  286. package/python/.venv/Lib/site-packages/pip/__main__.py +24 -0
  287. package/python/.venv/Lib/site-packages/pip/__pip-runner__.py +50 -0
  288. package/python/.venv/Lib/site-packages/pip/__pycache__/__init__.cpython-312.pyc +0 -0
  289. package/python/.venv/Lib/site-packages/pip/__pycache__/__main__.cpython-312.pyc +0 -0
  290. package/python/.venv/Lib/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc +0 -0
  291. package/python/.venv/Lib/site-packages/pip/_internal/__init__.py +18 -0
  292. package/python/.venv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc +0 -0
  293. package/python/.venv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc +0 -0
  294. package/python/.venv/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc +0 -0
  295. package/python/.venv/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc +0 -0
  296. package/python/.venv/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc +0 -0
  297. package/python/.venv/Lib/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc +0 -0
  298. package/python/.venv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc +0 -0
  299. package/python/.venv/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc +0 -0
  300. package/python/.venv/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc +0 -0
  301. package/python/.venv/Lib/site-packages/pip/_internal/build_env.py +322 -0
  302. package/python/.venv/Lib/site-packages/pip/_internal/cache.py +290 -0
  303. package/python/.venv/Lib/site-packages/pip/_internal/cli/__init__.py +4 -0
  304. package/python/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc +0 -0
  305. package/python/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc +0 -0
  306. package/python/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc +0 -0
  307. package/python/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc +0 -0
  308. package/python/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc +0 -0
  309. package/python/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc +0 -0
  310. package/python/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc +0 -0
  311. package/python/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc +0 -0
  312. package/python/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc +0 -0
  313. package/python/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc +0 -0
  314. package/python/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc +0 -0
  315. package/python/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc +0 -0
  316. package/python/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc +0 -0
  317. package/python/.venv/Lib/site-packages/pip/_internal/cli/autocompletion.py +176 -0
  318. package/python/.venv/Lib/site-packages/pip/_internal/cli/base_command.py +240 -0
  319. package/python/.venv/Lib/site-packages/pip/_internal/cli/cmdoptions.py +1075 -0
  320. package/python/.venv/Lib/site-packages/pip/_internal/cli/command_context.py +27 -0
  321. package/python/.venv/Lib/site-packages/pip/_internal/cli/index_command.py +171 -0
  322. package/python/.venv/Lib/site-packages/pip/_internal/cli/main.py +80 -0
  323. package/python/.venv/Lib/site-packages/pip/_internal/cli/main_parser.py +134 -0
  324. package/python/.venv/Lib/site-packages/pip/_internal/cli/parser.py +294 -0
  325. package/python/.venv/Lib/site-packages/pip/_internal/cli/progress_bars.py +94 -0
  326. package/python/.venv/Lib/site-packages/pip/_internal/cli/req_command.py +329 -0
  327. package/python/.venv/Lib/site-packages/pip/_internal/cli/spinners.py +159 -0
  328. package/python/.venv/Lib/site-packages/pip/_internal/cli/status_codes.py +6 -0
  329. package/python/.venv/Lib/site-packages/pip/_internal/commands/__init__.py +132 -0
  330. package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc +0 -0
  331. package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc +0 -0
  332. package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc +0 -0
  333. package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc +0 -0
  334. package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc +0 -0
  335. package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc +0 -0
  336. package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc +0 -0
  337. package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc +0 -0
  338. package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc +0 -0
  339. package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc +0 -0
  340. package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc +0 -0
  341. package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc +0 -0
  342. package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc +0 -0
  343. package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc +0 -0
  344. package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc +0 -0
  345. package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc +0 -0
  346. package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc +0 -0
  347. package/python/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc +0 -0
  348. package/python/.venv/Lib/site-packages/pip/_internal/commands/cache.py +228 -0
  349. package/python/.venv/Lib/site-packages/pip/_internal/commands/check.py +67 -0
  350. package/python/.venv/Lib/site-packages/pip/_internal/commands/completion.py +130 -0
  351. package/python/.venv/Lib/site-packages/pip/_internal/commands/configuration.py +280 -0
  352. package/python/.venv/Lib/site-packages/pip/_internal/commands/debug.py +201 -0
  353. package/python/.venv/Lib/site-packages/pip/_internal/commands/download.py +146 -0
  354. package/python/.venv/Lib/site-packages/pip/_internal/commands/freeze.py +109 -0
  355. package/python/.venv/Lib/site-packages/pip/_internal/commands/hash.py +59 -0
  356. package/python/.venv/Lib/site-packages/pip/_internal/commands/help.py +41 -0
  357. package/python/.venv/Lib/site-packages/pip/_internal/commands/index.py +139 -0
  358. package/python/.venv/Lib/site-packages/pip/_internal/commands/inspect.py +92 -0
  359. package/python/.venv/Lib/site-packages/pip/_internal/commands/install.py +784 -0
  360. package/python/.venv/Lib/site-packages/pip/_internal/commands/list.py +375 -0
  361. package/python/.venv/Lib/site-packages/pip/_internal/commands/search.py +172 -0
  362. package/python/.venv/Lib/site-packages/pip/_internal/commands/show.py +224 -0
  363. package/python/.venv/Lib/site-packages/pip/_internal/commands/uninstall.py +114 -0
  364. package/python/.venv/Lib/site-packages/pip/_internal/commands/wheel.py +182 -0
  365. package/python/.venv/Lib/site-packages/pip/_internal/configuration.py +383 -0
  366. package/python/.venv/Lib/site-packages/pip/_internal/distributions/__init__.py +21 -0
  367. package/python/.venv/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc +0 -0
  368. package/python/.venv/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc +0 -0
  369. package/python/.venv/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc +0 -0
  370. package/python/.venv/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc +0 -0
  371. package/python/.venv/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc +0 -0
  372. package/python/.venv/Lib/site-packages/pip/_internal/distributions/base.py +53 -0
  373. package/python/.venv/Lib/site-packages/pip/_internal/distributions/installed.py +29 -0
  374. package/python/.venv/Lib/site-packages/pip/_internal/distributions/sdist.py +158 -0
  375. package/python/.venv/Lib/site-packages/pip/_internal/distributions/wheel.py +42 -0
  376. package/python/.venv/Lib/site-packages/pip/_internal/exceptions.py +809 -0
  377. package/python/.venv/Lib/site-packages/pip/_internal/index/__init__.py +2 -0
  378. package/python/.venv/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc +0 -0
  379. package/python/.venv/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc +0 -0
  380. package/python/.venv/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc +0 -0
  381. package/python/.venv/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc +0 -0
  382. package/python/.venv/Lib/site-packages/pip/_internal/index/collector.py +494 -0
  383. package/python/.venv/Lib/site-packages/pip/_internal/index/package_finder.py +1029 -0
  384. package/python/.venv/Lib/site-packages/pip/_internal/index/sources.py +284 -0
  385. package/python/.venv/Lib/site-packages/pip/_internal/locations/__init__.py +456 -0
  386. package/python/.venv/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc +0 -0
  387. package/python/.venv/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc +0 -0
  388. package/python/.venv/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc +0 -0
  389. package/python/.venv/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc +0 -0
  390. package/python/.venv/Lib/site-packages/pip/_internal/locations/_distutils.py +172 -0
  391. package/python/.venv/Lib/site-packages/pip/_internal/locations/_sysconfig.py +214 -0
  392. package/python/.venv/Lib/site-packages/pip/_internal/locations/base.py +81 -0
  393. package/python/.venv/Lib/site-packages/pip/_internal/main.py +12 -0
  394. package/python/.venv/Lib/site-packages/pip/_internal/metadata/__init__.py +128 -0
  395. package/python/.venv/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc +0 -0
  396. package/python/.venv/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc +0 -0
  397. package/python/.venv/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc +0 -0
  398. package/python/.venv/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc +0 -0
  399. package/python/.venv/Lib/site-packages/pip/_internal/metadata/_json.py +86 -0
  400. package/python/.venv/Lib/site-packages/pip/_internal/metadata/base.py +688 -0
  401. package/python/.venv/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py +6 -0
  402. package/python/.venv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc +0 -0
  403. package/python/.venv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc +0 -0
  404. package/python/.venv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc +0 -0
  405. package/python/.venv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc +0 -0
  406. package/python/.venv/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py +85 -0
  407. package/python/.venv/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py +228 -0
  408. package/python/.venv/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py +189 -0
  409. package/python/.venv/Lib/site-packages/pip/_internal/metadata/pkg_resources.py +301 -0
  410. package/python/.venv/Lib/site-packages/pip/_internal/models/__init__.py +2 -0
  411. package/python/.venv/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc +0 -0
  412. package/python/.venv/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc +0 -0
  413. package/python/.venv/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc +0 -0
  414. package/python/.venv/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc +0 -0
  415. package/python/.venv/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc +0 -0
  416. package/python/.venv/Lib/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc +0 -0
  417. package/python/.venv/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc +0 -0
  418. package/python/.venv/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc +0 -0
  419. package/python/.venv/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc +0 -0
  420. package/python/.venv/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc +0 -0
  421. package/python/.venv/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc +0 -0
  422. package/python/.venv/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc +0 -0
  423. package/python/.venv/Lib/site-packages/pip/_internal/models/candidate.py +25 -0
  424. package/python/.venv/Lib/site-packages/pip/_internal/models/direct_url.py +224 -0
  425. package/python/.venv/Lib/site-packages/pip/_internal/models/format_control.py +78 -0
  426. package/python/.venv/Lib/site-packages/pip/_internal/models/index.py +28 -0
  427. package/python/.venv/Lib/site-packages/pip/_internal/models/installation_report.py +56 -0
  428. package/python/.venv/Lib/site-packages/pip/_internal/models/link.py +604 -0
  429. package/python/.venv/Lib/site-packages/pip/_internal/models/scheme.py +25 -0
  430. package/python/.venv/Lib/site-packages/pip/_internal/models/search_scope.py +127 -0
  431. package/python/.venv/Lib/site-packages/pip/_internal/models/selection_prefs.py +53 -0
  432. package/python/.venv/Lib/site-packages/pip/_internal/models/target_python.py +121 -0
  433. package/python/.venv/Lib/site-packages/pip/_internal/models/wheel.py +118 -0
  434. package/python/.venv/Lib/site-packages/pip/_internal/network/__init__.py +2 -0
  435. package/python/.venv/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc +0 -0
  436. package/python/.venv/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc +0 -0
  437. package/python/.venv/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc +0 -0
  438. package/python/.venv/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc +0 -0
  439. package/python/.venv/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc +0 -0
  440. package/python/.venv/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc +0 -0
  441. package/python/.venv/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc +0 -0
  442. package/python/.venv/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc +0 -0
  443. package/python/.venv/Lib/site-packages/pip/_internal/network/auth.py +566 -0
  444. package/python/.venv/Lib/site-packages/pip/_internal/network/cache.py +118 -0
  445. package/python/.venv/Lib/site-packages/pip/_internal/network/download.py +187 -0
  446. package/python/.venv/Lib/site-packages/pip/_internal/network/lazy_wheel.py +210 -0
  447. package/python/.venv/Lib/site-packages/pip/_internal/network/session.py +523 -0
  448. package/python/.venv/Lib/site-packages/pip/_internal/network/utils.py +98 -0
  449. package/python/.venv/Lib/site-packages/pip/_internal/network/xmlrpc.py +62 -0
  450. package/python/.venv/Lib/site-packages/pip/_internal/operations/__init__.py +0 -0
  451. package/python/.venv/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc +0 -0
  452. package/python/.venv/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc +0 -0
  453. package/python/.venv/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc +0 -0
  454. package/python/.venv/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc +0 -0
  455. package/python/.venv/Lib/site-packages/pip/_internal/operations/build/__init__.py +0 -0
  456. package/python/.venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc +0 -0
  457. package/python/.venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc +0 -0
  458. package/python/.venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc +0 -0
  459. package/python/.venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc +0 -0
  460. package/python/.venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc +0 -0
  461. package/python/.venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc +0 -0
  462. package/python/.venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc +0 -0
  463. package/python/.venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc +0 -0
  464. package/python/.venv/Lib/site-packages/pip/_internal/operations/build/build_tracker.py +138 -0
  465. package/python/.venv/Lib/site-packages/pip/_internal/operations/build/metadata.py +39 -0
  466. package/python/.venv/Lib/site-packages/pip/_internal/operations/build/metadata_editable.py +42 -0
  467. package/python/.venv/Lib/site-packages/pip/_internal/operations/build/metadata_legacy.py +74 -0
  468. package/python/.venv/Lib/site-packages/pip/_internal/operations/build/wheel.py +37 -0
  469. package/python/.venv/Lib/site-packages/pip/_internal/operations/build/wheel_editable.py +46 -0
  470. package/python/.venv/Lib/site-packages/pip/_internal/operations/build/wheel_legacy.py +102 -0
  471. package/python/.venv/Lib/site-packages/pip/_internal/operations/check.py +181 -0
  472. package/python/.venv/Lib/site-packages/pip/_internal/operations/freeze.py +256 -0
  473. package/python/.venv/Lib/site-packages/pip/_internal/operations/install/__init__.py +2 -0
  474. package/python/.venv/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc +0 -0
  475. package/python/.venv/Lib/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc +0 -0
  476. package/python/.venv/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc +0 -0
  477. package/python/.venv/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py +47 -0
  478. package/python/.venv/Lib/site-packages/pip/_internal/operations/install/wheel.py +741 -0
  479. package/python/.venv/Lib/site-packages/pip/_internal/operations/prepare.py +732 -0
  480. package/python/.venv/Lib/site-packages/pip/_internal/pyproject.py +185 -0
  481. package/python/.venv/Lib/site-packages/pip/_internal/req/__init__.py +90 -0
  482. package/python/.venv/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc +0 -0
  483. package/python/.venv/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc +0 -0
  484. package/python/.venv/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc +0 -0
  485. package/python/.venv/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc +0 -0
  486. package/python/.venv/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc +0 -0
  487. package/python/.venv/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc +0 -0
  488. package/python/.venv/Lib/site-packages/pip/_internal/req/constructors.py +560 -0
  489. package/python/.venv/Lib/site-packages/pip/_internal/req/req_file.py +623 -0
  490. package/python/.venv/Lib/site-packages/pip/_internal/req/req_install.py +934 -0
  491. package/python/.venv/Lib/site-packages/pip/_internal/req/req_set.py +82 -0
  492. package/python/.venv/Lib/site-packages/pip/_internal/req/req_uninstall.py +633 -0
  493. package/python/.venv/Lib/site-packages/pip/_internal/resolution/__init__.py +0 -0
  494. package/python/.venv/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc +0 -0
  495. package/python/.venv/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc +0 -0
  496. package/python/.venv/Lib/site-packages/pip/_internal/resolution/base.py +20 -0
  497. package/python/.venv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
  498. package/python/.venv/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc +0 -0
  499. package/python/.venv/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc +0 -0
  500. package/python/.venv/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py +597 -0
  501. package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
  502. package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
  503. package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc +0 -0
  504. package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc +0 -0
  505. package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc +0 -0
  506. package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc +0 -0
  507. package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc +0 -0
  508. package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc +0 -0
  509. package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc +0 -0
  510. package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc +0 -0
  511. package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py +139 -0
  512. package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py +574 -0
  513. package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py +823 -0
  514. package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +174 -0
  515. package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py +258 -0
  516. package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py +81 -0
  517. package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py +245 -0
  518. package/python/.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py +317 -0
  519. package/python/.venv/Lib/site-packages/pip/_internal/self_outdated_check.py +252 -0
  520. package/python/.venv/Lib/site-packages/pip/_internal/utils/__init__.py +0 -0
  521. package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc +0 -0
  522. package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc +0 -0
  523. package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc +0 -0
  524. package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc +0 -0
  525. package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc +0 -0
  526. package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc +0 -0
  527. package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc +0 -0
  528. package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc +0 -0
  529. package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc +0 -0
  530. package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc +0 -0
  531. package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc +0 -0
  532. package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc +0 -0
  533. package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc +0 -0
  534. package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc +0 -0
  535. package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc +0 -0
  536. package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc +0 -0
  537. package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc +0 -0
  538. package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc +0 -0
  539. package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc +0 -0
  540. package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc +0 -0
  541. package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc +0 -0
  542. package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc +0 -0
  543. package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc +0 -0
  544. package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc +0 -0
  545. package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc +0 -0
  546. package/python/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc +0 -0
  547. package/python/.venv/Lib/site-packages/pip/_internal/utils/_jaraco_text.py +109 -0
  548. package/python/.venv/Lib/site-packages/pip/_internal/utils/_log.py +38 -0
  549. package/python/.venv/Lib/site-packages/pip/_internal/utils/appdirs.py +52 -0
  550. package/python/.venv/Lib/site-packages/pip/_internal/utils/compat.py +79 -0
  551. package/python/.venv/Lib/site-packages/pip/_internal/utils/compatibility_tags.py +188 -0
  552. package/python/.venv/Lib/site-packages/pip/_internal/utils/datetime.py +11 -0
  553. package/python/.venv/Lib/site-packages/pip/_internal/utils/deprecation.py +124 -0
  554. package/python/.venv/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py +87 -0
  555. package/python/.venv/Lib/site-packages/pip/_internal/utils/egg_link.py +80 -0
  556. package/python/.venv/Lib/site-packages/pip/_internal/utils/entrypoints.py +84 -0
  557. package/python/.venv/Lib/site-packages/pip/_internal/utils/filesystem.py +149 -0
  558. package/python/.venv/Lib/site-packages/pip/_internal/utils/filetypes.py +27 -0
  559. package/python/.venv/Lib/site-packages/pip/_internal/utils/glibc.py +101 -0
  560. package/python/.venv/Lib/site-packages/pip/_internal/utils/hashes.py +147 -0
  561. package/python/.venv/Lib/site-packages/pip/_internal/utils/logging.py +354 -0
  562. package/python/.venv/Lib/site-packages/pip/_internal/utils/misc.py +773 -0
  563. package/python/.venv/Lib/site-packages/pip/_internal/utils/packaging.py +58 -0
  564. package/python/.venv/Lib/site-packages/pip/_internal/utils/retry.py +42 -0
  565. package/python/.venv/Lib/site-packages/pip/_internal/utils/setuptools_build.py +146 -0
  566. package/python/.venv/Lib/site-packages/pip/_internal/utils/subprocess.py +245 -0
  567. package/python/.venv/Lib/site-packages/pip/_internal/utils/temp_dir.py +296 -0
  568. package/python/.venv/Lib/site-packages/pip/_internal/utils/unpacking.py +337 -0
  569. package/python/.venv/Lib/site-packages/pip/_internal/utils/urls.py +55 -0
  570. package/python/.venv/Lib/site-packages/pip/_internal/utils/virtualenv.py +104 -0
  571. package/python/.venv/Lib/site-packages/pip/_internal/utils/wheel.py +134 -0
  572. package/python/.venv/Lib/site-packages/pip/_internal/vcs/__init__.py +15 -0
  573. package/python/.venv/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc +0 -0
  574. package/python/.venv/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc +0 -0
  575. package/python/.venv/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc +0 -0
  576. package/python/.venv/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc +0 -0
  577. package/python/.venv/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc +0 -0
  578. package/python/.venv/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc +0 -0
  579. package/python/.venv/Lib/site-packages/pip/_internal/vcs/bazaar.py +112 -0
  580. package/python/.venv/Lib/site-packages/pip/_internal/vcs/git.py +527 -0
  581. package/python/.venv/Lib/site-packages/pip/_internal/vcs/mercurial.py +163 -0
  582. package/python/.venv/Lib/site-packages/pip/_internal/vcs/subversion.py +324 -0
  583. package/python/.venv/Lib/site-packages/pip/_internal/vcs/versioncontrol.py +688 -0
  584. package/python/.venv/Lib/site-packages/pip/_internal/wheel_builder.py +354 -0
  585. package/python/.venv/Lib/site-packages/pip/_vendor/__init__.py +116 -0
  586. package/python/.venv/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc +0 -0
  587. package/python/.venv/Lib/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc +0 -0
  588. package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py +29 -0
  589. package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc +0 -0
  590. package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc +0 -0
  591. package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc +0 -0
  592. package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc +0 -0
  593. package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc +0 -0
  594. package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc +0 -0
  595. package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc +0 -0
  596. package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc +0 -0
  597. package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc +0 -0
  598. package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py +70 -0
  599. package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py +161 -0
  600. package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/cache.py +75 -0
  601. package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
  602. package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc +0 -0
  603. package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc +0 -0
  604. package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc +0 -0
  605. package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +182 -0
  606. package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
  607. package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/controller.py +500 -0
  608. package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py +119 -0
  609. package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py +157 -0
  610. package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/py.typed +0 -0
  611. package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py +146 -0
  612. package/python/.venv/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py +43 -0
  613. package/python/.venv/Lib/site-packages/pip/_vendor/certifi/__init__.py +4 -0
  614. package/python/.venv/Lib/site-packages/pip/_vendor/certifi/__main__.py +12 -0
  615. package/python/.venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
  616. package/python/.venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
  617. package/python/.venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc +0 -0
  618. package/python/.venv/Lib/site-packages/pip/_vendor/certifi/cacert.pem +4929 -0
  619. package/python/.venv/Lib/site-packages/pip/_vendor/certifi/core.py +114 -0
  620. package/python/.venv/Lib/site-packages/pip/_vendor/certifi/py.typed +0 -0
  621. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/__init__.py +33 -0
  622. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc +0 -0
  623. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc +0 -0
  624. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc +0 -0
  625. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc +0 -0
  626. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc +0 -0
  627. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc +0 -0
  628. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc +0 -0
  629. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc +0 -0
  630. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc +0 -0
  631. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc +0 -0
  632. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc +0 -0
  633. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc +0 -0
  634. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc +0 -0
  635. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/compat.py +1137 -0
  636. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/database.py +1329 -0
  637. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/index.py +508 -0
  638. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/locators.py +1295 -0
  639. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/manifest.py +384 -0
  640. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/markers.py +162 -0
  641. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/metadata.py +1031 -0
  642. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/resources.py +358 -0
  643. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/scripts.py +447 -0
  644. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/t32.exe +0 -0
  645. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
  646. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/t64.exe +0 -0
  647. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/util.py +1984 -0
  648. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/version.py +750 -0
  649. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/w32.exe +0 -0
  650. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
  651. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/w64.exe +0 -0
  652. package/python/.venv/Lib/site-packages/pip/_vendor/distlib/wheel.py +1100 -0
  653. package/python/.venv/Lib/site-packages/pip/_vendor/distro/__init__.py +54 -0
  654. package/python/.venv/Lib/site-packages/pip/_vendor/distro/__main__.py +4 -0
  655. package/python/.venv/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc +0 -0
  656. package/python/.venv/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc +0 -0
  657. package/python/.venv/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc +0 -0
  658. package/python/.venv/Lib/site-packages/pip/_vendor/distro/distro.py +1403 -0
  659. package/python/.venv/Lib/site-packages/pip/_vendor/distro/py.typed +0 -0
  660. package/python/.venv/Lib/site-packages/pip/_vendor/idna/__init__.py +45 -0
  661. package/python/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc +0 -0
  662. package/python/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc +0 -0
  663. package/python/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc +0 -0
  664. package/python/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc +0 -0
  665. package/python/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc +0 -0
  666. package/python/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc +0 -0
  667. package/python/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc +0 -0
  668. package/python/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc +0 -0
  669. package/python/.venv/Lib/site-packages/pip/_vendor/idna/codec.py +122 -0
  670. package/python/.venv/Lib/site-packages/pip/_vendor/idna/compat.py +15 -0
  671. package/python/.venv/Lib/site-packages/pip/_vendor/idna/core.py +437 -0
  672. package/python/.venv/Lib/site-packages/pip/_vendor/idna/idnadata.py +4243 -0
  673. package/python/.venv/Lib/site-packages/pip/_vendor/idna/intranges.py +57 -0
  674. package/python/.venv/Lib/site-packages/pip/_vendor/idna/package_data.py +1 -0
  675. package/python/.venv/Lib/site-packages/pip/_vendor/idna/py.typed +0 -0
  676. package/python/.venv/Lib/site-packages/pip/_vendor/idna/uts46data.py +8681 -0
  677. package/python/.venv/Lib/site-packages/pip/_vendor/msgpack/__init__.py +55 -0
  678. package/python/.venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc +0 -0
  679. package/python/.venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc +0 -0
  680. package/python/.venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc +0 -0
  681. package/python/.venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc +0 -0
  682. package/python/.venv/Lib/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
  683. package/python/.venv/Lib/site-packages/pip/_vendor/msgpack/ext.py +170 -0
  684. package/python/.venv/Lib/site-packages/pip/_vendor/msgpack/fallback.py +929 -0
  685. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/__init__.py +15 -0
  686. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
  687. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
  688. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
  689. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
  690. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
  691. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
  692. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
  693. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc +0 -0
  694. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
  695. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
  696. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
  697. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc +0 -0
  698. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc +0 -0
  699. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc +0 -0
  700. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/_elffile.py +110 -0
  701. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/_manylinux.py +263 -0
  702. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/_musllinux.py +85 -0
  703. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/_parser.py +354 -0
  704. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/_structures.py +61 -0
  705. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/_tokenizer.py +194 -0
  706. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/licenses/__init__.py +145 -0
  707. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
  708. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
  709. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/licenses/_spdx.py +759 -0
  710. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/markers.py +331 -0
  711. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/metadata.py +863 -0
  712. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/py.typed +0 -0
  713. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/requirements.py +91 -0
  714. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/specifiers.py +1020 -0
  715. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/tags.py +617 -0
  716. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/utils.py +163 -0
  717. package/python/.venv/Lib/site-packages/pip/_vendor/packaging/version.py +582 -0
  718. package/python/.venv/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py +3676 -0
  719. package/python/.venv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc +0 -0
  720. package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/__init__.py +631 -0
  721. package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/__main__.py +55 -0
  722. package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc +0 -0
  723. package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc +0 -0
  724. package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc +0 -0
  725. package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc +0 -0
  726. package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc +0 -0
  727. package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc +0 -0
  728. package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc +0 -0
  729. package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc +0 -0
  730. package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/android.py +249 -0
  731. package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/api.py +298 -0
  732. package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/macos.py +144 -0
  733. package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
  734. package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/unix.py +269 -0
  735. package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/version.py +16 -0
  736. package/python/.venv/Lib/site-packages/pip/_vendor/platformdirs/windows.py +272 -0
  737. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__init__.py +82 -0
  738. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__main__.py +17 -0
  739. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc +0 -0
  740. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc +0 -0
  741. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc +0 -0
  742. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc +0 -0
  743. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc +0 -0
  744. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc +0 -0
  745. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc +0 -0
  746. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc +0 -0
  747. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc +0 -0
  748. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc +0 -0
  749. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc +0 -0
  750. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc +0 -0
  751. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc +0 -0
  752. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc +0 -0
  753. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc +0 -0
  754. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc +0 -0
  755. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/cmdline.py +668 -0
  756. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/console.py +70 -0
  757. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/filter.py +70 -0
  758. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py +940 -0
  759. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc +0 -0
  760. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatter.py +129 -0
  761. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py +157 -0
  762. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc +0 -0
  763. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc +0 -0
  764. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc +0 -0
  765. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc +0 -0
  766. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc +0 -0
  767. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc +0 -0
  768. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc +0 -0
  769. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc +0 -0
  770. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc +0 -0
  771. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc +0 -0
  772. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc +0 -0
  773. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.pyc +0 -0
  774. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc +0 -0
  775. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc +0 -0
  776. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py +23 -0
  777. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py +108 -0
  778. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py +170 -0
  779. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/html.py +987 -0
  780. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/img.py +685 -0
  781. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py +154 -0
  782. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py +518 -0
  783. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/other.py +160 -0
  784. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py +83 -0
  785. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py +349 -0
  786. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py +185 -0
  787. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py +127 -0
  788. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py +338 -0
  789. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/lexer.py +963 -0
  790. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py +362 -0
  791. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc +0 -0
  792. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc +0 -0
  793. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc +0 -0
  794. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py +589 -0
  795. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/lexers/python.py +1198 -0
  796. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/modeline.py +43 -0
  797. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/plugin.py +72 -0
  798. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/regexopt.py +91 -0
  799. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/scanner.py +104 -0
  800. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/sphinxext.py +247 -0
  801. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/style.py +203 -0
  802. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py +61 -0
  803. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc +0 -0
  804. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc +0 -0
  805. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/styles/_mapping.py +54 -0
  806. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/token.py +214 -0
  807. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/unistring.py +153 -0
  808. package/python/.venv/Lib/site-packages/pip/_vendor/pygments/util.py +324 -0
  809. package/python/.venv/Lib/site-packages/pip/_vendor/pyproject_hooks/__init__.py +31 -0
  810. package/python/.venv/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc +0 -0
  811. package/python/.venv/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc +0 -0
  812. package/python/.venv/Lib/site-packages/pip/_vendor/pyproject_hooks/_impl.py +410 -0
  813. package/python/.venv/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +21 -0
  814. package/python/.venv/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc +0 -0
  815. package/python/.venv/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc +0 -0
  816. package/python/.venv/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +389 -0
  817. package/python/.venv/Lib/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
  818. package/python/.venv/Lib/site-packages/pip/_vendor/requests/__init__.py +179 -0
  819. package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc +0 -0
  820. package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc +0 -0
  821. package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc +0 -0
  822. package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc +0 -0
  823. package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc +0 -0
  824. package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc +0 -0
  825. package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc +0 -0
  826. package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc +0 -0
  827. package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc +0 -0
  828. package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc +0 -0
  829. package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc +0 -0
  830. package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc +0 -0
  831. package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc +0 -0
  832. package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc +0 -0
  833. package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc +0 -0
  834. package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc +0 -0
  835. package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc +0 -0
  836. package/python/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc +0 -0
  837. package/python/.venv/Lib/site-packages/pip/_vendor/requests/__version__.py +14 -0
  838. package/python/.venv/Lib/site-packages/pip/_vendor/requests/_internal_utils.py +50 -0
  839. package/python/.venv/Lib/site-packages/pip/_vendor/requests/adapters.py +719 -0
  840. package/python/.venv/Lib/site-packages/pip/_vendor/requests/api.py +157 -0
  841. package/python/.venv/Lib/site-packages/pip/_vendor/requests/auth.py +314 -0
  842. package/python/.venv/Lib/site-packages/pip/_vendor/requests/certs.py +17 -0
  843. package/python/.venv/Lib/site-packages/pip/_vendor/requests/compat.py +78 -0
  844. package/python/.venv/Lib/site-packages/pip/_vendor/requests/cookies.py +561 -0
  845. package/python/.venv/Lib/site-packages/pip/_vendor/requests/exceptions.py +151 -0
  846. package/python/.venv/Lib/site-packages/pip/_vendor/requests/help.py +127 -0
  847. package/python/.venv/Lib/site-packages/pip/_vendor/requests/hooks.py +33 -0
  848. package/python/.venv/Lib/site-packages/pip/_vendor/requests/models.py +1037 -0
  849. package/python/.venv/Lib/site-packages/pip/_vendor/requests/packages.py +25 -0
  850. package/python/.venv/Lib/site-packages/pip/_vendor/requests/sessions.py +831 -0
  851. package/python/.venv/Lib/site-packages/pip/_vendor/requests/status_codes.py +128 -0
  852. package/python/.venv/Lib/site-packages/pip/_vendor/requests/structures.py +99 -0
  853. package/python/.venv/Lib/site-packages/pip/_vendor/requests/utils.py +1096 -0
  854. package/python/.venv/Lib/site-packages/pip/_vendor/resolvelib/__init__.py +26 -0
  855. package/python/.venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
  856. package/python/.venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc +0 -0
  857. package/python/.venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc +0 -0
  858. package/python/.venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.pyc +0 -0
  859. package/python/.venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc +0 -0
  860. package/python/.venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py +0 -0
  861. package/python/.venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-312.pyc +0 -0
  862. package/python/.venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.pyc +0 -0
  863. package/python/.venv/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py +6 -0
  864. package/python/.venv/Lib/site-packages/pip/_vendor/resolvelib/providers.py +133 -0
  865. package/python/.venv/Lib/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
  866. package/python/.venv/Lib/site-packages/pip/_vendor/resolvelib/reporters.py +43 -0
  867. package/python/.venv/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py +547 -0
  868. package/python/.venv/Lib/site-packages/pip/_vendor/resolvelib/structs.py +170 -0
  869. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__init__.py +177 -0
  870. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__main__.py +273 -0
  871. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc +0 -0
  872. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc +0 -0
  873. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc +0 -0
  874. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc +0 -0
  875. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc +0 -0
  876. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc +0 -0
  877. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc +0 -0
  878. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc +0 -0
  879. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc +0 -0
  880. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc +0 -0
  881. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc +0 -0
  882. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc +0 -0
  883. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc +0 -0
  884. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc +0 -0
  885. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc +0 -0
  886. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc +0 -0
  887. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc +0 -0
  888. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc +0 -0
  889. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc +0 -0
  890. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc +0 -0
  891. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc +0 -0
  892. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc +0 -0
  893. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc +0 -0
  894. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc +0 -0
  895. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc +0 -0
  896. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc +0 -0
  897. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc +0 -0
  898. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc +0 -0
  899. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc +0 -0
  900. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc +0 -0
  901. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc +0 -0
  902. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc +0 -0
  903. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc +0 -0
  904. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc +0 -0
  905. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc +0 -0
  906. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc +0 -0
  907. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc +0 -0
  908. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc +0 -0
  909. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc +0 -0
  910. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc +0 -0
  911. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc +0 -0
  912. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc +0 -0
  913. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc +0 -0
  914. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc +0 -0
  915. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc +0 -0
  916. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc +0 -0
  917. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc +0 -0
  918. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc +0 -0
  919. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc +0 -0
  920. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc +0 -0
  921. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc +0 -0
  922. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc +0 -0
  923. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc +0 -0
  924. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc +0 -0
  925. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc +0 -0
  926. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc +0 -0
  927. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc +0 -0
  928. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc +0 -0
  929. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc +0 -0
  930. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc +0 -0
  931. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc +0 -0
  932. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc +0 -0
  933. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc +0 -0
  934. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc +0 -0
  935. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc +0 -0
  936. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc +0 -0
  937. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc +0 -0
  938. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc +0 -0
  939. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc +0 -0
  940. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc +0 -0
  941. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc +0 -0
  942. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc +0 -0
  943. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc +0 -0
  944. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc +0 -0
  945. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc +0 -0
  946. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc +0 -0
  947. package/python/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc +0 -0
  948. package/python/.venv/Lib/site-packages/pip/_vendor/rich/_cell_widths.py +454 -0
  949. package/python/.venv/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
  950. package/python/.venv/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
  951. package/python/.venv/Lib/site-packages/pip/_vendor/rich/_export_format.py +76 -0
  952. package/python/.venv/Lib/site-packages/pip/_vendor/rich/_extension.py +10 -0
  953. package/python/.venv/Lib/site-packages/pip/_vendor/rich/_fileno.py +24 -0
  954. package/python/.venv/Lib/site-packages/pip/_vendor/rich/_inspect.py +268 -0
  955. package/python/.venv/Lib/site-packages/pip/_vendor/rich/_log_render.py +94 -0
  956. package/python/.venv/Lib/site-packages/pip/_vendor/rich/_loop.py +43 -0
  957. package/python/.venv/Lib/site-packages/pip/_vendor/rich/_null_file.py +69 -0
  958. package/python/.venv/Lib/site-packages/pip/_vendor/rich/_palettes.py +309 -0
  959. package/python/.venv/Lib/site-packages/pip/_vendor/rich/_pick.py +17 -0
  960. package/python/.venv/Lib/site-packages/pip/_vendor/rich/_ratio.py +159 -0
  961. package/python/.venv/Lib/site-packages/pip/_vendor/rich/_spinners.py +482 -0
  962. package/python/.venv/Lib/site-packages/pip/_vendor/rich/_stack.py +16 -0
  963. package/python/.venv/Lib/site-packages/pip/_vendor/rich/_timer.py +19 -0
  964. package/python/.venv/Lib/site-packages/pip/_vendor/rich/_win32_console.py +661 -0
  965. package/python/.venv/Lib/site-packages/pip/_vendor/rich/_windows.py +71 -0
  966. package/python/.venv/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py +56 -0
  967. package/python/.venv/Lib/site-packages/pip/_vendor/rich/_wrap.py +93 -0
  968. package/python/.venv/Lib/site-packages/pip/_vendor/rich/abc.py +33 -0
  969. package/python/.venv/Lib/site-packages/pip/_vendor/rich/align.py +312 -0
  970. package/python/.venv/Lib/site-packages/pip/_vendor/rich/ansi.py +241 -0
  971. package/python/.venv/Lib/site-packages/pip/_vendor/rich/bar.py +93 -0
  972. package/python/.venv/Lib/site-packages/pip/_vendor/rich/box.py +480 -0
  973. package/python/.venv/Lib/site-packages/pip/_vendor/rich/cells.py +174 -0
  974. package/python/.venv/Lib/site-packages/pip/_vendor/rich/color.py +621 -0
  975. package/python/.venv/Lib/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
  976. package/python/.venv/Lib/site-packages/pip/_vendor/rich/columns.py +187 -0
  977. package/python/.venv/Lib/site-packages/pip/_vendor/rich/console.py +2661 -0
  978. package/python/.venv/Lib/site-packages/pip/_vendor/rich/constrain.py +37 -0
  979. package/python/.venv/Lib/site-packages/pip/_vendor/rich/containers.py +167 -0
  980. package/python/.venv/Lib/site-packages/pip/_vendor/rich/control.py +225 -0
  981. package/python/.venv/Lib/site-packages/pip/_vendor/rich/default_styles.py +191 -0
  982. package/python/.venv/Lib/site-packages/pip/_vendor/rich/diagnose.py +37 -0
  983. package/python/.venv/Lib/site-packages/pip/_vendor/rich/emoji.py +96 -0
  984. package/python/.venv/Lib/site-packages/pip/_vendor/rich/errors.py +34 -0
  985. package/python/.venv/Lib/site-packages/pip/_vendor/rich/file_proxy.py +57 -0
  986. package/python/.venv/Lib/site-packages/pip/_vendor/rich/filesize.py +88 -0
  987. package/python/.venv/Lib/site-packages/pip/_vendor/rich/highlighter.py +232 -0
  988. package/python/.venv/Lib/site-packages/pip/_vendor/rich/json.py +139 -0
  989. package/python/.venv/Lib/site-packages/pip/_vendor/rich/jupyter.py +101 -0
  990. package/python/.venv/Lib/site-packages/pip/_vendor/rich/layout.py +442 -0
  991. package/python/.venv/Lib/site-packages/pip/_vendor/rich/live.py +375 -0
  992. package/python/.venv/Lib/site-packages/pip/_vendor/rich/live_render.py +112 -0
  993. package/python/.venv/Lib/site-packages/pip/_vendor/rich/logging.py +297 -0
  994. package/python/.venv/Lib/site-packages/pip/_vendor/rich/markup.py +251 -0
  995. package/python/.venv/Lib/site-packages/pip/_vendor/rich/measure.py +151 -0
  996. package/python/.venv/Lib/site-packages/pip/_vendor/rich/padding.py +141 -0
  997. package/python/.venv/Lib/site-packages/pip/_vendor/rich/pager.py +34 -0
  998. package/python/.venv/Lib/site-packages/pip/_vendor/rich/palette.py +100 -0
  999. package/python/.venv/Lib/site-packages/pip/_vendor/rich/panel.py +318 -0
  1000. package/python/.venv/Lib/site-packages/pip/_vendor/rich/pretty.py +1016 -0
  1001. package/python/.venv/Lib/site-packages/pip/_vendor/rich/progress.py +1715 -0
  1002. package/python/.venv/Lib/site-packages/pip/_vendor/rich/progress_bar.py +223 -0
  1003. package/python/.venv/Lib/site-packages/pip/_vendor/rich/prompt.py +400 -0
  1004. package/python/.venv/Lib/site-packages/pip/_vendor/rich/protocol.py +42 -0
  1005. package/python/.venv/Lib/site-packages/pip/_vendor/rich/py.typed +0 -0
  1006. package/python/.venv/Lib/site-packages/pip/_vendor/rich/region.py +10 -0
  1007. package/python/.venv/Lib/site-packages/pip/_vendor/rich/repr.py +149 -0
  1008. package/python/.venv/Lib/site-packages/pip/_vendor/rich/rule.py +130 -0
  1009. package/python/.venv/Lib/site-packages/pip/_vendor/rich/scope.py +86 -0
  1010. package/python/.venv/Lib/site-packages/pip/_vendor/rich/screen.py +54 -0
  1011. package/python/.venv/Lib/site-packages/pip/_vendor/rich/segment.py +752 -0
  1012. package/python/.venv/Lib/site-packages/pip/_vendor/rich/spinner.py +138 -0
  1013. package/python/.venv/Lib/site-packages/pip/_vendor/rich/status.py +131 -0
  1014. package/python/.venv/Lib/site-packages/pip/_vendor/rich/style.py +796 -0
  1015. package/python/.venv/Lib/site-packages/pip/_vendor/rich/styled.py +42 -0
  1016. package/python/.venv/Lib/site-packages/pip/_vendor/rich/syntax.py +966 -0
  1017. package/python/.venv/Lib/site-packages/pip/_vendor/rich/table.py +1007 -0
  1018. package/python/.venv/Lib/site-packages/pip/_vendor/rich/terminal_theme.py +153 -0
  1019. package/python/.venv/Lib/site-packages/pip/_vendor/rich/text.py +1361 -0
  1020. package/python/.venv/Lib/site-packages/pip/_vendor/rich/theme.py +115 -0
  1021. package/python/.venv/Lib/site-packages/pip/_vendor/rich/themes.py +5 -0
  1022. package/python/.venv/Lib/site-packages/pip/_vendor/rich/traceback.py +797 -0
  1023. package/python/.venv/Lib/site-packages/pip/_vendor/rich/tree.py +257 -0
  1024. package/python/.venv/Lib/site-packages/pip/_vendor/tomli/__init__.py +8 -0
  1025. package/python/.venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc +0 -0
  1026. package/python/.venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc +0 -0
  1027. package/python/.venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc +0 -0
  1028. package/python/.venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc +0 -0
  1029. package/python/.venv/Lib/site-packages/pip/_vendor/tomli/_parser.py +770 -0
  1030. package/python/.venv/Lib/site-packages/pip/_vendor/tomli/_re.py +112 -0
  1031. package/python/.venv/Lib/site-packages/pip/_vendor/tomli/_types.py +10 -0
  1032. package/python/.venv/Lib/site-packages/pip/_vendor/tomli/py.typed +1 -0
  1033. package/python/.venv/Lib/site-packages/pip/_vendor/truststore/__init__.py +36 -0
  1034. package/python/.venv/Lib/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc +0 -0
  1035. package/python/.venv/Lib/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc +0 -0
  1036. package/python/.venv/Lib/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc +0 -0
  1037. package/python/.venv/Lib/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc +0 -0
  1038. package/python/.venv/Lib/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc +0 -0
  1039. package/python/.venv/Lib/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc +0 -0
  1040. package/python/.venv/Lib/site-packages/pip/_vendor/truststore/_api.py +316 -0
  1041. package/python/.venv/Lib/site-packages/pip/_vendor/truststore/_macos.py +571 -0
  1042. package/python/.venv/Lib/site-packages/pip/_vendor/truststore/_openssl.py +66 -0
  1043. package/python/.venv/Lib/site-packages/pip/_vendor/truststore/_ssl_constants.py +31 -0
  1044. package/python/.venv/Lib/site-packages/pip/_vendor/truststore/_windows.py +567 -0
  1045. package/python/.venv/Lib/site-packages/pip/_vendor/truststore/py.typed +0 -0
  1046. package/python/.venv/Lib/site-packages/pip/_vendor/typing_extensions.py +3641 -0
  1047. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/__init__.py +102 -0
  1048. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc +0 -0
  1049. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc +0 -0
  1050. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc +0 -0
  1051. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc +0 -0
  1052. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc +0 -0
  1053. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc +0 -0
  1054. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc +0 -0
  1055. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc +0 -0
  1056. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc +0 -0
  1057. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc +0 -0
  1058. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc +0 -0
  1059. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/_collections.py +355 -0
  1060. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/_version.py +2 -0
  1061. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/connection.py +572 -0
  1062. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py +1140 -0
  1063. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
  1064. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc +0 -0
  1065. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc +0 -0
  1066. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc +0 -0
  1067. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc +0 -0
  1068. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc +0 -0
  1069. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc +0 -0
  1070. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc +0 -0
  1071. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +36 -0
  1072. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
  1073. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc +0 -0
  1074. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc +0 -0
  1075. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc +0 -0
  1076. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +519 -0
  1077. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +397 -0
  1078. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py +314 -0
  1079. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +130 -0
  1080. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +518 -0
  1081. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +920 -0
  1082. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py +216 -0
  1083. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/exceptions.py +323 -0
  1084. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/fields.py +274 -0
  1085. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/filepost.py +98 -0
  1086. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
  1087. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc +0 -0
  1088. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc +0 -0
  1089. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
  1090. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc +0 -0
  1091. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc +0 -0
  1092. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc +0 -0
  1093. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +51 -0
  1094. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +155 -0
  1095. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/packages/six.py +1076 -0
  1096. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py +540 -0
  1097. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/request.py +191 -0
  1098. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/response.py +879 -0
  1099. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py +49 -0
  1100. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc +0 -0
  1101. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc +0 -0
  1102. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc +0 -0
  1103. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc +0 -0
  1104. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc +0 -0
  1105. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc +0 -0
  1106. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc +0 -0
  1107. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc +0 -0
  1108. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc +0 -0
  1109. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc +0 -0
  1110. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc +0 -0
  1111. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc +0 -0
  1112. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc +0 -0
  1113. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/connection.py +149 -0
  1114. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py +57 -0
  1115. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/queue.py +22 -0
  1116. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/request.py +137 -0
  1117. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/response.py +107 -0
  1118. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/retry.py +622 -0
  1119. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py +504 -0
  1120. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
  1121. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py +221 -0
  1122. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py +271 -0
  1123. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/url.py +435 -0
  1124. package/python/.venv/Lib/site-packages/pip/_vendor/urllib3/util/wait.py +152 -0
  1125. package/python/.venv/Lib/site-packages/pip/_vendor/vendor.txt +18 -0
  1126. package/python/.venv/Lib/site-packages/pip/py.typed +4 -0
  1127. package/python/.venv/Lib/site-packages/pip-25.0.1.dist-info/AUTHORS.txt +806 -0
  1128. package/python/.venv/Lib/site-packages/pip-25.0.1.dist-info/INSTALLER +1 -0
  1129. package/python/.venv/Lib/site-packages/pip-25.0.1.dist-info/LICENSE.txt +20 -0
  1130. package/python/.venv/Lib/site-packages/pip-25.0.1.dist-info/METADATA +90 -0
  1131. package/python/.venv/Lib/site-packages/pip-25.0.1.dist-info/RECORD +854 -0
  1132. package/python/.venv/Lib/site-packages/pip-25.0.1.dist-info/REQUESTED +0 -0
  1133. package/python/.venv/Lib/site-packages/pip-25.0.1.dist-info/WHEEL +5 -0
  1134. package/python/.venv/Lib/site-packages/pip-25.0.1.dist-info/entry_points.txt +3 -0
  1135. package/python/.venv/Lib/site-packages/pip-25.0.1.dist-info/top_level.txt +1 -0
  1136. package/python/.venv/Lib/site-packages/typing_extensions-4.15.0.dist-info/INSTALLER +1 -0
  1137. package/python/.venv/Lib/site-packages/typing_extensions-4.15.0.dist-info/METADATA +72 -0
  1138. package/python/.venv/Lib/site-packages/typing_extensions-4.15.0.dist-info/RECORD +7 -0
  1139. package/python/.venv/Lib/site-packages/typing_extensions-4.15.0.dist-info/WHEEL +4 -0
  1140. package/python/.venv/Lib/site-packages/typing_extensions-4.15.0.dist-info/licenses/LICENSE +279 -0
  1141. package/python/.venv/Lib/site-packages/typing_extensions.py +4317 -0
  1142. package/python/.venv/Scripts/Activate.ps1 +528 -0
  1143. package/python/.venv/Scripts/activate +76 -0
  1144. package/python/.venv/Scripts/activate.bat +34 -0
  1145. package/python/.venv/Scripts/deactivate.bat +22 -0
  1146. package/python/.venv/Scripts/httpx.exe +0 -0
  1147. package/python/.venv/Scripts/pip.exe +0 -0
  1148. package/python/.venv/Scripts/pip3.12.exe +0 -0
  1149. package/python/.venv/Scripts/pip3.exe +0 -0
  1150. package/python/.venv/Scripts/python.exe +0 -0
  1151. package/python/.venv/Scripts/pythonw.exe +0 -0
  1152. package/python/.venv/pyvenv.cfg +5 -0
  1153. package/python/__pycache__/builder.cpython-312.pyc +0 -0
  1154. package/python/__pycache__/config.cpython-312.pyc +0 -0
  1155. package/python/builder.py +225 -0
  1156. package/python/cli.py +787 -0
  1157. package/python/config.py +82 -0
  1158. package/scripts/runner.js +145 -0
@@ -0,0 +1,1277 @@
1
+ from __future__ import annotations
2
+
3
+ import codecs
4
+ import datetime
5
+ import email.message
6
+ import json as jsonlib
7
+ import re
8
+ import typing
9
+ import urllib.request
10
+ from collections.abc import Mapping
11
+ from http.cookiejar import Cookie, CookieJar
12
+
13
+ from ._content import ByteStream, UnattachedStream, encode_request, encode_response
14
+ from ._decoders import (
15
+ SUPPORTED_DECODERS,
16
+ ByteChunker,
17
+ ContentDecoder,
18
+ IdentityDecoder,
19
+ LineDecoder,
20
+ MultiDecoder,
21
+ TextChunker,
22
+ TextDecoder,
23
+ )
24
+ from ._exceptions import (
25
+ CookieConflict,
26
+ HTTPStatusError,
27
+ RequestNotRead,
28
+ ResponseNotRead,
29
+ StreamClosed,
30
+ StreamConsumed,
31
+ request_context,
32
+ )
33
+ from ._multipart import get_multipart_boundary_from_content_type
34
+ from ._status_codes import codes
35
+ from ._types import (
36
+ AsyncByteStream,
37
+ CookieTypes,
38
+ HeaderTypes,
39
+ QueryParamTypes,
40
+ RequestContent,
41
+ RequestData,
42
+ RequestExtensions,
43
+ RequestFiles,
44
+ ResponseContent,
45
+ ResponseExtensions,
46
+ SyncByteStream,
47
+ )
48
+ from ._urls import URL
49
+ from ._utils import to_bytes_or_str, to_str
50
+
51
+ __all__ = ["Cookies", "Headers", "Request", "Response"]
52
+
53
+ SENSITIVE_HEADERS = {"authorization", "proxy-authorization"}
54
+
55
+
56
+ def _is_known_encoding(encoding: str) -> bool:
57
+ """
58
+ Return `True` if `encoding` is a known codec.
59
+ """
60
+ try:
61
+ codecs.lookup(encoding)
62
+ except LookupError:
63
+ return False
64
+ return True
65
+
66
+
67
+ def _normalize_header_key(key: str | bytes, encoding: str | None = None) -> bytes:
68
+ """
69
+ Coerce str/bytes into a strictly byte-wise HTTP header key.
70
+ """
71
+ return key if isinstance(key, bytes) else key.encode(encoding or "ascii")
72
+
73
+
74
+ def _normalize_header_value(value: str | bytes, encoding: str | None = None) -> bytes:
75
+ """
76
+ Coerce str/bytes into a strictly byte-wise HTTP header value.
77
+ """
78
+ if isinstance(value, bytes):
79
+ return value
80
+ if not isinstance(value, str):
81
+ raise TypeError(f"Header value must be str or bytes, not {type(value)}")
82
+ return value.encode(encoding or "ascii")
83
+
84
+
85
+ def _parse_content_type_charset(content_type: str) -> str | None:
86
+ # We used to use `cgi.parse_header()` here, but `cgi` became a dead battery.
87
+ # See: https://peps.python.org/pep-0594/#cgi
88
+ msg = email.message.Message()
89
+ msg["content-type"] = content_type
90
+ return msg.get_content_charset(failobj=None)
91
+
92
+
93
+ def _parse_header_links(value: str) -> list[dict[str, str]]:
94
+ """
95
+ Returns a list of parsed link headers, for more info see:
96
+ https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Link
97
+ The generic syntax of those is:
98
+ Link: < uri-reference >; param1=value1; param2="value2"
99
+ So for instance:
100
+ Link; '<http:/.../front.jpeg>; type="image/jpeg",<http://.../back.jpeg>;'
101
+ would return
102
+ [
103
+ {"url": "http:/.../front.jpeg", "type": "image/jpeg"},
104
+ {"url": "http://.../back.jpeg"},
105
+ ]
106
+ :param value: HTTP Link entity-header field
107
+ :return: list of parsed link headers
108
+ """
109
+ links: list[dict[str, str]] = []
110
+ replace_chars = " '\""
111
+ value = value.strip(replace_chars)
112
+ if not value:
113
+ return links
114
+ for val in re.split(", *<", value):
115
+ try:
116
+ url, params = val.split(";", 1)
117
+ except ValueError:
118
+ url, params = val, ""
119
+ link = {"url": url.strip("<> '\"")}
120
+ for param in params.split(";"):
121
+ try:
122
+ key, value = param.split("=")
123
+ except ValueError:
124
+ break
125
+ link[key.strip(replace_chars)] = value.strip(replace_chars)
126
+ links.append(link)
127
+ return links
128
+
129
+
130
+ def _obfuscate_sensitive_headers(
131
+ items: typing.Iterable[tuple[typing.AnyStr, typing.AnyStr]],
132
+ ) -> typing.Iterator[tuple[typing.AnyStr, typing.AnyStr]]:
133
+ for k, v in items:
134
+ if to_str(k.lower()) in SENSITIVE_HEADERS:
135
+ v = to_bytes_or_str("[secure]", match_type_of=v)
136
+ yield k, v
137
+
138
+
139
+ class Headers(typing.MutableMapping[str, str]):
140
+ """
141
+ HTTP headers, as a case-insensitive multi-dict.
142
+ """
143
+
144
+ def __init__(
145
+ self,
146
+ headers: HeaderTypes | None = None,
147
+ encoding: str | None = None,
148
+ ) -> None:
149
+ self._list = [] # type: typing.List[typing.Tuple[bytes, bytes, bytes]]
150
+
151
+ if isinstance(headers, Headers):
152
+ self._list = list(headers._list)
153
+ elif isinstance(headers, Mapping):
154
+ for k, v in headers.items():
155
+ bytes_key = _normalize_header_key(k, encoding)
156
+ bytes_value = _normalize_header_value(v, encoding)
157
+ self._list.append((bytes_key, bytes_key.lower(), bytes_value))
158
+ elif headers is not None:
159
+ for k, v in headers:
160
+ bytes_key = _normalize_header_key(k, encoding)
161
+ bytes_value = _normalize_header_value(v, encoding)
162
+ self._list.append((bytes_key, bytes_key.lower(), bytes_value))
163
+
164
+ self._encoding = encoding
165
+
166
+ @property
167
+ def encoding(self) -> str:
168
+ """
169
+ Header encoding is mandated as ascii, but we allow fallbacks to utf-8
170
+ or iso-8859-1.
171
+ """
172
+ if self._encoding is None:
173
+ for encoding in ["ascii", "utf-8"]:
174
+ for key, value in self.raw:
175
+ try:
176
+ key.decode(encoding)
177
+ value.decode(encoding)
178
+ except UnicodeDecodeError:
179
+ break
180
+ else:
181
+ # The else block runs if 'break' did not occur, meaning
182
+ # all values fitted the encoding.
183
+ self._encoding = encoding
184
+ break
185
+ else:
186
+ # The ISO-8859-1 encoding covers all 256 code points in a byte,
187
+ # so will never raise decode errors.
188
+ self._encoding = "iso-8859-1"
189
+ return self._encoding
190
+
191
+ @encoding.setter
192
+ def encoding(self, value: str) -> None:
193
+ self._encoding = value
194
+
195
+ @property
196
+ def raw(self) -> list[tuple[bytes, bytes]]:
197
+ """
198
+ Returns a list of the raw header items, as byte pairs.
199
+ """
200
+ return [(raw_key, value) for raw_key, _, value in self._list]
201
+
202
+ def keys(self) -> typing.KeysView[str]:
203
+ return {key.decode(self.encoding): None for _, key, value in self._list}.keys()
204
+
205
+ def values(self) -> typing.ValuesView[str]:
206
+ values_dict: dict[str, str] = {}
207
+ for _, key, value in self._list:
208
+ str_key = key.decode(self.encoding)
209
+ str_value = value.decode(self.encoding)
210
+ if str_key in values_dict:
211
+ values_dict[str_key] += f", {str_value}"
212
+ else:
213
+ values_dict[str_key] = str_value
214
+ return values_dict.values()
215
+
216
+ def items(self) -> typing.ItemsView[str, str]:
217
+ """
218
+ Return `(key, value)` items of headers. Concatenate headers
219
+ into a single comma separated value when a key occurs multiple times.
220
+ """
221
+ values_dict: dict[str, str] = {}
222
+ for _, key, value in self._list:
223
+ str_key = key.decode(self.encoding)
224
+ str_value = value.decode(self.encoding)
225
+ if str_key in values_dict:
226
+ values_dict[str_key] += f", {str_value}"
227
+ else:
228
+ values_dict[str_key] = str_value
229
+ return values_dict.items()
230
+
231
+ def multi_items(self) -> list[tuple[str, str]]:
232
+ """
233
+ Return a list of `(key, value)` pairs of headers. Allow multiple
234
+ occurrences of the same key without concatenating into a single
235
+ comma separated value.
236
+ """
237
+ return [
238
+ (key.decode(self.encoding), value.decode(self.encoding))
239
+ for _, key, value in self._list
240
+ ]
241
+
242
+ def get(self, key: str, default: typing.Any = None) -> typing.Any:
243
+ """
244
+ Return a header value. If multiple occurrences of the header occur
245
+ then concatenate them together with commas.
246
+ """
247
+ try:
248
+ return self[key]
249
+ except KeyError:
250
+ return default
251
+
252
+ def get_list(self, key: str, split_commas: bool = False) -> list[str]:
253
+ """
254
+ Return a list of all header values for a given key.
255
+ If `split_commas=True` is passed, then any comma separated header
256
+ values are split into multiple return strings.
257
+ """
258
+ get_header_key = key.lower().encode(self.encoding)
259
+
260
+ values = [
261
+ item_value.decode(self.encoding)
262
+ for _, item_key, item_value in self._list
263
+ if item_key.lower() == get_header_key
264
+ ]
265
+
266
+ if not split_commas:
267
+ return values
268
+
269
+ split_values = []
270
+ for value in values:
271
+ split_values.extend([item.strip() for item in value.split(",")])
272
+ return split_values
273
+
274
+ def update(self, headers: HeaderTypes | None = None) -> None: # type: ignore
275
+ headers = Headers(headers)
276
+ for key in headers.keys():
277
+ if key in self:
278
+ self.pop(key)
279
+ self._list.extend(headers._list)
280
+
281
+ def copy(self) -> Headers:
282
+ return Headers(self, encoding=self.encoding)
283
+
284
+ def __getitem__(self, key: str) -> str:
285
+ """
286
+ Return a single header value.
287
+
288
+ If there are multiple headers with the same key, then we concatenate
289
+ them with commas. See: https://tools.ietf.org/html/rfc7230#section-3.2.2
290
+ """
291
+ normalized_key = key.lower().encode(self.encoding)
292
+
293
+ items = [
294
+ header_value.decode(self.encoding)
295
+ for _, header_key, header_value in self._list
296
+ if header_key == normalized_key
297
+ ]
298
+
299
+ if items:
300
+ return ", ".join(items)
301
+
302
+ raise KeyError(key)
303
+
304
+ def __setitem__(self, key: str, value: str) -> None:
305
+ """
306
+ Set the header `key` to `value`, removing any duplicate entries.
307
+ Retains insertion order.
308
+ """
309
+ set_key = key.encode(self._encoding or "utf-8")
310
+ set_value = value.encode(self._encoding or "utf-8")
311
+ lookup_key = set_key.lower()
312
+
313
+ found_indexes = [
314
+ idx
315
+ for idx, (_, item_key, _) in enumerate(self._list)
316
+ if item_key == lookup_key
317
+ ]
318
+
319
+ for idx in reversed(found_indexes[1:]):
320
+ del self._list[idx]
321
+
322
+ if found_indexes:
323
+ idx = found_indexes[0]
324
+ self._list[idx] = (set_key, lookup_key, set_value)
325
+ else:
326
+ self._list.append((set_key, lookup_key, set_value))
327
+
328
+ def __delitem__(self, key: str) -> None:
329
+ """
330
+ Remove the header `key`.
331
+ """
332
+ del_key = key.lower().encode(self.encoding)
333
+
334
+ pop_indexes = [
335
+ idx
336
+ for idx, (_, item_key, _) in enumerate(self._list)
337
+ if item_key.lower() == del_key
338
+ ]
339
+
340
+ if not pop_indexes:
341
+ raise KeyError(key)
342
+
343
+ for idx in reversed(pop_indexes):
344
+ del self._list[idx]
345
+
346
+ def __contains__(self, key: typing.Any) -> bool:
347
+ header_key = key.lower().encode(self.encoding)
348
+ return header_key in [key for _, key, _ in self._list]
349
+
350
+ def __iter__(self) -> typing.Iterator[typing.Any]:
351
+ return iter(self.keys())
352
+
353
+ def __len__(self) -> int:
354
+ return len(self._list)
355
+
356
+ def __eq__(self, other: typing.Any) -> bool:
357
+ try:
358
+ other_headers = Headers(other)
359
+ except ValueError:
360
+ return False
361
+
362
+ self_list = [(key, value) for _, key, value in self._list]
363
+ other_list = [(key, value) for _, key, value in other_headers._list]
364
+ return sorted(self_list) == sorted(other_list)
365
+
366
+ def __repr__(self) -> str:
367
+ class_name = self.__class__.__name__
368
+
369
+ encoding_str = ""
370
+ if self.encoding != "ascii":
371
+ encoding_str = f", encoding={self.encoding!r}"
372
+
373
+ as_list = list(_obfuscate_sensitive_headers(self.multi_items()))
374
+ as_dict = dict(as_list)
375
+
376
+ no_duplicate_keys = len(as_dict) == len(as_list)
377
+ if no_duplicate_keys:
378
+ return f"{class_name}({as_dict!r}{encoding_str})"
379
+ return f"{class_name}({as_list!r}{encoding_str})"
380
+
381
+
382
+ class Request:
383
+ def __init__(
384
+ self,
385
+ method: str,
386
+ url: URL | str,
387
+ *,
388
+ params: QueryParamTypes | None = None,
389
+ headers: HeaderTypes | None = None,
390
+ cookies: CookieTypes | None = None,
391
+ content: RequestContent | None = None,
392
+ data: RequestData | None = None,
393
+ files: RequestFiles | None = None,
394
+ json: typing.Any | None = None,
395
+ stream: SyncByteStream | AsyncByteStream | None = None,
396
+ extensions: RequestExtensions | None = None,
397
+ ) -> None:
398
+ self.method = method.upper()
399
+ self.url = URL(url) if params is None else URL(url, params=params)
400
+ self.headers = Headers(headers)
401
+ self.extensions = {} if extensions is None else dict(extensions)
402
+
403
+ if cookies:
404
+ Cookies(cookies).set_cookie_header(self)
405
+
406
+ if stream is None:
407
+ content_type: str | None = self.headers.get("content-type")
408
+ headers, stream = encode_request(
409
+ content=content,
410
+ data=data,
411
+ files=files,
412
+ json=json,
413
+ boundary=get_multipart_boundary_from_content_type(
414
+ content_type=content_type.encode(self.headers.encoding)
415
+ if content_type
416
+ else None
417
+ ),
418
+ )
419
+ self._prepare(headers)
420
+ self.stream = stream
421
+ # Load the request body, except for streaming content.
422
+ if isinstance(stream, ByteStream):
423
+ self.read()
424
+ else:
425
+ # There's an important distinction between `Request(content=...)`,
426
+ # and `Request(stream=...)`.
427
+ #
428
+ # Using `content=...` implies automatically populated `Host` and content
429
+ # headers, of either `Content-Length: ...` or `Transfer-Encoding: chunked`.
430
+ #
431
+ # Using `stream=...` will not automatically include *any*
432
+ # auto-populated headers.
433
+ #
434
+ # As an end-user you don't really need `stream=...`. It's only
435
+ # useful when:
436
+ #
437
+ # * Preserving the request stream when copying requests, eg for redirects.
438
+ # * Creating request instances on the *server-side* of the transport API.
439
+ self.stream = stream
440
+
441
+ def _prepare(self, default_headers: dict[str, str]) -> None:
442
+ for key, value in default_headers.items():
443
+ # Ignore Transfer-Encoding if the Content-Length has been set explicitly.
444
+ if key.lower() == "transfer-encoding" and "Content-Length" in self.headers:
445
+ continue
446
+ self.headers.setdefault(key, value)
447
+
448
+ auto_headers: list[tuple[bytes, bytes]] = []
449
+
450
+ has_host = "Host" in self.headers
451
+ has_content_length = (
452
+ "Content-Length" in self.headers or "Transfer-Encoding" in self.headers
453
+ )
454
+
455
+ if not has_host and self.url.host:
456
+ auto_headers.append((b"Host", self.url.netloc))
457
+ if not has_content_length and self.method in ("POST", "PUT", "PATCH"):
458
+ auto_headers.append((b"Content-Length", b"0"))
459
+
460
+ self.headers = Headers(auto_headers + self.headers.raw)
461
+
462
+ @property
463
+ def content(self) -> bytes:
464
+ if not hasattr(self, "_content"):
465
+ raise RequestNotRead()
466
+ return self._content
467
+
468
+ def read(self) -> bytes:
469
+ """
470
+ Read and return the request content.
471
+ """
472
+ if not hasattr(self, "_content"):
473
+ assert isinstance(self.stream, typing.Iterable)
474
+ self._content = b"".join(self.stream)
475
+ if not isinstance(self.stream, ByteStream):
476
+ # If a streaming request has been read entirely into memory, then
477
+ # we can replace the stream with a raw bytes implementation,
478
+ # to ensure that any non-replayable streams can still be used.
479
+ self.stream = ByteStream(self._content)
480
+ return self._content
481
+
482
+ async def aread(self) -> bytes:
483
+ """
484
+ Read and return the request content.
485
+ """
486
+ if not hasattr(self, "_content"):
487
+ assert isinstance(self.stream, typing.AsyncIterable)
488
+ self._content = b"".join([part async for part in self.stream])
489
+ if not isinstance(self.stream, ByteStream):
490
+ # If a streaming request has been read entirely into memory, then
491
+ # we can replace the stream with a raw bytes implementation,
492
+ # to ensure that any non-replayable streams can still be used.
493
+ self.stream = ByteStream(self._content)
494
+ return self._content
495
+
496
+ def __repr__(self) -> str:
497
+ class_name = self.__class__.__name__
498
+ url = str(self.url)
499
+ return f"<{class_name}({self.method!r}, {url!r})>"
500
+
501
+ def __getstate__(self) -> dict[str, typing.Any]:
502
+ return {
503
+ name: value
504
+ for name, value in self.__dict__.items()
505
+ if name not in ["extensions", "stream"]
506
+ }
507
+
508
+ def __setstate__(self, state: dict[str, typing.Any]) -> None:
509
+ for name, value in state.items():
510
+ setattr(self, name, value)
511
+ self.extensions = {}
512
+ self.stream = UnattachedStream()
513
+
514
+
515
+ class Response:
516
+ def __init__(
517
+ self,
518
+ status_code: int,
519
+ *,
520
+ headers: HeaderTypes | None = None,
521
+ content: ResponseContent | None = None,
522
+ text: str | None = None,
523
+ html: str | None = None,
524
+ json: typing.Any = None,
525
+ stream: SyncByteStream | AsyncByteStream | None = None,
526
+ request: Request | None = None,
527
+ extensions: ResponseExtensions | None = None,
528
+ history: list[Response] | None = None,
529
+ default_encoding: str | typing.Callable[[bytes], str] = "utf-8",
530
+ ) -> None:
531
+ self.status_code = status_code
532
+ self.headers = Headers(headers)
533
+
534
+ self._request: Request | None = request
535
+
536
+ # When follow_redirects=False and a redirect is received,
537
+ # the client will set `response.next_request`.
538
+ self.next_request: Request | None = None
539
+
540
+ self.extensions = {} if extensions is None else dict(extensions)
541
+ self.history = [] if history is None else list(history)
542
+
543
+ self.is_closed = False
544
+ self.is_stream_consumed = False
545
+
546
+ self.default_encoding = default_encoding
547
+
548
+ if stream is None:
549
+ headers, stream = encode_response(content, text, html, json)
550
+ self._prepare(headers)
551
+ self.stream = stream
552
+ if isinstance(stream, ByteStream):
553
+ # Load the response body, except for streaming content.
554
+ self.read()
555
+ else:
556
+ # There's an important distinction between `Response(content=...)`,
557
+ # and `Response(stream=...)`.
558
+ #
559
+ # Using `content=...` implies automatically populated content headers,
560
+ # of either `Content-Length: ...` or `Transfer-Encoding: chunked`.
561
+ #
562
+ # Using `stream=...` will not automatically include any content headers.
563
+ #
564
+ # As an end-user you don't really need `stream=...`. It's only
565
+ # useful when creating response instances having received a stream
566
+ # from the transport API.
567
+ self.stream = stream
568
+
569
+ self._num_bytes_downloaded = 0
570
+
571
+ def _prepare(self, default_headers: dict[str, str]) -> None:
572
+ for key, value in default_headers.items():
573
+ # Ignore Transfer-Encoding if the Content-Length has been set explicitly.
574
+ if key.lower() == "transfer-encoding" and "content-length" in self.headers:
575
+ continue
576
+ self.headers.setdefault(key, value)
577
+
578
+ @property
579
+ def elapsed(self) -> datetime.timedelta:
580
+ """
581
+ Returns the time taken for the complete request/response
582
+ cycle to complete.
583
+ """
584
+ if not hasattr(self, "_elapsed"):
585
+ raise RuntimeError(
586
+ "'.elapsed' may only be accessed after the response "
587
+ "has been read or closed."
588
+ )
589
+ return self._elapsed
590
+
591
+ @elapsed.setter
592
+ def elapsed(self, elapsed: datetime.timedelta) -> None:
593
+ self._elapsed = elapsed
594
+
595
+ @property
596
+ def request(self) -> Request:
597
+ """
598
+ Returns the request instance associated to the current response.
599
+ """
600
+ if self._request is None:
601
+ raise RuntimeError(
602
+ "The request instance has not been set on this response."
603
+ )
604
+ return self._request
605
+
606
+ @request.setter
607
+ def request(self, value: Request) -> None:
608
+ self._request = value
609
+
610
+ @property
611
+ def http_version(self) -> str:
612
+ try:
613
+ http_version: bytes = self.extensions["http_version"]
614
+ except KeyError:
615
+ return "HTTP/1.1"
616
+ else:
617
+ return http_version.decode("ascii", errors="ignore")
618
+
619
+ @property
620
+ def reason_phrase(self) -> str:
621
+ try:
622
+ reason_phrase: bytes = self.extensions["reason_phrase"]
623
+ except KeyError:
624
+ return codes.get_reason_phrase(self.status_code)
625
+ else:
626
+ return reason_phrase.decode("ascii", errors="ignore")
627
+
628
+ @property
629
+ def url(self) -> URL:
630
+ """
631
+ Returns the URL for which the request was made.
632
+ """
633
+ return self.request.url
634
+
635
+ @property
636
+ def content(self) -> bytes:
637
+ if not hasattr(self, "_content"):
638
+ raise ResponseNotRead()
639
+ return self._content
640
+
641
+ @property
642
+ def text(self) -> str:
643
+ if not hasattr(self, "_text"):
644
+ content = self.content
645
+ if not content:
646
+ self._text = ""
647
+ else:
648
+ decoder = TextDecoder(encoding=self.encoding or "utf-8")
649
+ self._text = "".join([decoder.decode(self.content), decoder.flush()])
650
+ return self._text
651
+
652
+ @property
653
+ def encoding(self) -> str | None:
654
+ """
655
+ Return an encoding to use for decoding the byte content into text.
656
+ The priority for determining this is given by...
657
+
658
+ * `.encoding = <>` has been set explicitly.
659
+ * The encoding as specified by the charset parameter in the Content-Type header.
660
+ * The encoding as determined by `default_encoding`, which may either be
661
+ a string like "utf-8" indicating the encoding to use, or may be a callable
662
+ which enables charset autodetection.
663
+ """
664
+ if not hasattr(self, "_encoding"):
665
+ encoding = self.charset_encoding
666
+ if encoding is None or not _is_known_encoding(encoding):
667
+ if isinstance(self.default_encoding, str):
668
+ encoding = self.default_encoding
669
+ elif hasattr(self, "_content"):
670
+ encoding = self.default_encoding(self._content)
671
+ self._encoding = encoding or "utf-8"
672
+ return self._encoding
673
+
674
+ @encoding.setter
675
+ def encoding(self, value: str) -> None:
676
+ """
677
+ Set the encoding to use for decoding the byte content into text.
678
+
679
+ If the `text` attribute has been accessed, attempting to set the
680
+ encoding will throw a ValueError.
681
+ """
682
+ if hasattr(self, "_text"):
683
+ raise ValueError(
684
+ "Setting encoding after `text` has been accessed is not allowed."
685
+ )
686
+ self._encoding = value
687
+
688
+ @property
689
+ def charset_encoding(self) -> str | None:
690
+ """
691
+ Return the encoding, as specified by the Content-Type header.
692
+ """
693
+ content_type = self.headers.get("Content-Type")
694
+ if content_type is None:
695
+ return None
696
+
697
+ return _parse_content_type_charset(content_type)
698
+
699
+ def _get_content_decoder(self) -> ContentDecoder:
700
+ """
701
+ Returns a decoder instance which can be used to decode the raw byte
702
+ content, depending on the Content-Encoding used in the response.
703
+ """
704
+ if not hasattr(self, "_decoder"):
705
+ decoders: list[ContentDecoder] = []
706
+ values = self.headers.get_list("content-encoding", split_commas=True)
707
+ for value in values:
708
+ value = value.strip().lower()
709
+ try:
710
+ decoder_cls = SUPPORTED_DECODERS[value]
711
+ decoders.append(decoder_cls())
712
+ except KeyError:
713
+ continue
714
+
715
+ if len(decoders) == 1:
716
+ self._decoder = decoders[0]
717
+ elif len(decoders) > 1:
718
+ self._decoder = MultiDecoder(children=decoders)
719
+ else:
720
+ self._decoder = IdentityDecoder()
721
+
722
+ return self._decoder
723
+
724
+ @property
725
+ def is_informational(self) -> bool:
726
+ """
727
+ A property which is `True` for 1xx status codes, `False` otherwise.
728
+ """
729
+ return codes.is_informational(self.status_code)
730
+
731
+ @property
732
+ def is_success(self) -> bool:
733
+ """
734
+ A property which is `True` for 2xx status codes, `False` otherwise.
735
+ """
736
+ return codes.is_success(self.status_code)
737
+
738
+ @property
739
+ def is_redirect(self) -> bool:
740
+ """
741
+ A property which is `True` for 3xx status codes, `False` otherwise.
742
+
743
+ Note that not all responses with a 3xx status code indicate a URL redirect.
744
+
745
+ Use `response.has_redirect_location` to determine responses with a properly
746
+ formed URL redirection.
747
+ """
748
+ return codes.is_redirect(self.status_code)
749
+
750
+ @property
751
+ def is_client_error(self) -> bool:
752
+ """
753
+ A property which is `True` for 4xx status codes, `False` otherwise.
754
+ """
755
+ return codes.is_client_error(self.status_code)
756
+
757
+ @property
758
+ def is_server_error(self) -> bool:
759
+ """
760
+ A property which is `True` for 5xx status codes, `False` otherwise.
761
+ """
762
+ return codes.is_server_error(self.status_code)
763
+
764
+ @property
765
+ def is_error(self) -> bool:
766
+ """
767
+ A property which is `True` for 4xx and 5xx status codes, `False` otherwise.
768
+ """
769
+ return codes.is_error(self.status_code)
770
+
771
+ @property
772
+ def has_redirect_location(self) -> bool:
773
+ """
774
+ Returns True for 3xx responses with a properly formed URL redirection,
775
+ `False` otherwise.
776
+ """
777
+ return (
778
+ self.status_code
779
+ in (
780
+ # 301 (Cacheable redirect. Method may change to GET.)
781
+ codes.MOVED_PERMANENTLY,
782
+ # 302 (Uncacheable redirect. Method may change to GET.)
783
+ codes.FOUND,
784
+ # 303 (Client should make a GET or HEAD request.)
785
+ codes.SEE_OTHER,
786
+ # 307 (Equiv. 302, but retain method)
787
+ codes.TEMPORARY_REDIRECT,
788
+ # 308 (Equiv. 301, but retain method)
789
+ codes.PERMANENT_REDIRECT,
790
+ )
791
+ and "Location" in self.headers
792
+ )
793
+
794
+ def raise_for_status(self) -> Response:
795
+ """
796
+ Raise the `HTTPStatusError` if one occurred.
797
+ """
798
+ request = self._request
799
+ if request is None:
800
+ raise RuntimeError(
801
+ "Cannot call `raise_for_status` as the request "
802
+ "instance has not been set on this response."
803
+ )
804
+
805
+ if self.is_success:
806
+ return self
807
+
808
+ if self.has_redirect_location:
809
+ message = (
810
+ "{error_type} '{0.status_code} {0.reason_phrase}' for url '{0.url}'\n"
811
+ "Redirect location: '{0.headers[location]}'\n"
812
+ "For more information check: https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/{0.status_code}"
813
+ )
814
+ else:
815
+ message = (
816
+ "{error_type} '{0.status_code} {0.reason_phrase}' for url '{0.url}'\n"
817
+ "For more information check: https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/{0.status_code}"
818
+ )
819
+
820
+ status_class = self.status_code // 100
821
+ error_types = {
822
+ 1: "Informational response",
823
+ 3: "Redirect response",
824
+ 4: "Client error",
825
+ 5: "Server error",
826
+ }
827
+ error_type = error_types.get(status_class, "Invalid status code")
828
+ message = message.format(self, error_type=error_type)
829
+ raise HTTPStatusError(message, request=request, response=self)
830
+
831
+ def json(self, **kwargs: typing.Any) -> typing.Any:
832
+ return jsonlib.loads(self.content, **kwargs)
833
+
834
+ @property
835
+ def cookies(self) -> Cookies:
836
+ if not hasattr(self, "_cookies"):
837
+ self._cookies = Cookies()
838
+ self._cookies.extract_cookies(self)
839
+ return self._cookies
840
+
841
+ @property
842
+ def links(self) -> dict[str | None, dict[str, str]]:
843
+ """
844
+ Returns the parsed header links of the response, if any
845
+ """
846
+ header = self.headers.get("link")
847
+ if header is None:
848
+ return {}
849
+
850
+ return {
851
+ (link.get("rel") or link.get("url")): link
852
+ for link in _parse_header_links(header)
853
+ }
854
+
855
+ @property
856
+ def num_bytes_downloaded(self) -> int:
857
+ return self._num_bytes_downloaded
858
+
859
+ def __repr__(self) -> str:
860
+ return f"<Response [{self.status_code} {self.reason_phrase}]>"
861
+
862
+ def __getstate__(self) -> dict[str, typing.Any]:
863
+ return {
864
+ name: value
865
+ for name, value in self.__dict__.items()
866
+ if name not in ["extensions", "stream", "is_closed", "_decoder"]
867
+ }
868
+
869
+ def __setstate__(self, state: dict[str, typing.Any]) -> None:
870
+ for name, value in state.items():
871
+ setattr(self, name, value)
872
+ self.is_closed = True
873
+ self.extensions = {}
874
+ self.stream = UnattachedStream()
875
+
876
+ def read(self) -> bytes:
877
+ """
878
+ Read and return the response content.
879
+ """
880
+ if not hasattr(self, "_content"):
881
+ self._content = b"".join(self.iter_bytes())
882
+ return self._content
883
+
884
+ def iter_bytes(self, chunk_size: int | None = None) -> typing.Iterator[bytes]:
885
+ """
886
+ A byte-iterator over the decoded response content.
887
+ This allows us to handle gzip, deflate, brotli, and zstd encoded responses.
888
+ """
889
+ if hasattr(self, "_content"):
890
+ chunk_size = len(self._content) if chunk_size is None else chunk_size
891
+ for i in range(0, len(self._content), max(chunk_size, 1)):
892
+ yield self._content[i : i + chunk_size]
893
+ else:
894
+ decoder = self._get_content_decoder()
895
+ chunker = ByteChunker(chunk_size=chunk_size)
896
+ with request_context(request=self._request):
897
+ for raw_bytes in self.iter_raw():
898
+ decoded = decoder.decode(raw_bytes)
899
+ for chunk in chunker.decode(decoded):
900
+ yield chunk
901
+ decoded = decoder.flush()
902
+ for chunk in chunker.decode(decoded):
903
+ yield chunk # pragma: no cover
904
+ for chunk in chunker.flush():
905
+ yield chunk
906
+
907
+ def iter_text(self, chunk_size: int | None = None) -> typing.Iterator[str]:
908
+ """
909
+ A str-iterator over the decoded response content
910
+ that handles both gzip, deflate, etc but also detects the content's
911
+ string encoding.
912
+ """
913
+ decoder = TextDecoder(encoding=self.encoding or "utf-8")
914
+ chunker = TextChunker(chunk_size=chunk_size)
915
+ with request_context(request=self._request):
916
+ for byte_content in self.iter_bytes():
917
+ text_content = decoder.decode(byte_content)
918
+ for chunk in chunker.decode(text_content):
919
+ yield chunk
920
+ text_content = decoder.flush()
921
+ for chunk in chunker.decode(text_content):
922
+ yield chunk # pragma: no cover
923
+ for chunk in chunker.flush():
924
+ yield chunk
925
+
926
+ def iter_lines(self) -> typing.Iterator[str]:
927
+ decoder = LineDecoder()
928
+ with request_context(request=self._request):
929
+ for text in self.iter_text():
930
+ for line in decoder.decode(text):
931
+ yield line
932
+ for line in decoder.flush():
933
+ yield line
934
+
935
+ def iter_raw(self, chunk_size: int | None = None) -> typing.Iterator[bytes]:
936
+ """
937
+ A byte-iterator over the raw response content.
938
+ """
939
+ if self.is_stream_consumed:
940
+ raise StreamConsumed()
941
+ if self.is_closed:
942
+ raise StreamClosed()
943
+ if not isinstance(self.stream, SyncByteStream):
944
+ raise RuntimeError("Attempted to call a sync iterator on an async stream.")
945
+
946
+ self.is_stream_consumed = True
947
+ self._num_bytes_downloaded = 0
948
+ chunker = ByteChunker(chunk_size=chunk_size)
949
+
950
+ with request_context(request=self._request):
951
+ for raw_stream_bytes in self.stream:
952
+ self._num_bytes_downloaded += len(raw_stream_bytes)
953
+ for chunk in chunker.decode(raw_stream_bytes):
954
+ yield chunk
955
+
956
+ for chunk in chunker.flush():
957
+ yield chunk
958
+
959
+ self.close()
960
+
961
+ def close(self) -> None:
962
+ """
963
+ Close the response and release the connection.
964
+ Automatically called if the response body is read to completion.
965
+ """
966
+ if not isinstance(self.stream, SyncByteStream):
967
+ raise RuntimeError("Attempted to call an sync close on an async stream.")
968
+
969
+ if not self.is_closed:
970
+ self.is_closed = True
971
+ with request_context(request=self._request):
972
+ self.stream.close()
973
+
974
+ async def aread(self) -> bytes:
975
+ """
976
+ Read and return the response content.
977
+ """
978
+ if not hasattr(self, "_content"):
979
+ self._content = b"".join([part async for part in self.aiter_bytes()])
980
+ return self._content
981
+
982
+ async def aiter_bytes(
983
+ self, chunk_size: int | None = None
984
+ ) -> typing.AsyncIterator[bytes]:
985
+ """
986
+ A byte-iterator over the decoded response content.
987
+ This allows us to handle gzip, deflate, brotli, and zstd encoded responses.
988
+ """
989
+ if hasattr(self, "_content"):
990
+ chunk_size = len(self._content) if chunk_size is None else chunk_size
991
+ for i in range(0, len(self._content), max(chunk_size, 1)):
992
+ yield self._content[i : i + chunk_size]
993
+ else:
994
+ decoder = self._get_content_decoder()
995
+ chunker = ByteChunker(chunk_size=chunk_size)
996
+ with request_context(request=self._request):
997
+ async for raw_bytes in self.aiter_raw():
998
+ decoded = decoder.decode(raw_bytes)
999
+ for chunk in chunker.decode(decoded):
1000
+ yield chunk
1001
+ decoded = decoder.flush()
1002
+ for chunk in chunker.decode(decoded):
1003
+ yield chunk # pragma: no cover
1004
+ for chunk in chunker.flush():
1005
+ yield chunk
1006
+
1007
+ async def aiter_text(
1008
+ self, chunk_size: int | None = None
1009
+ ) -> typing.AsyncIterator[str]:
1010
+ """
1011
+ A str-iterator over the decoded response content
1012
+ that handles both gzip, deflate, etc but also detects the content's
1013
+ string encoding.
1014
+ """
1015
+ decoder = TextDecoder(encoding=self.encoding or "utf-8")
1016
+ chunker = TextChunker(chunk_size=chunk_size)
1017
+ with request_context(request=self._request):
1018
+ async for byte_content in self.aiter_bytes():
1019
+ text_content = decoder.decode(byte_content)
1020
+ for chunk in chunker.decode(text_content):
1021
+ yield chunk
1022
+ text_content = decoder.flush()
1023
+ for chunk in chunker.decode(text_content):
1024
+ yield chunk # pragma: no cover
1025
+ for chunk in chunker.flush():
1026
+ yield chunk
1027
+
1028
+ async def aiter_lines(self) -> typing.AsyncIterator[str]:
1029
+ decoder = LineDecoder()
1030
+ with request_context(request=self._request):
1031
+ async for text in self.aiter_text():
1032
+ for line in decoder.decode(text):
1033
+ yield line
1034
+ for line in decoder.flush():
1035
+ yield line
1036
+
1037
+ async def aiter_raw(
1038
+ self, chunk_size: int | None = None
1039
+ ) -> typing.AsyncIterator[bytes]:
1040
+ """
1041
+ A byte-iterator over the raw response content.
1042
+ """
1043
+ if self.is_stream_consumed:
1044
+ raise StreamConsumed()
1045
+ if self.is_closed:
1046
+ raise StreamClosed()
1047
+ if not isinstance(self.stream, AsyncByteStream):
1048
+ raise RuntimeError("Attempted to call an async iterator on an sync stream.")
1049
+
1050
+ self.is_stream_consumed = True
1051
+ self._num_bytes_downloaded = 0
1052
+ chunker = ByteChunker(chunk_size=chunk_size)
1053
+
1054
+ with request_context(request=self._request):
1055
+ async for raw_stream_bytes in self.stream:
1056
+ self._num_bytes_downloaded += len(raw_stream_bytes)
1057
+ for chunk in chunker.decode(raw_stream_bytes):
1058
+ yield chunk
1059
+
1060
+ for chunk in chunker.flush():
1061
+ yield chunk
1062
+
1063
+ await self.aclose()
1064
+
1065
+ async def aclose(self) -> None:
1066
+ """
1067
+ Close the response and release the connection.
1068
+ Automatically called if the response body is read to completion.
1069
+ """
1070
+ if not isinstance(self.stream, AsyncByteStream):
1071
+ raise RuntimeError("Attempted to call an async close on an sync stream.")
1072
+
1073
+ if not self.is_closed:
1074
+ self.is_closed = True
1075
+ with request_context(request=self._request):
1076
+ await self.stream.aclose()
1077
+
1078
+
1079
+ class Cookies(typing.MutableMapping[str, str]):
1080
+ """
1081
+ HTTP Cookies, as a mutable mapping.
1082
+ """
1083
+
1084
+ def __init__(self, cookies: CookieTypes | None = None) -> None:
1085
+ if cookies is None or isinstance(cookies, dict):
1086
+ self.jar = CookieJar()
1087
+ if isinstance(cookies, dict):
1088
+ for key, value in cookies.items():
1089
+ self.set(key, value)
1090
+ elif isinstance(cookies, list):
1091
+ self.jar = CookieJar()
1092
+ for key, value in cookies:
1093
+ self.set(key, value)
1094
+ elif isinstance(cookies, Cookies):
1095
+ self.jar = CookieJar()
1096
+ for cookie in cookies.jar:
1097
+ self.jar.set_cookie(cookie)
1098
+ else:
1099
+ self.jar = cookies
1100
+
1101
+ def extract_cookies(self, response: Response) -> None:
1102
+ """
1103
+ Loads any cookies based on the response `Set-Cookie` headers.
1104
+ """
1105
+ urllib_response = self._CookieCompatResponse(response)
1106
+ urllib_request = self._CookieCompatRequest(response.request)
1107
+
1108
+ self.jar.extract_cookies(urllib_response, urllib_request) # type: ignore
1109
+
1110
+ def set_cookie_header(self, request: Request) -> None:
1111
+ """
1112
+ Sets an appropriate 'Cookie:' HTTP header on the `Request`.
1113
+ """
1114
+ urllib_request = self._CookieCompatRequest(request)
1115
+ self.jar.add_cookie_header(urllib_request)
1116
+
1117
+ def set(self, name: str, value: str, domain: str = "", path: str = "/") -> None:
1118
+ """
1119
+ Set a cookie value by name. May optionally include domain and path.
1120
+ """
1121
+ kwargs = {
1122
+ "version": 0,
1123
+ "name": name,
1124
+ "value": value,
1125
+ "port": None,
1126
+ "port_specified": False,
1127
+ "domain": domain,
1128
+ "domain_specified": bool(domain),
1129
+ "domain_initial_dot": domain.startswith("."),
1130
+ "path": path,
1131
+ "path_specified": bool(path),
1132
+ "secure": False,
1133
+ "expires": None,
1134
+ "discard": True,
1135
+ "comment": None,
1136
+ "comment_url": None,
1137
+ "rest": {"HttpOnly": None},
1138
+ "rfc2109": False,
1139
+ }
1140
+ cookie = Cookie(**kwargs) # type: ignore
1141
+ self.jar.set_cookie(cookie)
1142
+
1143
+ def get( # type: ignore
1144
+ self,
1145
+ name: str,
1146
+ default: str | None = None,
1147
+ domain: str | None = None,
1148
+ path: str | None = None,
1149
+ ) -> str | None:
1150
+ """
1151
+ Get a cookie by name. May optionally include domain and path
1152
+ in order to specify exactly which cookie to retrieve.
1153
+ """
1154
+ value = None
1155
+ for cookie in self.jar:
1156
+ if cookie.name == name:
1157
+ if domain is None or cookie.domain == domain:
1158
+ if path is None or cookie.path == path:
1159
+ if value is not None:
1160
+ message = f"Multiple cookies exist with name={name}"
1161
+ raise CookieConflict(message)
1162
+ value = cookie.value
1163
+
1164
+ if value is None:
1165
+ return default
1166
+ return value
1167
+
1168
+ def delete(
1169
+ self,
1170
+ name: str,
1171
+ domain: str | None = None,
1172
+ path: str | None = None,
1173
+ ) -> None:
1174
+ """
1175
+ Delete a cookie by name. May optionally include domain and path
1176
+ in order to specify exactly which cookie to delete.
1177
+ """
1178
+ if domain is not None and path is not None:
1179
+ return self.jar.clear(domain, path, name)
1180
+
1181
+ remove = [
1182
+ cookie
1183
+ for cookie in self.jar
1184
+ if cookie.name == name
1185
+ and (domain is None or cookie.domain == domain)
1186
+ and (path is None or cookie.path == path)
1187
+ ]
1188
+
1189
+ for cookie in remove:
1190
+ self.jar.clear(cookie.domain, cookie.path, cookie.name)
1191
+
1192
+ def clear(self, domain: str | None = None, path: str | None = None) -> None:
1193
+ """
1194
+ Delete all cookies. Optionally include a domain and path in
1195
+ order to only delete a subset of all the cookies.
1196
+ """
1197
+ args = []
1198
+ if domain is not None:
1199
+ args.append(domain)
1200
+ if path is not None:
1201
+ assert domain is not None
1202
+ args.append(path)
1203
+ self.jar.clear(*args)
1204
+
1205
+ def update(self, cookies: CookieTypes | None = None) -> None: # type: ignore
1206
+ cookies = Cookies(cookies)
1207
+ for cookie in cookies.jar:
1208
+ self.jar.set_cookie(cookie)
1209
+
1210
+ def __setitem__(self, name: str, value: str) -> None:
1211
+ return self.set(name, value)
1212
+
1213
+ def __getitem__(self, name: str) -> str:
1214
+ value = self.get(name)
1215
+ if value is None:
1216
+ raise KeyError(name)
1217
+ return value
1218
+
1219
+ def __delitem__(self, name: str) -> None:
1220
+ return self.delete(name)
1221
+
1222
+ def __len__(self) -> int:
1223
+ return len(self.jar)
1224
+
1225
+ def __iter__(self) -> typing.Iterator[str]:
1226
+ return (cookie.name for cookie in self.jar)
1227
+
1228
+ def __bool__(self) -> bool:
1229
+ for _ in self.jar:
1230
+ return True
1231
+ return False
1232
+
1233
+ def __repr__(self) -> str:
1234
+ cookies_repr = ", ".join(
1235
+ [
1236
+ f"<Cookie {cookie.name}={cookie.value} for {cookie.domain} />"
1237
+ for cookie in self.jar
1238
+ ]
1239
+ )
1240
+
1241
+ return f"<Cookies[{cookies_repr}]>"
1242
+
1243
+ class _CookieCompatRequest(urllib.request.Request):
1244
+ """
1245
+ Wraps a `Request` instance up in a compatibility interface suitable
1246
+ for use with `CookieJar` operations.
1247
+ """
1248
+
1249
+ def __init__(self, request: Request) -> None:
1250
+ super().__init__(
1251
+ url=str(request.url),
1252
+ headers=dict(request.headers),
1253
+ method=request.method,
1254
+ )
1255
+ self.request = request
1256
+
1257
+ def add_unredirected_header(self, key: str, value: str) -> None:
1258
+ super().add_unredirected_header(key, value)
1259
+ self.request.headers[key] = value
1260
+
1261
+ class _CookieCompatResponse:
1262
+ """
1263
+ Wraps a `Request` instance up in a compatibility interface suitable
1264
+ for use with `CookieJar` operations.
1265
+ """
1266
+
1267
+ def __init__(self, response: Response) -> None:
1268
+ self.response = response
1269
+
1270
+ def info(self) -> email.message.Message:
1271
+ info = email.message.Message()
1272
+ for key, value in self.response.headers.multi_items():
1273
+ # Note that setting `info[key]` here is an "append" operation,
1274
+ # not a "replace" operation.
1275
+ # https://docs.python.org/3/library/email.compat32-message.html#email.message.Message.__setitem__
1276
+ info[key] = value
1277
+ return info