basedpyright 1.25.0 → 1.26.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 (445) hide show
  1. package/dist/pyright-langserver.js +1 -1
  2. package/dist/pyright-langserver.js.map +1 -1
  3. package/dist/pyright.js +1 -1
  4. package/dist/pyright.js.map +1 -1
  5. package/dist/typeshed-fallback/README.md +1 -1
  6. package/dist/typeshed-fallback/commit.txt +1 -1
  7. package/dist/typeshed-fallback/stdlib/VERSIONS +1 -0
  8. package/dist/typeshed-fallback/stdlib/_asyncio.pyi +3 -3
  9. package/dist/typeshed-fallback/stdlib/_blake2.pyi +12 -12
  10. package/dist/typeshed-fallback/stdlib/_bz2.pyi +7 -1
  11. package/dist/typeshed-fallback/stdlib/_collections_abc.pyi +3 -0
  12. package/dist/typeshed-fallback/stdlib/_contextvars.pyi +5 -3
  13. package/dist/typeshed-fallback/stdlib/_csv.pyi +4 -4
  14. package/dist/typeshed-fallback/stdlib/_ctypes.pyi +7 -7
  15. package/dist/typeshed-fallback/stdlib/_curses.pyi +3 -3
  16. package/dist/typeshed-fallback/stdlib/_dummy_threading.pyi +19 -127
  17. package/dist/typeshed-fallback/stdlib/_frozen_importlib.pyi +2 -1
  18. package/dist/typeshed-fallback/stdlib/_interpqueues.pyi +9 -6
  19. package/dist/typeshed-fallback/stdlib/_interpreters.pyi +3 -1
  20. package/dist/typeshed-fallback/stdlib/_io.pyi +1 -1
  21. package/dist/typeshed-fallback/stdlib/_json.pyi +5 -4
  22. package/dist/typeshed-fallback/stdlib/_lzma.pyi +16 -5
  23. package/dist/typeshed-fallback/stdlib/_pickle.pyi +286 -0
  24. package/dist/typeshed-fallback/stdlib/_sitebuiltins.pyi +3 -2
  25. package/dist/typeshed-fallback/stdlib/_socket.pyi +3 -1
  26. package/dist/typeshed-fallback/stdlib/_ssl.pyi +3 -4
  27. package/dist/typeshed-fallback/stdlib/_thread.pyi +87 -39
  28. package/dist/typeshed-fallback/stdlib/_tkinter.pyi +35 -20
  29. package/dist/typeshed-fallback/stdlib/_weakrefset.pyi +2 -1
  30. package/dist/typeshed-fallback/stdlib/argparse.pyi +27 -20
  31. package/dist/typeshed-fallback/stdlib/array.pyi +13 -10
  32. package/dist/typeshed-fallback/stdlib/ast.pyi +24 -7
  33. package/dist/typeshed-fallback/stdlib/asyncio/__init__.pyi +1300 -0
  34. package/dist/typeshed-fallback/stdlib/asyncio/base_events.pyi +2 -0
  35. package/dist/typeshed-fallback/stdlib/asyncio/coroutines.pyi +1 -0
  36. package/dist/typeshed-fallback/stdlib/asyncio/events.pyi +1 -0
  37. package/dist/typeshed-fallback/stdlib/asyncio/exceptions.pyi +1 -0
  38. package/dist/typeshed-fallback/stdlib/asyncio/futures.pyi +1 -0
  39. package/dist/typeshed-fallback/stdlib/asyncio/locks.pyi +1 -0
  40. package/dist/typeshed-fallback/stdlib/asyncio/proactor_events.pyi +1 -0
  41. package/dist/typeshed-fallback/stdlib/asyncio/protocols.pyi +1 -0
  42. package/dist/typeshed-fallback/stdlib/asyncio/queues.pyi +1 -0
  43. package/dist/typeshed-fallback/stdlib/asyncio/runners.pyi +1 -0
  44. package/dist/typeshed-fallback/stdlib/asyncio/selector_events.pyi +2 -0
  45. package/dist/typeshed-fallback/stdlib/asyncio/streams.pyi +1 -0
  46. package/dist/typeshed-fallback/stdlib/asyncio/subprocess.pyi +1 -0
  47. package/dist/typeshed-fallback/stdlib/asyncio/taskgroups.pyi +1 -0
  48. package/dist/typeshed-fallback/stdlib/asyncio/tasks.pyi +1 -0
  49. package/dist/typeshed-fallback/stdlib/asyncio/threads.pyi +1 -0
  50. package/dist/typeshed-fallback/stdlib/asyncio/timeouts.pyi +1 -0
  51. package/dist/typeshed-fallback/stdlib/asyncio/transports.pyi +1 -0
  52. package/dist/typeshed-fallback/stdlib/asyncio/unix_events.pyi +3 -0
  53. package/dist/typeshed-fallback/stdlib/asyncio/windows_events.pyi +1 -0
  54. package/dist/typeshed-fallback/stdlib/builtins.pyi +21 -15
  55. package/dist/typeshed-fallback/stdlib/codecs.pyi +2 -0
  56. package/dist/typeshed-fallback/stdlib/codeop.pyi +5 -1
  57. package/dist/typeshed-fallback/stdlib/collections/__init__.pyi +3 -1
  58. package/dist/typeshed-fallback/stdlib/concurrent/futures/process.pyi +12 -2
  59. package/dist/typeshed-fallback/stdlib/contextlib.pyi +21 -22
  60. package/dist/typeshed-fallback/stdlib/ctypes/__init__.pyi +69 -18
  61. package/dist/typeshed-fallback/stdlib/dataclasses.pyi +11 -3
  62. package/dist/typeshed-fallback/stdlib/datetime.pyi +1 -1
  63. package/dist/typeshed-fallback/stdlib/decimal.pyi +0 -1
  64. package/dist/typeshed-fallback/stdlib/email/charset.pyi +2 -1
  65. package/dist/typeshed-fallback/stdlib/email/header.pyi +2 -1
  66. package/dist/typeshed-fallback/stdlib/email/headerregistry.pyi +2 -0
  67. package/dist/typeshed-fallback/stdlib/fractions.pyi +3 -3
  68. package/dist/typeshed-fallback/stdlib/gzip.pyi +5 -5
  69. package/dist/typeshed-fallback/stdlib/http/__init__.pyi +15 -6
  70. package/dist/typeshed-fallback/stdlib/http/client.pyi +80 -58
  71. package/dist/typeshed-fallback/stdlib/inspect.pyi +5 -5
  72. package/dist/typeshed-fallback/stdlib/ipaddress.pyi +5 -3
  73. package/dist/typeshed-fallback/stdlib/itertools.pyi +12 -12
  74. package/dist/typeshed-fallback/stdlib/json/scanner.pyi +4 -0
  75. package/dist/typeshed-fallback/stdlib/lib2to3/pgen2/pgen.pyi +2 -1
  76. package/dist/typeshed-fallback/stdlib/lib2to3/pytree.pyi +2 -1
  77. package/dist/typeshed-fallback/stdlib/mmap.pyi +6 -6
  78. package/dist/typeshed-fallback/stdlib/multiprocessing/managers.pyi +63 -17
  79. package/dist/typeshed-fallback/stdlib/multiprocessing/pool.pyi +3 -0
  80. package/dist/typeshed-fallback/stdlib/multiprocessing/reduction.pyi +1 -1
  81. package/dist/typeshed-fallback/stdlib/multiprocessing/synchronize.pyi +1 -0
  82. package/dist/typeshed-fallback/stdlib/numbers.pyi +2 -1
  83. package/dist/typeshed-fallback/stdlib/operator.pyi +2 -2
  84. package/dist/typeshed-fallback/stdlib/optparse.pyi +89 -32
  85. package/dist/typeshed-fallback/stdlib/os/__init__.pyi +1 -0
  86. package/dist/typeshed-fallback/stdlib/parser.pyi +2 -1
  87. package/dist/typeshed-fallback/stdlib/pickle.pyi +51 -266
  88. package/dist/typeshed-fallback/stdlib/pickletools.pyi +8 -1
  89. package/dist/typeshed-fallback/stdlib/plistlib.pyi +2 -1
  90. package/dist/typeshed-fallback/stdlib/sched.pyi +3 -2
  91. package/dist/typeshed-fallback/stdlib/select.pyi +19 -13
  92. package/dist/typeshed-fallback/stdlib/selectors.pyi +5 -3
  93. package/dist/typeshed-fallback/stdlib/signal.pyi +47 -47
  94. package/dist/typeshed-fallback/stdlib/socket.pyi +8 -6
  95. package/dist/typeshed-fallback/stdlib/sqlite3/__init__.pyi +1 -1
  96. package/dist/typeshed-fallback/stdlib/ssl.pyi +4 -0
  97. package/dist/typeshed-fallback/stdlib/sys/__init__.pyi +9 -3
  98. package/dist/typeshed-fallback/stdlib/tarfile.pyi +24 -10
  99. package/dist/typeshed-fallback/stdlib/telnetlib.pyi +2 -2
  100. package/dist/typeshed-fallback/stdlib/threading.pyi +6 -53
  101. package/dist/typeshed-fallback/stdlib/tkinter/__init__.pyi +193 -3
  102. package/dist/typeshed-fallback/stdlib/tkinter/filedialog.pyi +9 -9
  103. package/dist/typeshed-fallback/stdlib/tkinter/font.pyi +5 -4
  104. package/dist/typeshed-fallback/stdlib/token.pyi +1 -1
  105. package/dist/typeshed-fallback/stdlib/tokenize.pyi +3 -4
  106. package/dist/typeshed-fallback/stdlib/traceback.pyi +17 -4
  107. package/dist/typeshed-fallback/stdlib/types.pyi +45 -10
  108. package/dist/typeshed-fallback/stdlib/typing.pyi +45 -47
  109. package/dist/typeshed-fallback/stdlib/typing_extensions.pyi +53 -12
  110. package/dist/typeshed-fallback/stdlib/unittest/mock.pyi +3 -1
  111. package/dist/typeshed-fallback/stdlib/unittest/runner.pyi +11 -12
  112. package/dist/typeshed-fallback/stdlib/unittest/suite.pyi +2 -0
  113. package/dist/typeshed-fallback/stdlib/weakref.pyi +19 -5
  114. package/dist/typeshed-fallback/stdlib/xml/dom/minidom.pyi +5 -4
  115. package/dist/typeshed-fallback/stdlib/xml/sax/expatreader.pyi +53 -0
  116. package/dist/typeshed-fallback/stdlib/xmlrpc/client.pyi +4 -3
  117. package/dist/typeshed-fallback/stdlib/xxlimited.pyi +4 -2
  118. package/dist/typeshed-fallback/stdlib/zipfile/_path/glob.pyi +22 -0
  119. package/dist/typeshed-fallback/stdlib/zoneinfo/__init__.pyi +1 -1
  120. package/dist/typeshed-fallback/stubs/Authlib/METADATA.toml +7 -0
  121. package/dist/typeshed-fallback/stubs/Authlib/authlib/__init__.pyi +4 -0
  122. package/dist/typeshed-fallback/stubs/Authlib/authlib/common/encoding.pyi +10 -0
  123. package/dist/typeshed-fallback/stubs/Authlib/authlib/common/errors.pyi +26 -0
  124. package/dist/typeshed-fallback/stubs/Authlib/authlib/common/security.pyi +4 -0
  125. package/dist/typeshed-fallback/stubs/Authlib/authlib/common/urls.pyi +19 -0
  126. package/dist/typeshed-fallback/stubs/Authlib/authlib/consts.pyi +8 -0
  127. package/dist/typeshed-fallback/stubs/Authlib/authlib/deprecate.pyi +7 -0
  128. package/dist/typeshed-fallback/stubs/Authlib/authlib/integrations/__init__.pyi +0 -0
  129. package/dist/typeshed-fallback/stubs/Authlib/authlib/integrations/base_client/__init__.pyi +29 -0
  130. package/dist/typeshed-fallback/stubs/Authlib/authlib/integrations/base_client/async_app.pyi +16 -0
  131. package/dist/typeshed-fallback/stubs/Authlib/authlib/integrations/base_client/async_openid.pyi +8 -0
  132. package/dist/typeshed-fallback/stubs/Authlib/authlib/integrations/base_client/errors.pyi +23 -0
  133. package/dist/typeshed-fallback/stubs/Authlib/authlib/integrations/base_client/framework_integration.pyi +13 -0
  134. package/dist/typeshed-fallback/stubs/Authlib/authlib/integrations/base_client/registry.pyi +21 -0
  135. package/dist/typeshed-fallback/stubs/Authlib/authlib/integrations/base_client/sync_app.pyi +93 -0
  136. package/dist/typeshed-fallback/stubs/Authlib/authlib/integrations/base_client/sync_openid.pyi +7 -0
  137. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/__init__.pyi +44 -0
  138. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/drafts/__init__.pyi +3 -0
  139. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/drafts/_jwe_algorithms.pyi +27 -0
  140. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/drafts/_jwe_enc_cryptodome.pyi +13 -0
  141. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/drafts/_jwe_enc_cryptography.pyi +13 -0
  142. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/errors.pyi +72 -0
  143. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/jwk.pyi +4 -0
  144. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7515/__init__.pyi +4 -0
  145. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7515/jws.pyi +14 -0
  146. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7515/models.pyi +25 -0
  147. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7516/__init__.pyi +9 -0
  148. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7516/jwe.pyi +23 -0
  149. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7516/models.pyi +56 -0
  150. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7517/__init__.pyi +7 -0
  151. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7517/_cryptography_key.pyi +5 -0
  152. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7517/asymmetric_key.pyi +39 -0
  153. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7517/base_key.pyi +28 -0
  154. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7517/jwk.pyi +13 -0
  155. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7517/key_set.pyi +10 -0
  156. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7518/__init__.pyi +20 -0
  157. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7518/ec_key.pyi +24 -0
  158. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7518/jwe_algs.pyi +64 -0
  159. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7518/jwe_encs.pyi +27 -0
  160. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7518/jwe_zips.pyi +9 -0
  161. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7518/jws_algs.pyi +63 -0
  162. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7518/oct_key.pyi +23 -0
  163. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7518/rsa_key.pyi +23 -0
  164. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7518/util.pyi +2 -0
  165. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7519/__init__.pyi +4 -0
  166. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7519/claims.pyi +21 -0
  167. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc7519/jwt.pyi +21 -0
  168. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc8037/__init__.pyi +4 -0
  169. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc8037/jws_eddsa.pyi +10 -0
  170. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/rfc8037/okp_key.pyi +24 -0
  171. package/dist/typeshed-fallback/stubs/Authlib/authlib/jose/util.pyi +3 -0
  172. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth1/__init__.pyi +33 -0
  173. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth1/client.pyi +39 -0
  174. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth1/errors.pyi +1 -0
  175. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth1/rfc5849/__init__.pyi +35 -0
  176. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth1/rfc5849/authorization_server.pyi +21 -0
  177. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth1/rfc5849/base_server.pyi +12 -0
  178. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth1/rfc5849/client_auth.pyi +41 -0
  179. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth1/rfc5849/errors.pyi +56 -0
  180. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth1/rfc5849/models.pyi +21 -0
  181. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth1/rfc5849/parameters.pyi +5 -0
  182. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth1/rfc5849/resource_protector.pyi +5 -0
  183. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth1/rfc5849/rsa.pyi +2 -0
  184. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth1/rfc5849/signature.pyi +22 -0
  185. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth1/rfc5849/util.pyi +2 -0
  186. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth1/rfc5849/wrapper.pyi +33 -0
  187. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/__init__.pyi +22 -0
  188. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/auth.pyi +24 -0
  189. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/base.pyi +20 -0
  190. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/client.pyi +96 -0
  191. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/__init__.pyi +76 -0
  192. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/authenticate_client.pyi +13 -0
  193. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/authorization_server.pyi +46 -0
  194. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/errors.pyi +92 -0
  195. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/grants/__init__.pyi +21 -0
  196. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/grants/authorization_code.pyi +24 -0
  197. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/grants/base.pyi +55 -0
  198. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/grants/client_credentials.pyi +6 -0
  199. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/grants/implicit.pyi +12 -0
  200. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/grants/refresh_token.pyi +15 -0
  201. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/grants/resource_owner_password_credentials.pyi +7 -0
  202. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/models.pyi +22 -0
  203. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/parameters.pyi +14 -0
  204. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/requests.pyi +48 -0
  205. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/resource_protector.pyi +19 -0
  206. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/token_endpoint.pyi +13 -0
  207. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/util.pyi +5 -0
  208. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6749/wrappers.pyi +5 -0
  209. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6750/__init__.pyi +15 -0
  210. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6750/errors.pyi +27 -0
  211. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6750/parameters.pyi +6 -0
  212. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6750/token.pyi +41 -0
  213. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc6750/validator.pyi +6 -0
  214. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7009/__init__.pyi +4 -0
  215. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7009/parameters.pyi +5 -0
  216. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7009/revocation.pyi +9 -0
  217. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7521/__init__.pyi +3 -0
  218. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7521/client.pyi +39 -0
  219. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7523/__init__.pyi +18 -0
  220. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7523/assertion.pyi +19 -0
  221. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7523/auth.pyi +22 -0
  222. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7523/client.pyi +16 -0
  223. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7523/jwt_bearer.pyi +28 -0
  224. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7523/token.pyi +30 -0
  225. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7523/validator.pyi +24 -0
  226. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7591/__init__.pyi +17 -0
  227. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7591/claims.pyi +22 -0
  228. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7591/endpoint.pyi +24 -0
  229. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7591/errors.pyi +13 -0
  230. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7592/__init__.pyi +3 -0
  231. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7592/endpoint.pyi +26 -0
  232. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7636/__init__.pyi +3 -0
  233. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7636/challenge.pyi +20 -0
  234. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7662/__init__.pyi +5 -0
  235. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7662/introspection.pyi +11 -0
  236. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7662/models.pyi +8 -0
  237. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc7662/token_validator.pyi +7 -0
  238. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc8414/__init__.pyi +4 -0
  239. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc8414/models.pyi +40 -0
  240. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc8414/well_known.pyi +1 -0
  241. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc8628/__init__.pyi +19 -0
  242. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc8628/device_code.pyi +15 -0
  243. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc8628/endpoint.pyi +21 -0
  244. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc8628/errors.pyi +10 -0
  245. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc8628/models.pyi +13 -0
  246. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc8693/__init__.pyi +0 -0
  247. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc9068/__init__.pyi +6 -0
  248. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc9068/claims.pyi +16 -0
  249. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc9068/introspection.pyi +13 -0
  250. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc9068/revocation.pyi +9 -0
  251. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc9068/token.pyi +23 -0
  252. package/dist/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc9068/token_validator.pyi +20 -0
  253. package/dist/typeshed-fallback/stubs/Authlib/authlib/oidc/__init__.pyi +0 -0
  254. package/dist/typeshed-fallback/stubs/Authlib/authlib/oidc/core/__init__.pyi +29 -0
  255. package/dist/typeshed-fallback/stubs/Authlib/authlib/oidc/core/claims.pyi +37 -0
  256. package/dist/typeshed-fallback/stubs/Authlib/authlib/oidc/core/errors.pyi +28 -0
  257. package/dist/typeshed-fallback/stubs/Authlib/authlib/oidc/core/grants/__init__.pyi +5 -0
  258. package/dist/typeshed-fallback/stubs/Authlib/authlib/oidc/core/grants/code.pyi +17 -0
  259. package/dist/typeshed-fallback/stubs/Authlib/authlib/oidc/core/grants/hybrid.pyi +13 -0
  260. package/dist/typeshed-fallback/stubs/Authlib/authlib/oidc/core/grants/implicit.pyi +16 -0
  261. package/dist/typeshed-fallback/stubs/Authlib/authlib/oidc/core/grants/util.pyi +18 -0
  262. package/dist/typeshed-fallback/stubs/Authlib/authlib/oidc/core/models.pyi +5 -0
  263. package/dist/typeshed-fallback/stubs/Authlib/authlib/oidc/core/util.pyi +1 -0
  264. package/dist/typeshed-fallback/stubs/Authlib/authlib/oidc/discovery/__init__.pyi +4 -0
  265. package/dist/typeshed-fallback/stubs/Authlib/authlib/oidc/discovery/models.pyi +36 -0
  266. package/dist/typeshed-fallback/stubs/Authlib/authlib/oidc/discovery/well_known.pyi +1 -0
  267. package/dist/typeshed-fallback/stubs/Flask-Migrate/METADATA.toml +1 -1
  268. package/dist/typeshed-fallback/stubs/Flask-Migrate/flask_migrate/__init__.pyi +2 -4
  269. package/dist/typeshed-fallback/stubs/Flask-SocketIO/METADATA.toml +1 -1
  270. package/dist/typeshed-fallback/stubs/Flask-SocketIO/flask_socketio/__init__.pyi +30 -4
  271. package/dist/typeshed-fallback/stubs/Markdown/markdown/core.pyi +2 -13
  272. package/dist/typeshed-fallback/stubs/PyAutoGUI/pyautogui/__init__.pyi +2 -2
  273. package/dist/typeshed-fallback/stubs/PyYAML/yaml/constructor.pyi +1 -1
  274. package/dist/typeshed-fallback/stubs/Pygments/METADATA.toml +1 -1
  275. package/dist/typeshed-fallback/stubs/WebOb/webob/exc.pyi +1 -1
  276. package/dist/typeshed-fallback/stubs/click-log/METADATA.toml +3 -0
  277. package/dist/typeshed-fallback/stubs/click-log/click_log/__init__.pyi +4 -0
  278. package/dist/typeshed-fallback/stubs/click-log/click_log/core.pyi +15 -0
  279. package/dist/typeshed-fallback/stubs/click-log/click_log/options.pyi +12 -0
  280. package/dist/typeshed-fallback/stubs/click-web/METADATA.toml +3 -0
  281. package/dist/typeshed-fallback/stubs/click-web/click_web/__init__.pyi +16 -0
  282. package/dist/typeshed-fallback/stubs/click-web/click_web/exceptions.pyi +2 -0
  283. package/dist/typeshed-fallback/stubs/click-web/click_web/resources/cmd_exec.pyi +79 -0
  284. package/dist/typeshed-fallback/stubs/click-web/click_web/resources/cmd_form.pyi +6 -0
  285. package/dist/typeshed-fallback/stubs/click-web/click_web/resources/index.pyi +6 -0
  286. package/dist/typeshed-fallback/stubs/click-web/click_web/resources/input_fields.pyi +49 -0
  287. package/dist/typeshed-fallback/stubs/click-web/click_web/web_click_types.pyi +18 -0
  288. package/dist/typeshed-fallback/stubs/croniter/METADATA.toml +1 -1
  289. package/dist/typeshed-fallback/stubs/croniter/croniter/croniter.pyi +7 -0
  290. package/dist/typeshed-fallback/stubs/django-import-export/METADATA.toml +6 -0
  291. package/dist/typeshed-fallback/stubs/django-import-export/import_export/__init__.pyi +1 -0
  292. package/dist/typeshed-fallback/stubs/django-import-export/import_export/admin.pyi +114 -0
  293. package/dist/typeshed-fallback/stubs/django-import-export/import_export/exceptions.pyi +2 -0
  294. package/dist/typeshed-fallback/stubs/django-import-export/import_export/fields.pyi +34 -0
  295. package/dist/typeshed-fallback/stubs/django-import-export/import_export/formats/__init__.pyi +0 -0
  296. package/dist/typeshed-fallback/stubs/django-import-export/import_export/formats/base_formats.pyi +57 -0
  297. package/dist/typeshed-fallback/stubs/django-import-export/import_export/forms.pyi +31 -0
  298. package/dist/typeshed-fallback/stubs/django-import-export/import_export/instance_loaders.pyi +23 -0
  299. package/dist/typeshed-fallback/stubs/django-import-export/import_export/mixins.pyi +66 -0
  300. package/dist/typeshed-fallback/stubs/django-import-export/import_export/resources.pyi +232 -0
  301. package/dist/typeshed-fallback/stubs/django-import-export/import_export/results.pyi +73 -0
  302. package/dist/typeshed-fallback/stubs/django-import-export/import_export/signals.pyi +4 -0
  303. package/dist/typeshed-fallback/stubs/django-import-export/import_export/templatetags/__init__.pyi +0 -0
  304. package/dist/typeshed-fallback/stubs/django-import-export/import_export/templatetags/import_export_tags.pyi +8 -0
  305. package/dist/typeshed-fallback/stubs/django-import-export/import_export/tmp_storages.pyi +34 -0
  306. package/dist/typeshed-fallback/stubs/django-import-export/import_export/utils.pyi +18 -0
  307. package/dist/typeshed-fallback/stubs/django-import-export/import_export/widgets.pyi +66 -0
  308. package/dist/typeshed-fallback/stubs/docker/docker/models/containers.pyi +2 -2
  309. package/dist/typeshed-fallback/stubs/flake8-bugbear/METADATA.toml +1 -1
  310. package/dist/typeshed-fallback/stubs/fpdf2/METADATA.toml +1 -1
  311. package/dist/typeshed-fallback/stubs/fpdf2/fpdf/__init__.pyi +2 -0
  312. package/dist/typeshed-fallback/stubs/fpdf2/fpdf/annotations.pyi +2 -2
  313. package/dist/typeshed-fallback/stubs/fpdf2/fpdf/enums.pyi +50 -4
  314. package/dist/typeshed-fallback/stubs/fpdf2/fpdf/fonts.pyi +3 -3
  315. package/dist/typeshed-fallback/stubs/fpdf2/fpdf/fpdf.pyi +53 -18
  316. package/dist/typeshed-fallback/stubs/fpdf2/fpdf/html.pyi +2 -0
  317. package/dist/typeshed-fallback/stubs/fpdf2/fpdf/image_parsing.pyi +10 -2
  318. package/dist/typeshed-fallback/stubs/fpdf2/fpdf/line_break.pyi +9 -3
  319. package/dist/typeshed-fallback/stubs/fpdf2/fpdf/outline.pyi +21 -0
  320. package/dist/typeshed-fallback/stubs/fpdf2/fpdf/output.pyi +19 -0
  321. package/dist/typeshed-fallback/stubs/fpdf2/fpdf/prefs.pyi +38 -4
  322. package/dist/typeshed-fallback/stubs/fpdf2/fpdf/table.pyi +13 -1
  323. package/dist/typeshed-fallback/stubs/fpdf2/fpdf/util.pyi +1 -0
  324. package/dist/typeshed-fallback/stubs/gdb/METADATA.toml +1 -1
  325. package/dist/typeshed-fallback/stubs/gdb/gdb/__init__.pyi +126 -9
  326. package/dist/typeshed-fallback/stubs/gdb/gdb/unwinder.pyi +2 -3
  327. package/dist/typeshed-fallback/stubs/gevent/gevent/select.pyi +7 -2
  328. package/dist/typeshed-fallback/stubs/hdbcli/METADATA.toml +1 -1
  329. package/dist/typeshed-fallback/stubs/ibm-db/METADATA.toml +1 -1
  330. package/dist/typeshed-fallback/stubs/ibm-db/ibm_db.pyi +11 -1
  331. package/dist/typeshed-fallback/stubs/icalendar/METADATA.toml +1 -5
  332. package/dist/typeshed-fallback/stubs/icalendar/icalendar/timezone/tzp.pyi +1 -1
  333. package/dist/typeshed-fallback/stubs/jsonschema/METADATA.toml +0 -2
  334. package/dist/typeshed-fallback/stubs/jwcrypto/jwcrypto/jwk.pyi +4 -4
  335. package/dist/typeshed-fallback/stubs/lupa/METADATA.toml +1 -1
  336. package/dist/typeshed-fallback/stubs/m3u8/m3u8/httpclient.pyi +1 -1
  337. package/dist/typeshed-fallback/stubs/nanoleafapi/METADATA.toml +2 -0
  338. package/dist/typeshed-fallback/stubs/nanoleafapi/nanoleafapi/__init__.pyi +16 -0
  339. package/dist/typeshed-fallback/stubs/nanoleafapi/nanoleafapi/digital_twin.pyi +12 -0
  340. package/dist/typeshed-fallback/stubs/nanoleafapi/nanoleafapi/discovery.pyi +1 -0
  341. package/dist/typeshed-fallback/stubs/nanoleafapi/nanoleafapi/nanoleaf.pyi +68 -0
  342. package/dist/typeshed-fallback/stubs/networkx/networkx/classes/multidigraph.pyi +1 -1
  343. package/dist/typeshed-fallback/stubs/openpyxl/openpyxl/styles/cell_style.pyi +1 -1
  344. package/dist/typeshed-fallback/stubs/peewee/peewee.pyi +4 -4
  345. package/dist/typeshed-fallback/stubs/pexpect/pexpect/pty_spawn.pyi +1 -1
  346. package/dist/typeshed-fallback/stubs/pika/pika/credentials.pyi +10 -7
  347. package/dist/typeshed-fallback/stubs/polib/polib.pyi +3 -2
  348. package/dist/typeshed-fallback/stubs/protobuf/METADATA.toml +2 -2
  349. package/dist/typeshed-fallback/stubs/protobuf/google/protobuf/api_pb2.pyi +1 -1
  350. package/dist/typeshed-fallback/stubs/protobuf/google/protobuf/descriptor_pb2.pyi +4 -8
  351. package/dist/typeshed-fallback/stubs/protobuf/google/protobuf/runtime_version.pyi +23 -0
  352. package/dist/typeshed-fallback/stubs/pycocotools/METADATA.toml +1 -0
  353. package/dist/typeshed-fallback/stubs/pycocotools/pycocotools/coco.pyi +6 -11
  354. package/dist/typeshed-fallback/stubs/pycocotools/pycocotools/cocoeval.pyi +16 -30
  355. package/dist/typeshed-fallback/stubs/pycocotools/pycocotools/mask.pyi +7 -9
  356. package/dist/typeshed-fallback/stubs/pycurl/METADATA.toml +1 -1
  357. package/dist/typeshed-fallback/stubs/pycurl/pycurl.pyi +33 -32
  358. package/dist/typeshed-fallback/stubs/pynput/pynput/keyboard/_base.pyi +65 -65
  359. package/dist/typeshed-fallback/stubs/python-dateutil/dateutil/relativedelta.pyi +3 -11
  360. package/dist/typeshed-fallback/stubs/pywin32/_win32typing.pyi +3 -3
  361. package/dist/typeshed-fallback/stubs/qrbill/qrbill/bill.pyi +2 -2
  362. package/dist/typeshed-fallback/stubs/requests-oauthlib/requests_oauthlib/oauth1_auth.pyi +1 -1
  363. package/dist/typeshed-fallback/stubs/seaborn/METADATA.toml +1 -11
  364. package/dist/typeshed-fallback/stubs/seaborn/seaborn/algorithms.pyi +13 -13
  365. package/dist/typeshed-fallback/stubs/setuptools/METADATA.toml +1 -1
  366. package/dist/typeshed-fallback/stubs/setuptools/setuptools/_distutils/cmd.pyi +5 -0
  367. package/dist/typeshed-fallback/stubs/setuptools/setuptools/_distutils/command/bdist.pyi +1 -1
  368. package/dist/typeshed-fallback/stubs/setuptools/setuptools/_distutils/command/install_data.pyi +2 -1
  369. package/dist/typeshed-fallback/stubs/setuptools/setuptools/_distutils/dist.pyi +21 -21
  370. package/dist/typeshed-fallback/stubs/setuptools/setuptools/_distutils/extension.pyi +3 -4
  371. package/dist/typeshed-fallback/stubs/setuptools/setuptools/extension.pyi +2 -3
  372. package/dist/typeshed-fallback/stubs/shapely/shapely/_enum.pyi +1 -1
  373. package/dist/typeshed-fallback/stubs/six/METADATA.toml +1 -1
  374. package/dist/typeshed-fallback/stubs/tabulate/tabulate/__init__.pyi +2 -1
  375. package/dist/typeshed-fallback/stubs/tqdm/tqdm/asyncio.pyi +2 -2
  376. package/dist/typeshed-fallback/stubs/vobject/METADATA.toml +2 -2
  377. package/dist/typeshed-fallback/stubs/vobject/vobject/__init__.pyi +2 -4
  378. package/dist/typeshed-fallback/stubs/vobject/vobject/base.pyi +26 -24
  379. package/dist/typeshed-fallback/stubs/vobject/vobject/behavior.pyi +5 -4
  380. package/dist/typeshed-fallback/stubs/vobject/vobject/icalendar.pyi +28 -37
  381. package/dist/typeshed-fallback/stubs/vobject/vobject/vcard.pyi +20 -20
  382. package/dist/typeshed-fallback/stubs/vobject/vobject/win32tz.pyi +22 -22
  383. package/package.json +1 -1
  384. package/dist/typeshed-fallback/stubs/python-gflags/METADATA.toml +0 -2
  385. package/dist/typeshed-fallback/stubs/python-gflags/gflags.pyi +0 -309
  386. package/dist/typeshed-fallback/stubs/redis/METADATA.toml +0 -12
  387. package/dist/typeshed-fallback/stubs/redis/redis/__init__.pyi +0 -72
  388. package/dist/typeshed-fallback/stubs/redis/redis/asyncio/__init__.pyi +0 -64
  389. package/dist/typeshed-fallback/stubs/redis/redis/asyncio/client.pyi +0 -1091
  390. package/dist/typeshed-fallback/stubs/redis/redis/asyncio/cluster.pyi +0 -229
  391. package/dist/typeshed-fallback/stubs/redis/redis/asyncio/connection.pyi +0 -363
  392. package/dist/typeshed-fallback/stubs/redis/redis/asyncio/lock.pyi +0 -51
  393. package/dist/typeshed-fallback/stubs/redis/redis/asyncio/parser.pyi +0 -9
  394. package/dist/typeshed-fallback/stubs/redis/redis/asyncio/retry.pyi +0 -12
  395. package/dist/typeshed-fallback/stubs/redis/redis/asyncio/sentinel.pyi +0 -162
  396. package/dist/typeshed-fallback/stubs/redis/redis/asyncio/utils.pyi +0 -15
  397. package/dist/typeshed-fallback/stubs/redis/redis/backoff.pyi +0 -31
  398. package/dist/typeshed-fallback/stubs/redis/redis/client.pyi +0 -817
  399. package/dist/typeshed-fallback/stubs/redis/redis/cluster.pyi +0 -265
  400. package/dist/typeshed-fallback/stubs/redis/redis/commands/__init__.pyi +0 -17
  401. package/dist/typeshed-fallback/stubs/redis/redis/commands/bf/__init__.pyi +0 -58
  402. package/dist/typeshed-fallback/stubs/redis/redis/commands/bf/commands.pyi +0 -112
  403. package/dist/typeshed-fallback/stubs/redis/redis/commands/bf/info.pyi +0 -43
  404. package/dist/typeshed-fallback/stubs/redis/redis/commands/cluster.pyi +0 -60
  405. package/dist/typeshed-fallback/stubs/redis/redis/commands/core.pyi +0 -1743
  406. package/dist/typeshed-fallback/stubs/redis/redis/commands/graph/__init__.pyi +0 -26
  407. package/dist/typeshed-fallback/stubs/redis/redis/commands/graph/commands.pyi +0 -25
  408. package/dist/typeshed-fallback/stubs/redis/redis/commands/graph/edge.pyi +0 -14
  409. package/dist/typeshed-fallback/stubs/redis/redis/commands/graph/exceptions.pyi +0 -5
  410. package/dist/typeshed-fallback/stubs/redis/redis/commands/graph/node.pyi +0 -18
  411. package/dist/typeshed-fallback/stubs/redis/redis/commands/graph/path.pyi +0 -18
  412. package/dist/typeshed-fallback/stubs/redis/redis/commands/graph/query_result.pyi +0 -74
  413. package/dist/typeshed-fallback/stubs/redis/redis/commands/helpers.pyi +0 -10
  414. package/dist/typeshed-fallback/stubs/redis/redis/commands/json/__init__.pyi +0 -15
  415. package/dist/typeshed-fallback/stubs/redis/redis/commands/json/commands.pyi +0 -32
  416. package/dist/typeshed-fallback/stubs/redis/redis/commands/json/decoders.pyi +0 -4
  417. package/dist/typeshed-fallback/stubs/redis/redis/commands/json/path.pyi +0 -5
  418. package/dist/typeshed-fallback/stubs/redis/redis/commands/parser.pyi +0 -8
  419. package/dist/typeshed-fallback/stubs/redis/redis/commands/redismodules.pyi +0 -14
  420. package/dist/typeshed-fallback/stubs/redis/redis/commands/search/__init__.pyi +0 -22
  421. package/dist/typeshed-fallback/stubs/redis/redis/commands/search/aggregation.pyi +0 -53
  422. package/dist/typeshed-fallback/stubs/redis/redis/commands/search/commands.pyi +0 -111
  423. package/dist/typeshed-fallback/stubs/redis/redis/commands/search/query.pyi +0 -52
  424. package/dist/typeshed-fallback/stubs/redis/redis/commands/search/result.pyi +0 -7
  425. package/dist/typeshed-fallback/stubs/redis/redis/commands/sentinel.pyi +0 -17
  426. package/dist/typeshed-fallback/stubs/redis/redis/commands/timeseries/__init__.pyi +0 -14
  427. package/dist/typeshed-fallback/stubs/redis/redis/commands/timeseries/commands.pyi +0 -160
  428. package/dist/typeshed-fallback/stubs/redis/redis/commands/timeseries/info.pyi +0 -18
  429. package/dist/typeshed-fallback/stubs/redis/redis/commands/timeseries/utils.pyi +0 -5
  430. package/dist/typeshed-fallback/stubs/redis/redis/connection.pyi +0 -289
  431. package/dist/typeshed-fallback/stubs/redis/redis/crc.pyi +0 -5
  432. package/dist/typeshed-fallback/stubs/redis/redis/credentials.pyi +0 -11
  433. package/dist/typeshed-fallback/stubs/redis/redis/exceptions.pyi +0 -42
  434. package/dist/typeshed-fallback/stubs/redis/redis/lock.pyi +0 -56
  435. package/dist/typeshed-fallback/stubs/redis/redis/ocsp.pyi +0 -21
  436. package/dist/typeshed-fallback/stubs/redis/redis/retry.pyi +0 -11
  437. package/dist/typeshed-fallback/stubs/redis/redis/sentinel.pyi +0 -62
  438. package/dist/typeshed-fallback/stubs/redis/redis/typing.pyi +0 -34
  439. package/dist/typeshed-fallback/stubs/redis/redis/utils.pyi +0 -22
  440. package/dist/typeshed-fallback/stubs/setuptools/setuptools/compat/py310.pyi +0 -9
  441. package/dist/typeshed-fallback/stubs/setuptools/setuptools/compat/py311.pyi +0 -4
  442. package/dist/typeshed-fallback/stubs/setuptools/setuptools/compat/py312.pyi +0 -3
  443. package/dist/typeshed-fallback/stubs/setuptools/setuptools/compat/py39.pyi +0 -7
  444. /package/dist/typeshed-fallback/stdlib/zipfile/{_path.pyi → _path/__init__.pyi} +0 -0
  445. /package/dist/typeshed-fallback/stubs/{setuptools/setuptools/compat → Authlib/authlib/common}/__init__.pyi +0 -0
@@ -1,26 +0,0 @@
1
- from typing import Any
2
-
3
- from .commands import GraphCommands as GraphCommands
4
- from .edge import Edge as Edge
5
- from .node import Node as Node
6
- from .path import Path as Path
7
-
8
- class Graph(GraphCommands):
9
- NAME: Any
10
- client: Any
11
- execute_command: Any
12
- nodes: Any
13
- edges: Any
14
- version: int
15
- def __init__(self, client, name=...) -> None: ...
16
- @property
17
- def name(self): ...
18
- def get_label(self, idx): ...
19
- def get_relation(self, idx): ...
20
- def get_property(self, idx): ...
21
- def add_node(self, node) -> None: ...
22
- def add_edge(self, edge) -> None: ...
23
- def call_procedure(self, procedure, *args, read_only: bool = False, **kwagrs): ...
24
- def labels(self): ...
25
- def relationship_types(self): ...
26
- def property_keys(self): ...
@@ -1,25 +0,0 @@
1
- from _typeshed import Incomplete
2
- from typing import Any
3
-
4
- class GraphCommands:
5
- def commit(self): ...
6
- version: Any
7
- def query(
8
- self,
9
- q,
10
- params: Incomplete | None = None,
11
- timeout: Incomplete | None = None,
12
- read_only: bool = False,
13
- profile: bool = False,
14
- ): ...
15
- def merge(self, pattern): ...
16
- def delete(self): ...
17
- nodes: Any
18
- edges: Any
19
- def flush(self) -> None: ...
20
- def explain(self, query, params: Incomplete | None = None): ...
21
- def bulk(self, **kwargs) -> None: ...
22
- def profile(self, query): ...
23
- def slowlog(self): ...
24
- def config(self, name, value: Incomplete | None = None, set: bool = False): ...
25
- def list_keys(self): ...
@@ -1,14 +0,0 @@
1
- from _typeshed import Incomplete
2
- from typing import Any
3
-
4
- class Edge:
5
- id: Any
6
- relation: Any
7
- properties: Any
8
- src_node: Any
9
- dest_node: Any
10
- def __init__(
11
- self, src_node, relation, dest_node, edge_id: Incomplete | None = None, properties: Incomplete | None = None
12
- ) -> None: ...
13
- def to_string(self): ...
14
- def __eq__(self, rhs): ...
@@ -1,5 +0,0 @@
1
- from typing import Any
2
-
3
- class VersionMismatchException(Exception):
4
- version: Any
5
- def __init__(self, version) -> None: ...
@@ -1,18 +0,0 @@
1
- from _typeshed import Incomplete
2
- from typing import Any
3
-
4
- class Node:
5
- id: Any
6
- alias: Any
7
- label: Any
8
- labels: Any
9
- properties: Any
10
- def __init__(
11
- self,
12
- node_id: Incomplete | None = None,
13
- alias: Incomplete | None = None,
14
- label: str | list[str] | None = None,
15
- properties: Incomplete | None = None,
16
- ) -> None: ...
17
- def to_string(self): ...
18
- def __eq__(self, rhs): ...
@@ -1,18 +0,0 @@
1
- from typing import Any
2
-
3
- class Path:
4
- append_type: Any
5
- def __init__(self, nodes, edges) -> None: ...
6
- @classmethod
7
- def new_empty_path(cls): ...
8
- def nodes(self): ...
9
- def edges(self): ...
10
- def get_node(self, index): ...
11
- def get_relationship(self, index): ...
12
- def first_node(self): ...
13
- def last_node(self): ...
14
- def edge_count(self): ...
15
- def nodes_count(self): ...
16
- def add_node(self, node): ...
17
- def add_edge(self, edge): ...
18
- def __eq__(self, other): ...
@@ -1,74 +0,0 @@
1
- from typing import Any, ClassVar, Literal
2
-
3
- LABELS_ADDED: str
4
- NODES_CREATED: str
5
- NODES_DELETED: str
6
- RELATIONSHIPS_DELETED: str
7
- PROPERTIES_SET: str
8
- RELATIONSHIPS_CREATED: str
9
- INDICES_CREATED: str
10
- INDICES_DELETED: str
11
- CACHED_EXECUTION: str
12
- INTERNAL_EXECUTION_TIME: str
13
- STATS: Any
14
-
15
- class ResultSetColumnTypes:
16
- COLUMN_UNKNOWN: ClassVar[Literal[0]]
17
- COLUMN_SCALAR: ClassVar[Literal[1]]
18
- COLUMN_NODE: ClassVar[Literal[2]]
19
- COLUMN_RELATION: ClassVar[Literal[3]]
20
-
21
- class ResultSetScalarTypes:
22
- VALUE_UNKNOWN: ClassVar[Literal[0]]
23
- VALUE_NULL: ClassVar[Literal[1]]
24
- VALUE_STRING: ClassVar[Literal[2]]
25
- VALUE_INTEGER: ClassVar[Literal[3]]
26
- VALUE_BOOLEAN: ClassVar[Literal[4]]
27
- VALUE_DOUBLE: ClassVar[Literal[5]]
28
- VALUE_ARRAY: ClassVar[Literal[6]]
29
- VALUE_EDGE: ClassVar[Literal[7]]
30
- VALUE_NODE: ClassVar[Literal[8]]
31
- VALUE_PATH: ClassVar[Literal[9]]
32
- VALUE_MAP: ClassVar[Literal[10]]
33
- VALUE_POINT: ClassVar[Literal[11]]
34
-
35
- class QueryResult:
36
- graph: Any
37
- header: Any
38
- result_set: Any
39
- def __init__(self, graph, response, profile: bool = False) -> None: ...
40
- def parse_results(self, raw_result_set) -> None: ...
41
- statistics: Any
42
- def parse_statistics(self, raw_statistics) -> None: ...
43
- def parse_header(self, raw_result_set): ...
44
- def parse_records(self, raw_result_set): ...
45
- def parse_entity_properties(self, props): ...
46
- def parse_string(self, cell): ...
47
- def parse_node(self, cell): ...
48
- def parse_edge(self, cell): ...
49
- def parse_path(self, cell): ...
50
- def parse_map(self, cell): ...
51
- def parse_point(self, cell): ...
52
- def parse_scalar(self, cell): ...
53
- def parse_profile(self, response) -> None: ...
54
- def is_empty(self): ...
55
- @property
56
- def labels_added(self): ...
57
- @property
58
- def nodes_created(self): ...
59
- @property
60
- def nodes_deleted(self): ...
61
- @property
62
- def properties_set(self): ...
63
- @property
64
- def relationships_created(self): ...
65
- @property
66
- def relationships_deleted(self): ...
67
- @property
68
- def indices_created(self): ...
69
- @property
70
- def indices_deleted(self): ...
71
- @property
72
- def cached_execution(self): ...
73
- @property
74
- def run_time_ms(self): ...
@@ -1,10 +0,0 @@
1
- def list_or_args(keys, args): ...
2
- def nativestr(x): ...
3
- def delist(x): ...
4
- def parse_to_list(response): ...
5
- def parse_list_to_dict(response): ...
6
- def parse_to_dict(response): ...
7
- def random_string(length: int = 10) -> str: ...
8
- def quote_string(v): ...
9
- def decode_dict_keys(obj): ...
10
- def stringify_param_value(value): ...
@@ -1,15 +0,0 @@
1
- from _typeshed import Incomplete
2
- from typing import Any
3
-
4
- from ...client import Pipeline as ClientPipeline
5
- from .commands import JSONCommands
6
-
7
- class JSON(JSONCommands):
8
- MODULE_CALLBACKS: dict[str, Any]
9
- client: Any
10
- execute_command: Any
11
- MODULE_VERSION: Incomplete | None
12
- def __init__(self, client, version: Incomplete | None = None, decoder=..., encoder=...) -> None: ...
13
- def pipeline(self, transaction: bool = True, shard_hint: Incomplete | None = None) -> Pipeline: ...
14
-
15
- class Pipeline(JSONCommands, ClientPipeline[Incomplete]): ... # type: ignore[misc]
@@ -1,32 +0,0 @@
1
- from _typeshed import Incomplete
2
-
3
- class JSONCommands:
4
- def arrappend(self, name: str, path: str | None = ".", *args) -> list[int | None]: ...
5
- def arrindex(
6
- self, name: str, path: str, scalar: int, start: int | None = None, stop: int | None = None
7
- ) -> list[int | None]: ...
8
- def arrinsert(self, name: str, path: str, index: int, *args) -> list[int | None]: ...
9
- def arrlen(self, name: str, path: str | None = ".") -> list[int | None]: ...
10
- def arrpop(self, name: str, path: str | None = ".", index: int | None = -1) -> list[str | None]: ...
11
- def arrtrim(self, name: str, path: str, start: int, stop: int) -> list[int | None]: ...
12
- def type(self, name: str, path: str | None = ".") -> list[str]: ...
13
- def resp(self, name: str, path: str | None = ".") -> list[Incomplete]: ...
14
- def objkeys(self, name, path="."): ...
15
- def objlen(self, name, path="."): ...
16
- def numincrby(self, name, path, number): ...
17
- def nummultby(self, name, path, number): ...
18
- def clear(self, name, path="."): ...
19
- def delete(self, key, path="."): ...
20
- forget = delete
21
- def get(self, name, *args, no_escape: bool = False): ...
22
- def mget(self, keys, path): ...
23
- def set(self, name, path, obj, nx: bool = False, xx: bool = False, decode_keys: bool = False): ...
24
- def set_file(self, name, path, file_name, nx: bool = False, xx: bool = False, decode_keys: bool = False): ...
25
- def set_path(self, json_path, root_folder, nx: bool = False, xx: bool = False, decode_keys: bool = False): ...
26
- def strlen(self, name, path: Incomplete | None = None): ...
27
- def toggle(self, name, path="."): ...
28
- def strappend(self, name, value, path="."): ...
29
- def debug(self, subcommand, key: Incomplete | None = None, path="."): ...
30
- def jsonget(self, *args, **kwargs): ...
31
- def jsonmget(self, *args, **kwargs): ...
32
- def jsonset(self, *args, **kwargs): ...
@@ -1,4 +0,0 @@
1
- def bulk_of_jsons(d): ...
2
- def decode_dict_keys(obj): ...
3
- def unstring(obj): ...
4
- def decode_list(b): ...
@@ -1,5 +0,0 @@
1
- class Path:
2
- strPath: str
3
- @staticmethod
4
- def root_path() -> str: ...
5
- def __init__(self, path: str) -> None: ...
@@ -1,8 +0,0 @@
1
- from redis.client import AbstractRedis
2
- from redis.typing import EncodableT
3
-
4
- class CommandsParser:
5
- commands: dict[str, str]
6
- def __init__(self, redis_connection: AbstractRedis) -> None: ...
7
- def initialize(self, r: AbstractRedis) -> None: ...
8
- def get_keys(self, redis_conn: AbstractRedis, *args: EncodableT) -> list[EncodableT] | None: ...
@@ -1,14 +0,0 @@
1
- from .json import JSON
2
- from .search import Search
3
- from .timeseries import TimeSeries
4
-
5
- class RedisModuleCommands:
6
- def json(self, encoder=..., decoder=...) -> JSON: ...
7
- def ft(self, index_name: str = "idx") -> Search: ...
8
- def ts(self) -> TimeSeries: ...
9
- def bf(self): ...
10
- def cf(self): ...
11
- def cms(self): ...
12
- def topk(self): ...
13
- def tdigest(self): ...
14
- def graph(self, index_name: str = "idx"): ...
@@ -1,22 +0,0 @@
1
- from _typeshed import Incomplete
2
-
3
- from .commands import SearchCommands
4
-
5
- class Search(SearchCommands):
6
- class BatchIndexer:
7
- def __init__(self, client, chunk_size: int = 1000) -> None: ...
8
- def add_document(
9
- self,
10
- doc_id,
11
- nosave: bool = False,
12
- score: float = 1.0,
13
- payload: Incomplete | None = None,
14
- replace: bool = False,
15
- partial: bool = False,
16
- no_create: bool = False,
17
- **fields,
18
- ): ...
19
- def add_document_hash(self, doc_id, score: float = 1.0, replace: bool = False): ...
20
- def commit(self): ...
21
-
22
- def __init__(self, client, index_name: str = "idx") -> None: ...
@@ -1,53 +0,0 @@
1
- from typing import Any, ClassVar, Literal
2
-
3
- FIELDNAME: Any
4
-
5
- class Limit:
6
- offset: Any
7
- count: Any
8
- def __init__(self, offset: int = 0, count: int = 0) -> None: ...
9
- def build_args(self): ...
10
-
11
- class Reducer:
12
- NAME: ClassVar[None]
13
- def __init__(self, *args) -> None: ...
14
- def alias(self, alias): ...
15
- @property
16
- def args(self): ...
17
-
18
- class SortDirection:
19
- DIRSTRING: ClassVar[str | None]
20
- field: Any
21
- def __init__(self, field) -> None: ...
22
-
23
- class Asc(SortDirection):
24
- DIRSTRING: ClassVar[Literal["ASC"]]
25
-
26
- class Desc(SortDirection):
27
- DIRSTRING: ClassVar[Literal["DESC"]]
28
-
29
- class AggregateRequest:
30
- def __init__(self, query: str = "*") -> None: ...
31
- def load(self, *fields): ...
32
- def group_by(self, fields, *reducers): ...
33
- def apply(self, **kwexpr): ...
34
- def limit(self, offset, num): ...
35
- def sort_by(self, *fields, **kwargs): ...
36
- def filter(self, expressions): ...
37
- def with_schema(self): ...
38
- def verbatim(self): ...
39
- def cursor(self, count: int = 0, max_idle: float = 0.0): ...
40
- def build_args(self): ...
41
-
42
- class Cursor:
43
- cid: Any
44
- max_idle: int
45
- count: int
46
- def __init__(self, cid) -> None: ...
47
- def build_args(self): ...
48
-
49
- class AggregateResult:
50
- rows: Any
51
- cursor: Any
52
- schema: Any
53
- def __init__(self, rows, cursor, schema) -> None: ...
@@ -1,111 +0,0 @@
1
- from _typeshed import Incomplete
2
- from collections.abc import Mapping
3
- from typing import Any, Literal
4
- from typing_extensions import TypeAlias
5
-
6
- from .aggregation import AggregateRequest, AggregateResult, Cursor
7
- from .query import Query
8
- from .result import Result
9
-
10
- _QueryParams: TypeAlias = Mapping[str, str | float]
11
-
12
- NUMERIC: Literal["NUMERIC"]
13
-
14
- CREATE_CMD: Literal["FT.CREATE"]
15
- ALTER_CMD: Literal["FT.ALTER"]
16
- SEARCH_CMD: Literal["FT.SEARCH"]
17
- ADD_CMD: Literal["FT.ADD"]
18
- ADDHASH_CMD: Literal["FT.ADDHASH"]
19
- DROP_CMD: Literal["FT.DROP"]
20
- EXPLAIN_CMD: Literal["FT.EXPLAIN"]
21
- EXPLAINCLI_CMD: Literal["FT.EXPLAINCLI"]
22
- DEL_CMD: Literal["FT.DEL"]
23
- AGGREGATE_CMD: Literal["FT.AGGREGATE"]
24
- PROFILE_CMD: Literal["FT.PROFILE"]
25
- CURSOR_CMD: Literal["FT.CURSOR"]
26
- SPELLCHECK_CMD: Literal["FT.SPELLCHECK"]
27
- DICT_ADD_CMD: Literal["FT.DICTADD"]
28
- DICT_DEL_CMD: Literal["FT.DICTDEL"]
29
- DICT_DUMP_CMD: Literal["FT.DICTDUMP"]
30
- GET_CMD: Literal["FT.GET"]
31
- MGET_CMD: Literal["FT.MGET"]
32
- CONFIG_CMD: Literal["FT.CONFIG"]
33
- TAGVALS_CMD: Literal["FT.TAGVALS"]
34
- ALIAS_ADD_CMD: Literal["FT.ALIASADD"]
35
- ALIAS_UPDATE_CMD: Literal["FT.ALIASUPDATE"]
36
- ALIAS_DEL_CMD: Literal["FT.ALIASDEL"]
37
- INFO_CMD: Literal["FT.INFO"]
38
- SUGADD_COMMAND: Literal["FT.SUGADD"]
39
- SUGDEL_COMMAND: Literal["FT.SUGDEL"]
40
- SUGLEN_COMMAND: Literal["FT.SUGLEN"]
41
- SUGGET_COMMAND: Literal["FT.SUGGET"]
42
- SYNUPDATE_CMD: Literal["FT.SYNUPDATE"]
43
- SYNDUMP_CMD: Literal["FT.SYNDUMP"]
44
-
45
- NOOFFSETS: Literal["NOOFFSETS"]
46
- NOFIELDS: Literal["NOFIELDS"]
47
- STOPWORDS: Literal["STOPWORDS"]
48
- WITHSCORES: Literal["WITHSCORES"]
49
- FUZZY: Literal["FUZZY"]
50
- WITHPAYLOADS: Literal["WITHPAYLOADS"]
51
-
52
- class SearchCommands:
53
- def batch_indexer(self, chunk_size: int = 100): ...
54
- def create_index(
55
- self,
56
- fields,
57
- no_term_offsets: bool = False,
58
- no_field_flags: bool = False,
59
- stopwords: Incomplete | None = None,
60
- definition: Incomplete | None = None,
61
- max_text_fields: bool = False, # added in 4.1.1
62
- temporary: Incomplete | None = None, # added in 4.1.1
63
- no_highlight: bool = False, # added in 4.1.1
64
- no_term_frequencies: bool = False, # added in 4.1.1
65
- skip_initial_scan: bool = False, # added in 4.1.1
66
- ): ...
67
- def alter_schema_add(self, fields): ...
68
- def dropindex(self, delete_documents: bool = False): ...
69
- def add_document(
70
- self,
71
- doc_id,
72
- nosave: bool = False,
73
- score: float = 1.0,
74
- payload: Incomplete | None = None,
75
- replace: bool = False,
76
- partial: bool = False,
77
- language: Incomplete | None = None,
78
- no_create: bool = False,
79
- **fields,
80
- ): ...
81
- def add_document_hash(self, doc_id, score: float = 1.0, language: Incomplete | None = None, replace: bool = False): ...
82
- def delete_document(self, doc_id, conn: Incomplete | None = None, delete_actual_document: bool = False): ...
83
- def load_document(self, id): ...
84
- def get(self, *ids): ...
85
- def info(self): ...
86
- def get_params_args(self, query_params: _QueryParams) -> list[Any]: ...
87
- def search(self, query: str | Query, query_params: _QueryParams | None = None) -> Result: ...
88
- def explain(self, query: str | Query, query_params: _QueryParams | None = None): ...
89
- def explain_cli(self, query): ...
90
- def aggregate(self, query: AggregateRequest | Cursor, query_params: _QueryParams | None = None) -> AggregateResult: ...
91
- def profile(
92
- self, query: str | Query | AggregateRequest, limited: bool = False, query_params: Mapping[str, str | float] | None = None
93
- ) -> tuple[Incomplete, Incomplete]: ...
94
- def spellcheck(
95
- self, query, distance: Incomplete | None = None, include: Incomplete | None = None, exclude: Incomplete | None = None
96
- ): ...
97
- def dict_add(self, name, *terms): ...
98
- def dict_del(self, name, *terms): ...
99
- def dict_dump(self, name): ...
100
- def config_set(self, option: str, value: str) -> bool: ...
101
- def config_get(self, option: str) -> dict[str, str]: ...
102
- def tagvals(self, tagfield): ...
103
- def aliasadd(self, alias): ...
104
- def aliasupdate(self, alias): ...
105
- def aliasdel(self, alias): ...
106
- def sugadd(self, key, *suggestions, **kwargs): ...
107
- def suglen(self, key): ...
108
- def sugdel(self, key, string): ...
109
- def sugget(self, key, prefix, fuzzy: bool = False, num: int = 10, with_scores: bool = False, with_payloads: bool = False): ...
110
- def synupdate(self, groupid, skipinitial: bool = False, *terms): ...
111
- def syndump(self): ...
@@ -1,52 +0,0 @@
1
- from _typeshed import Incomplete
2
- from typing import Any
3
-
4
- class Query:
5
- def __init__(self, query_string) -> None: ...
6
- def query_string(self): ...
7
- def limit_ids(self, *ids): ...
8
- def return_fields(self, *fields): ...
9
- def return_field(self, field, as_field: Incomplete | None = None): ...
10
- def summarize(
11
- self,
12
- fields: Incomplete | None = None,
13
- context_len: Incomplete | None = None,
14
- num_frags: Incomplete | None = None,
15
- sep: Incomplete | None = None,
16
- ): ...
17
- def highlight(self, fields: Incomplete | None = None, tags: Incomplete | None = None): ...
18
- def language(self, language): ...
19
- def slop(self, slop): ...
20
- def in_order(self): ...
21
- def scorer(self, scorer): ...
22
- def get_args(self): ...
23
- def paging(self, offset, num): ...
24
- def verbatim(self): ...
25
- def no_content(self): ...
26
- def no_stopwords(self): ...
27
- def with_payloads(self): ...
28
- def with_scores(self): ...
29
- def limit_fields(self, *fields): ...
30
- def add_filter(self, flt): ...
31
- def sort_by(self, field, asc: bool = True): ...
32
- def expander(self, expander): ...
33
-
34
- class Filter:
35
- args: Any
36
- def __init__(self, keyword, field, *args) -> None: ...
37
-
38
- class NumericFilter(Filter):
39
- INF: str
40
- NEG_INF: str
41
- def __init__(self, field, minval, maxval, minExclusive: bool = False, maxExclusive: bool = False) -> None: ...
42
-
43
- class GeoFilter(Filter):
44
- METERS: str
45
- KILOMETERS: str
46
- FEET: str
47
- MILES: str
48
- def __init__(self, field, lon, lat, radius, unit="km") -> None: ...
49
-
50
- class SortbyField:
51
- args: Any
52
- def __init__(self, field, asc: bool = True) -> None: ...
@@ -1,7 +0,0 @@
1
- from typing import Any
2
-
3
- class Result:
4
- total: Any
5
- duration: Any
6
- docs: Any
7
- def __init__(self, res, hascontent, duration: int = 0, has_payload: bool = False, with_scores: bool = False) -> None: ...
@@ -1,17 +0,0 @@
1
- class SentinelCommands:
2
- def sentinel(self, *args): ...
3
- def sentinel_get_master_addr_by_name(self, service_name): ...
4
- def sentinel_master(self, service_name): ...
5
- def sentinel_masters(self): ...
6
- def sentinel_monitor(self, name, ip, port, quorum): ...
7
- def sentinel_remove(self, name): ...
8
- def sentinel_sentinels(self, service_name): ...
9
- def sentinel_set(self, name, option, value): ...
10
- def sentinel_slaves(self, service_name): ...
11
- def sentinel_reset(self, pattern): ...
12
- def sentinel_failover(self, new_master_name): ...
13
- def sentinel_ckquorum(self, new_master_name): ...
14
- def sentinel_flushconfig(self): ...
15
-
16
- class AsyncSentinelCommands(SentinelCommands):
17
- async def sentinel(self, *args) -> None: ...
@@ -1,14 +0,0 @@
1
- from _typeshed import Incomplete
2
- from typing import Any
3
-
4
- from ...client import Pipeline as ClientPipeline
5
- from .commands import TimeSeriesCommands
6
-
7
- class TimeSeries(TimeSeriesCommands):
8
- MODULE_CALLBACKS: dict[str, Any]
9
- client: Any
10
- execute_command: Any
11
- def __init__(self, client: Incomplete | None = None, **kwargs) -> None: ...
12
- def pipeline(self, transaction: bool = True, shard_hint: Incomplete | None = None) -> Pipeline: ...
13
-
14
- class Pipeline(TimeSeriesCommands, ClientPipeline[Incomplete]): ... # type: ignore[misc]