singlestoredb 1.16.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (183) hide show
  1. singlestoredb/__init__.py +75 -0
  2. singlestoredb/ai/__init__.py +2 -0
  3. singlestoredb/ai/chat.py +139 -0
  4. singlestoredb/ai/embeddings.py +128 -0
  5. singlestoredb/alchemy/__init__.py +90 -0
  6. singlestoredb/apps/__init__.py +3 -0
  7. singlestoredb/apps/_cloud_functions.py +90 -0
  8. singlestoredb/apps/_config.py +72 -0
  9. singlestoredb/apps/_connection_info.py +18 -0
  10. singlestoredb/apps/_dashboards.py +47 -0
  11. singlestoredb/apps/_process.py +32 -0
  12. singlestoredb/apps/_python_udfs.py +100 -0
  13. singlestoredb/apps/_stdout_supress.py +30 -0
  14. singlestoredb/apps/_uvicorn_util.py +36 -0
  15. singlestoredb/auth.py +245 -0
  16. singlestoredb/config.py +484 -0
  17. singlestoredb/connection.py +1487 -0
  18. singlestoredb/converters.py +950 -0
  19. singlestoredb/docstring/__init__.py +33 -0
  20. singlestoredb/docstring/attrdoc.py +126 -0
  21. singlestoredb/docstring/common.py +230 -0
  22. singlestoredb/docstring/epydoc.py +267 -0
  23. singlestoredb/docstring/google.py +412 -0
  24. singlestoredb/docstring/numpydoc.py +562 -0
  25. singlestoredb/docstring/parser.py +100 -0
  26. singlestoredb/docstring/py.typed +1 -0
  27. singlestoredb/docstring/rest.py +256 -0
  28. singlestoredb/docstring/tests/__init__.py +1 -0
  29. singlestoredb/docstring/tests/_pydoctor.py +21 -0
  30. singlestoredb/docstring/tests/test_epydoc.py +729 -0
  31. singlestoredb/docstring/tests/test_google.py +1007 -0
  32. singlestoredb/docstring/tests/test_numpydoc.py +1100 -0
  33. singlestoredb/docstring/tests/test_parse_from_object.py +109 -0
  34. singlestoredb/docstring/tests/test_parser.py +248 -0
  35. singlestoredb/docstring/tests/test_rest.py +547 -0
  36. singlestoredb/docstring/tests/test_util.py +70 -0
  37. singlestoredb/docstring/util.py +141 -0
  38. singlestoredb/exceptions.py +120 -0
  39. singlestoredb/functions/__init__.py +16 -0
  40. singlestoredb/functions/decorator.py +201 -0
  41. singlestoredb/functions/dtypes.py +1793 -0
  42. singlestoredb/functions/ext/__init__.py +1 -0
  43. singlestoredb/functions/ext/arrow.py +375 -0
  44. singlestoredb/functions/ext/asgi.py +2133 -0
  45. singlestoredb/functions/ext/json.py +420 -0
  46. singlestoredb/functions/ext/mmap.py +413 -0
  47. singlestoredb/functions/ext/rowdat_1.py +724 -0
  48. singlestoredb/functions/ext/timer.py +89 -0
  49. singlestoredb/functions/ext/utils.py +218 -0
  50. singlestoredb/functions/signature.py +1578 -0
  51. singlestoredb/functions/typing/__init__.py +41 -0
  52. singlestoredb/functions/typing/numpy.py +20 -0
  53. singlestoredb/functions/typing/pandas.py +2 -0
  54. singlestoredb/functions/typing/polars.py +2 -0
  55. singlestoredb/functions/typing/pyarrow.py +2 -0
  56. singlestoredb/functions/utils.py +421 -0
  57. singlestoredb/fusion/__init__.py +11 -0
  58. singlestoredb/fusion/graphql.py +213 -0
  59. singlestoredb/fusion/handler.py +916 -0
  60. singlestoredb/fusion/handlers/__init__.py +0 -0
  61. singlestoredb/fusion/handlers/export.py +525 -0
  62. singlestoredb/fusion/handlers/files.py +690 -0
  63. singlestoredb/fusion/handlers/job.py +660 -0
  64. singlestoredb/fusion/handlers/models.py +250 -0
  65. singlestoredb/fusion/handlers/stage.py +502 -0
  66. singlestoredb/fusion/handlers/utils.py +324 -0
  67. singlestoredb/fusion/handlers/workspace.py +956 -0
  68. singlestoredb/fusion/registry.py +249 -0
  69. singlestoredb/fusion/result.py +399 -0
  70. singlestoredb/http/__init__.py +27 -0
  71. singlestoredb/http/connection.py +1267 -0
  72. singlestoredb/magics/__init__.py +34 -0
  73. singlestoredb/magics/run_personal.py +137 -0
  74. singlestoredb/magics/run_shared.py +134 -0
  75. singlestoredb/management/__init__.py +9 -0
  76. singlestoredb/management/billing_usage.py +148 -0
  77. singlestoredb/management/cluster.py +462 -0
  78. singlestoredb/management/export.py +295 -0
  79. singlestoredb/management/files.py +1102 -0
  80. singlestoredb/management/inference_api.py +105 -0
  81. singlestoredb/management/job.py +887 -0
  82. singlestoredb/management/manager.py +373 -0
  83. singlestoredb/management/organization.py +226 -0
  84. singlestoredb/management/region.py +169 -0
  85. singlestoredb/management/utils.py +423 -0
  86. singlestoredb/management/workspace.py +1927 -0
  87. singlestoredb/mysql/__init__.py +177 -0
  88. singlestoredb/mysql/_auth.py +298 -0
  89. singlestoredb/mysql/charset.py +214 -0
  90. singlestoredb/mysql/connection.py +2032 -0
  91. singlestoredb/mysql/constants/CLIENT.py +38 -0
  92. singlestoredb/mysql/constants/COMMAND.py +32 -0
  93. singlestoredb/mysql/constants/CR.py +78 -0
  94. singlestoredb/mysql/constants/ER.py +474 -0
  95. singlestoredb/mysql/constants/EXTENDED_TYPE.py +3 -0
  96. singlestoredb/mysql/constants/FIELD_TYPE.py +48 -0
  97. singlestoredb/mysql/constants/FLAG.py +15 -0
  98. singlestoredb/mysql/constants/SERVER_STATUS.py +10 -0
  99. singlestoredb/mysql/constants/VECTOR_TYPE.py +6 -0
  100. singlestoredb/mysql/constants/__init__.py +0 -0
  101. singlestoredb/mysql/converters.py +271 -0
  102. singlestoredb/mysql/cursors.py +896 -0
  103. singlestoredb/mysql/err.py +92 -0
  104. singlestoredb/mysql/optionfile.py +20 -0
  105. singlestoredb/mysql/protocol.py +450 -0
  106. singlestoredb/mysql/tests/__init__.py +19 -0
  107. singlestoredb/mysql/tests/base.py +126 -0
  108. singlestoredb/mysql/tests/conftest.py +37 -0
  109. singlestoredb/mysql/tests/test_DictCursor.py +132 -0
  110. singlestoredb/mysql/tests/test_SSCursor.py +141 -0
  111. singlestoredb/mysql/tests/test_basic.py +452 -0
  112. singlestoredb/mysql/tests/test_connection.py +851 -0
  113. singlestoredb/mysql/tests/test_converters.py +58 -0
  114. singlestoredb/mysql/tests/test_cursor.py +141 -0
  115. singlestoredb/mysql/tests/test_err.py +16 -0
  116. singlestoredb/mysql/tests/test_issues.py +514 -0
  117. singlestoredb/mysql/tests/test_load_local.py +75 -0
  118. singlestoredb/mysql/tests/test_nextset.py +88 -0
  119. singlestoredb/mysql/tests/test_optionfile.py +27 -0
  120. singlestoredb/mysql/tests/thirdparty/__init__.py +6 -0
  121. singlestoredb/mysql/tests/thirdparty/test_MySQLdb/__init__.py +9 -0
  122. singlestoredb/mysql/tests/thirdparty/test_MySQLdb/capabilities.py +323 -0
  123. singlestoredb/mysql/tests/thirdparty/test_MySQLdb/dbapi20.py +865 -0
  124. singlestoredb/mysql/tests/thirdparty/test_MySQLdb/test_MySQLdb_capabilities.py +110 -0
  125. singlestoredb/mysql/tests/thirdparty/test_MySQLdb/test_MySQLdb_dbapi20.py +224 -0
  126. singlestoredb/mysql/tests/thirdparty/test_MySQLdb/test_MySQLdb_nonstandard.py +101 -0
  127. singlestoredb/mysql/times.py +23 -0
  128. singlestoredb/notebook/__init__.py +16 -0
  129. singlestoredb/notebook/_objects.py +213 -0
  130. singlestoredb/notebook/_portal.py +352 -0
  131. singlestoredb/py.typed +0 -0
  132. singlestoredb/pytest.py +352 -0
  133. singlestoredb/server/__init__.py +0 -0
  134. singlestoredb/server/docker.py +452 -0
  135. singlestoredb/server/free_tier.py +267 -0
  136. singlestoredb/tests/__init__.py +0 -0
  137. singlestoredb/tests/alltypes.sql +307 -0
  138. singlestoredb/tests/alltypes_no_nulls.sql +208 -0
  139. singlestoredb/tests/empty.sql +0 -0
  140. singlestoredb/tests/ext_funcs/__init__.py +702 -0
  141. singlestoredb/tests/local_infile.csv +3 -0
  142. singlestoredb/tests/test.ipynb +18 -0
  143. singlestoredb/tests/test.sql +680 -0
  144. singlestoredb/tests/test2.ipynb +18 -0
  145. singlestoredb/tests/test2.sql +1 -0
  146. singlestoredb/tests/test_basics.py +1332 -0
  147. singlestoredb/tests/test_config.py +318 -0
  148. singlestoredb/tests/test_connection.py +3103 -0
  149. singlestoredb/tests/test_dbapi.py +27 -0
  150. singlestoredb/tests/test_exceptions.py +45 -0
  151. singlestoredb/tests/test_ext_func.py +1472 -0
  152. singlestoredb/tests/test_ext_func_data.py +1101 -0
  153. singlestoredb/tests/test_fusion.py +1527 -0
  154. singlestoredb/tests/test_http.py +288 -0
  155. singlestoredb/tests/test_management.py +1599 -0
  156. singlestoredb/tests/test_plugin.py +33 -0
  157. singlestoredb/tests/test_results.py +171 -0
  158. singlestoredb/tests/test_types.py +132 -0
  159. singlestoredb/tests/test_udf.py +737 -0
  160. singlestoredb/tests/test_udf_returns.py +459 -0
  161. singlestoredb/tests/test_vectorstore.py +51 -0
  162. singlestoredb/tests/test_xdict.py +333 -0
  163. singlestoredb/tests/utils.py +141 -0
  164. singlestoredb/types.py +373 -0
  165. singlestoredb/utils/__init__.py +0 -0
  166. singlestoredb/utils/config.py +950 -0
  167. singlestoredb/utils/convert_rows.py +69 -0
  168. singlestoredb/utils/debug.py +13 -0
  169. singlestoredb/utils/dtypes.py +205 -0
  170. singlestoredb/utils/events.py +65 -0
  171. singlestoredb/utils/mogrify.py +151 -0
  172. singlestoredb/utils/results.py +585 -0
  173. singlestoredb/utils/xdict.py +425 -0
  174. singlestoredb/vectorstore.py +192 -0
  175. singlestoredb/warnings.py +5 -0
  176. singlestoredb-1.16.1.dist-info/METADATA +165 -0
  177. singlestoredb-1.16.1.dist-info/RECORD +183 -0
  178. singlestoredb-1.16.1.dist-info/WHEEL +5 -0
  179. singlestoredb-1.16.1.dist-info/entry_points.txt +2 -0
  180. singlestoredb-1.16.1.dist-info/licenses/LICENSE +201 -0
  181. singlestoredb-1.16.1.dist-info/top_level.txt +3 -0
  182. sqlx/__init__.py +4 -0
  183. sqlx/magic.py +113 -0
@@ -0,0 +1,165 @@
1
+ Metadata-Version: 2.4
2
+ Name: singlestoredb
3
+ Version: 1.16.1
4
+ Summary: Interface to the SingleStoreDB database and workspace management APIs
5
+ Author-email: SingleStore <support@singlestore.com>
6
+ License: Apache-2.0
7
+ Project-URL: Homepage, https://github.com/singlestore-labs/singlestoredb-python
8
+ Classifier: Development Status :: 5 - Production/Stable
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Programming Language :: Python :: 3 :: Only
11
+ Classifier: Topic :: Database
12
+ Requires-Python: >=3.9
13
+ Description-Content-Type: text/markdown
14
+ License-File: LICENSE
15
+ Requires-Dist: PyJWT
16
+ Requires-Dist: parsimonious
17
+ Requires-Dist: requests
18
+ Requires-Dist: sqlparams
19
+ Requires-Dist: tomli>=1.1.0; python_version < "3.11"
20
+ Requires-Dist: typing-extensions<=4.13.2; python_version < "3.11"
21
+ Provides-Extra: dataframe
22
+ Requires-Dist: ibis-singlestoredb; extra == "dataframe"
23
+ Provides-Extra: dbt
24
+ Requires-Dist: dbt-singlestore; extra == "dbt"
25
+ Provides-Extra: docker
26
+ Requires-Dist: docker; extra == "docker"
27
+ Provides-Extra: ed22519
28
+ Requires-Dist: PyNaCl>=1.4.0; extra == "ed22519"
29
+ Provides-Extra: gssapi
30
+ Requires-Dist: gssapi; extra == "gssapi"
31
+ Provides-Extra: ibis
32
+ Requires-Dist: ibis-singlestoredb; extra == "ibis"
33
+ Provides-Extra: kerberos
34
+ Requires-Dist: gssapi; extra == "kerberos"
35
+ Provides-Extra: pytest
36
+ Requires-Dist: pytest; extra == "pytest"
37
+ Provides-Extra: rsa
38
+ Requires-Dist: cryptography; extra == "rsa"
39
+ Provides-Extra: sqlalchemy
40
+ Requires-Dist: sqlalchemy-singlestoredb>=1.0.0; extra == "sqlalchemy"
41
+ Provides-Extra: vectorstore
42
+ Requires-Dist: singlestore-vectorstore>=0.1.2; extra == "vectorstore"
43
+ Provides-Extra: test
44
+ Requires-Dist: coverage; extra == "test"
45
+ Requires-Dist: dash; extra == "test"
46
+ Requires-Dist: fastapi; extra == "test"
47
+ Requires-Dist: ipython; extra == "test"
48
+ Requires-Dist: jupysql; extra == "test"
49
+ Requires-Dist: pandas; extra == "test"
50
+ Requires-Dist: parameterized; extra == "test"
51
+ Requires-Dist: polars; extra == "test"
52
+ Requires-Dist: pyarrow; extra == "test"
53
+ Requires-Dist: pydantic; extra == "test"
54
+ Requires-Dist: pytest; extra == "test"
55
+ Requires-Dist: pytest-cov; extra == "test"
56
+ Requires-Dist: singlestore-vectorstore>=0.1.2; extra == "test"
57
+ Requires-Dist: uvicorn; extra == "test"
58
+ Provides-Extra: docs
59
+ Requires-Dist: sphinx; extra == "docs"
60
+ Requires-Dist: sphinx_rtd_theme; extra == "docs"
61
+ Provides-Extra: build
62
+ Requires-Dist: build; extra == "build"
63
+ Requires-Dist: setuptools>=61.0; extra == "build"
64
+ Requires-Dist: wheel; extra == "build"
65
+ Provides-Extra: dev
66
+ Requires-Dist: singlestoredb[build,docs,test]; extra == "dev"
67
+ Dynamic: license-file
68
+
69
+ # <img src="https://github.com/singlestore-labs/singlestoredb-python/blob/main/resources/singlestore-logo.png" height="60" valign="middle"/> SingleStoreDB Python SDK
70
+
71
+ This project contains a [DB-API 2.0](https://www.python.org/dev/peps/pep-0249/)
72
+ compatible Python interface to the SingleStore database and workspace management API.
73
+
74
+ ## Install
75
+
76
+ This package can be install from PyPI using `pip`:
77
+ ```
78
+ pip install singlestoredb
79
+ ```
80
+
81
+ ## Documentation
82
+
83
+ https://singlestore-labs.github.io/singlestoredb-python
84
+
85
+ ## Usage
86
+
87
+ Connections to the SingleStore database are made using the DB-API parameters
88
+ `host`, `port`, `user`, `password`, etc, but they may also be done using
89
+ URLs that specify these parameters as well (much like the
90
+ [SQLAlchemy](https://www.sqlalchemy.org) package).
91
+ ```
92
+ import singlestoredb as s2
93
+
94
+ # Connect using the default connector
95
+ conn = s2.connect('user:password@host:3306/db_name')
96
+
97
+ # Create a cursor
98
+ cur = conn.cursor()
99
+
100
+ # Execute SQL
101
+ cur.execute('select * from foo')
102
+
103
+ # Fetch the results
104
+ print(cur.description)
105
+ for item in cur:
106
+ print(item)
107
+
108
+ # Close the connection
109
+ conn.close()
110
+ ```
111
+
112
+ Connecting to the HTTP API is done as follows:
113
+ ```
114
+ # Use the HTTP API connector
115
+ conn = s2.connect('https://user:password@host:8080/db_name')
116
+ ```
117
+
118
+ ## Performance
119
+
120
+ While this package is based on [PyMySQL](https://github.com/PyMySQL/PyMySQL)
121
+ which is a pure Python-based MySQL connector, it adds various performance
122
+ enhancements that make it faster than most other connectors. The performance
123
+ improvements come from changes to the data conversion functions, cursor implementations,
124
+ and a C extension that is highly optimized to improve row data reading.
125
+
126
+ The package can be used both in a pure Python mode and as well as a C accelerated
127
+ mode. Generally speaking, the C accelerated version of the client can read
128
+ data 10X faster than PyMySQL, 2X faster than MySQLdb, and 1.5X faster than
129
+ mysql.connector. All of this is done without having to install any 3rd party
130
+ MySQL libraries!
131
+
132
+ Benchmarking was done with a table of 3,533,286 rows each containing a datetime,
133
+ a float, and eight character columns. The data is the same data set used in
134
+ [this article](https://www.singlestore.com/blog/how-to-get-started-with-singlestore/).
135
+ The client and server were running on the same machine and queries were made
136
+ using `fetchone`, `fetchall`, `fetchmany(1000)`, and an iterator over the cursor
137
+ object (e.g., `iter(cur)`). The results are shown below.
138
+
139
+ ### Buffered
140
+
141
+ | | PyMySQL | MySQLdb | mysql.connector | SingleStore (pure Python) | SingleStore |
142
+ |-------------------------|---------|---------|-----------------|---------------------------|-------------|
143
+ | fetchall | 37.0s | 8.7s | 5.6s | 29.0s | 3.7s |
144
+ | fetchmany(1000) | 37.4s | 9.2s | 6.2s | 29.6s | 3.6s |
145
+ | fetchone | 38.2s | 10.1s | 10.2s | 30.9s | 4.8s |
146
+ | iter(cur) | 38.3s | 9.1s | 10.2s | 30.4s | 4.4s |
147
+
148
+ ### Unbuffered
149
+
150
+ | | PyMySQL | MySQLdb | mysql.connector | SingleStore (pure Python) | SingleStore |
151
+ |-------------------------|---------|---------|-----------------|---------------------------|-------------|
152
+ | fetchall | 39.0s | 6.5s | 5.5s | 30.3s | 5.5s |
153
+ | fetchmany(1000) | 39.4s | 7.0s | 6.0s | 30.4s | 4.1s |
154
+ | fetchone | 34.5s | 8.9s | 10.1s | 30.8s | 6.6s |
155
+ | iter(cur) | 39.0s | 9.0s | 10.2s | 31.4s | 6.0s |
156
+
157
+
158
+ ## License
159
+
160
+ This library is licensed under the [Apache 2.0 License](https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/main/LICENSE?token=GHSAT0AAAAAABMGV6QPNR6N23BVICDYK5LAYTVK5EA).
161
+
162
+ ## Resources
163
+
164
+ * [SingleStore](https://singlestore.com)
165
+ * [Python](https://python.org)
@@ -0,0 +1,183 @@
1
+ singlestoredb/__init__.py,sha256=QLRMSqvCTY6TEndORqUlCdLBIRfWyZNKU6bKdTAArcc,2272
2
+ singlestoredb/auth.py,sha256=u8D9tpKzrqa4ssaHjyZnGDX1q8XBpGtuoOkTkSv7B28,7599
3
+ singlestoredb/config.py,sha256=aBdMrPEaNSH-QLi1AXoQaSJsZ9f6ZXoFPN-74Trr6sQ,13935
4
+ singlestoredb/connection.py,sha256=2AW28D1v6nxHaba_eoEl4C5hMeqXZBFyayZ2FSAtixo,46073
5
+ singlestoredb/converters.py,sha256=0D54e-3E2iVzlMYPK0RbGilE9B-kcP380c1Mpze2Nz4,20704
6
+ singlestoredb/exceptions.py,sha256=HuoA6sMRL5qiCiee-_5ddTGmFbYC9Euk8TYUsh5GvTw,3234
7
+ singlestoredb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ singlestoredb/pytest.py,sha256=uhquZ1pDxhZIsh6nWQvr2XSKQsIx1HqFPK9ILGPna3w,11740
9
+ singlestoredb/types.py,sha256=Qp_PWYjSYG6PRnmXAZZ7K2QehUqfoG4KSllI3O1stPE,10397
10
+ singlestoredb/vectorstore.py,sha256=BZb8e7m02_XVHqOyu8tA94R6kHb3n-BC8F08JyJwDzY,8408
11
+ singlestoredb/warnings.py,sha256=1rgEA8pOWtPrOvbQ_GSQw0OGtnQIdKzHQFdiMcuoVSo,127
12
+ singlestoredb/ai/__init__.py,sha256=qZkdcvFwL8GdTwc5f5t91gMDIIihYoaLfMpM1KAERtU,122
13
+ singlestoredb/ai/chat.py,sha256=G462g4jdma1Faqm2undNGUaY2d86xUWUVj4A3KKThck,4681
14
+ singlestoredb/ai/embeddings.py,sha256=Bpoe7kndogPePwkWdxICPXAoP2o6Fyyh1OYZiIqcSUM,4356
15
+ singlestoredb/alchemy/__init__.py,sha256=dXRThusYrs_9GjrhPOw0-vw94in_T8yY9jE7SGCqiQk,2523
16
+ singlestoredb/apps/__init__.py,sha256=dfN97AZz7Np6JML3i9GJrv22ZbNCUletXmsJpQnKhKg,170
17
+ singlestoredb/apps/_cloud_functions.py,sha256=NJJu0uJsK9TjY3yZjgftpFPR-ga-FrOyaiDD4jWFCtE,2704
18
+ singlestoredb/apps/_config.py,sha256=FlV0ABP7qlBJoKo9NOme6Fpp4yUFm5QEpHEHbl1A24o,2441
19
+ singlestoredb/apps/_connection_info.py,sha256=QOr-wcQJn6oCZw2kLEP0Uwzo85CGolGz0QIvlem3gug,303
20
+ singlestoredb/apps/_dashboards.py,sha256=_03fI-GJannamA5lxLvIoC6Mim-H1jTRuI8-dw_P--k,1474
21
+ singlestoredb/apps/_process.py,sha256=G37fk6bzIxzhfEqp2aJBk3JCij-T2HFtTd078k5Xq9I,944
22
+ singlestoredb/apps/_python_udfs.py,sha256=CwGt1ehR6CPvtUfLg8SK_ynXvvWHo_SeU_6xoVHQzys,3158
23
+ singlestoredb/apps/_stdout_supress.py,sha256=wNL4YHEImqT3ptKsPPcolkCWN35vWxahEsi2rM7qpOY,665
24
+ singlestoredb/apps/_uvicorn_util.py,sha256=tFcxd4XlPp_ULITN6aPi5MkPFRaEztD0HrbhBw0B1fk,1117
25
+ singlestoredb/docstring/__init__.py,sha256=tTkEitbunkZ-yw2h620BRB1RSTnSmB47UYa6yyNcksM,843
26
+ singlestoredb/docstring/attrdoc.py,sha256=1eE5JmEQv3TkyYfq4OOQ9tuFOzuCFi3Yx4ehuVvMwsA,4221
27
+ singlestoredb/docstring/common.py,sha256=EQntxc6bsqCwzwOSO_qiIQog-W19dDKeeGUrUVkZmBg,6407
28
+ singlestoredb/docstring/epydoc.py,sha256=gSZmM4Xn1G6JAgg70p2aH5CXjHz644RZ_3lr7nn667c,9103
29
+ singlestoredb/docstring/google.py,sha256=_64n5rc4yCVNJvLah5DkQn7qORKYeQ3-nWRq4CcaHWQ,13813
30
+ singlestoredb/docstring/numpydoc.py,sha256=6B-cpSvJEPnnc80TLzyx5YNLtGpiIujYBngQUmxIDH0,17403
31
+ singlestoredb/docstring/parser.py,sha256=Vmrzsh5TSBzBR4zJgxC-lSXk6PAbZXy5FUs2rN5Efrk,3064
32
+ singlestoredb/docstring/py.typed,sha256=bWew9mHgMy8LqMu7RuqQXFXLBxh2CRx0dUbSx-3wE48,27
33
+ singlestoredb/docstring/rest.py,sha256=yrZp-tmeTPGD_M0BhmXNSurpfMvwMfI_K3ruxVG8eUs,8492
34
+ singlestoredb/docstring/util.py,sha256=Hrc90jdu1bN3MCYeLScJ_ynTBDpWWLBKofrLAWk8KvA,4664
35
+ singlestoredb/docstring/tests/__init__.py,sha256=6VULghkufHkqtZfyiBamwZQNBA3z7f4TMEcBclUqTKE,34
36
+ singlestoredb/docstring/tests/_pydoctor.py,sha256=SC-bFHFocEC3jdrXiD0-HV88Ff2XI96K2LvufeweCNQ,790
37
+ singlestoredb/docstring/tests/test_epydoc.py,sha256=1oLC7L9Uc1XhePLr3G_ie5KIuXPAuSieoLq1dWUSz30,19290
38
+ singlestoredb/docstring/tests/test_google.py,sha256=2dVyFN-NjiuyUC3ZcGEm33aENAZNh9F7Eq_ErmyneIA,27955
39
+ singlestoredb/docstring/tests/test_numpydoc.py,sha256=9qr9jHr4feTF1E09c8J6SHWSXUTHsnoln2_DImYKAYM,29680
40
+ singlestoredb/docstring/tests/test_parse_from_object.py,sha256=gZnfgraFb4CGNaoXpQKTZT-QZet0CKdhikZtN148e84,3862
41
+ singlestoredb/docstring/tests/test_parser.py,sha256=1QAB125mmp5sDImafGDa34hhwTPQNOtkQxp75NJJov4,7445
42
+ singlestoredb/docstring/tests/test_rest.py,sha256=ljbY0zi7Wdk90eCg1xgS3aD9GvzB0TdTRhzHGuykaeM,15389
43
+ singlestoredb/docstring/tests/test_util.py,sha256=ES-bb99Qt1AXtCTDO8CdcWInJJLhH1Mh0e4I8MUsabA,1946
44
+ singlestoredb/functions/__init__.py,sha256=I2GnxOhLb4_7xhgOxdIwmwD5NiK7QYPYaE3PUIX-7xk,471
45
+ singlestoredb/functions/decorator.py,sha256=GrbTMIhXRPlVeVlENrgCjt9aZjZQC7Z4tLOvODAre5Y,6396
46
+ singlestoredb/functions/dtypes.py,sha256=DgJaNXouJ2t-qIqDiQlUYU9IhkXXUTigWeE_MAcmvHM,39814
47
+ singlestoredb/functions/signature.py,sha256=zctCuwthMN7sFW8x0SXHulXE-CuQCcbUsIrvF3UZOYc,45554
48
+ singlestoredb/functions/utils.py,sha256=akVBRz8g42N-_7hrTA7FmzGXnjsr5CS2usUfuBEOFz0,10778
49
+ singlestoredb/functions/ext/__init__.py,sha256=1oLL20yLB1GL9IbFiZD8OReDqiCpFr-yetIR6x1cNkI,23
50
+ singlestoredb/functions/ext/arrow.py,sha256=WB7n1ACslyd8nlbFzUvlbxn1BVuEjA9-BGBEqCWlSOo,9061
51
+ singlestoredb/functions/ext/asgi.py,sha256=i7OsuKd8AtmUfoF9I4N1PqU9nNHdmOUehpIZPQw5ey0,72295
52
+ singlestoredb/functions/ext/json.py,sha256=RIuZdDybEdHuC-f2p6BdjhFjM3iGb3a1PRQ4k11P6N8,10102
53
+ singlestoredb/functions/ext/mmap.py,sha256=RzyNSLRpI5ZJ8YN6k-AvZlRTLjj80j52byHLtW8c3ps,13710
54
+ singlestoredb/functions/ext/rowdat_1.py,sha256=zDgN5utI1zs4pkjjKnqMYP0D3SYqsb2qg2P0QcGhLX0,21121
55
+ singlestoredb/functions/ext/timer.py,sha256=-PR__KbhwAMW4PXJ4fGri2FfrU0jRyz6e6yvmySmjaw,2706
56
+ singlestoredb/functions/ext/utils.py,sha256=oU2NVmkjcS0QHLfdB8SBiRylVq-r0VzTy8nxGvAgjow,6938
57
+ singlestoredb/functions/typing/__init__.py,sha256=7_6Cuf8o07SBP2ExQwqqAIfonW3U9SgezrzB8GpxipI,1348
58
+ singlestoredb/functions/typing/numpy.py,sha256=WO64_HziveGk0dqRrkuZ51aohULy9qYuqaKHAoiiA3A,661
59
+ singlestoredb/functions/typing/pandas.py,sha256=wZUTMbte937EKtGdnFFWB0fFut5unTOyAbn8fSBsfro,83
60
+ singlestoredb/functions/typing/polars.py,sha256=b_UOIXLkvptHiAB7sXSzC7XPHMWNOglCz6h9amCA6Kg,83
61
+ singlestoredb/functions/typing/pyarrow.py,sha256=WkqQrUPS__jYzUJntLLUVDgYIcnqR9HU6Q5grZojZrc,80
62
+ singlestoredb/fusion/__init__.py,sha256=Qo7SuqGw-l-vE8-EI2jhm6hXJkYfOLUKIws9c7LFNX0,356
63
+ singlestoredb/fusion/graphql.py,sha256=ZA3HcDq5rER-dCEavwTqnF7KM0D2LCYIY7nLQk7lSso,5207
64
+ singlestoredb/fusion/handler.py,sha256=EXDwVF4rx05MOfILzXMfmjG8JjNoziTbhHRAhQ8jVBM,28041
65
+ singlestoredb/fusion/registry.py,sha256=jjdRTYZ3ylhy6gAoW5xBj0tkxGFBT-2yLQ0tztTgDIY,6112
66
+ singlestoredb/fusion/result.py,sha256=hyrbBunlhP5trLs6nj6azvlHD29NVztStIqCWHRhiSM,11799
67
+ singlestoredb/fusion/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
+ singlestoredb/fusion/handlers/export.py,sha256=Af4eIMPGKEOpmf4LXnvQsgmnvx5F8B5FkRI20RvEa7o,15309
69
+ singlestoredb/fusion/handlers/files.py,sha256=6SMVn80DrnBWabbd1vevicR827P0Y6-B1bTfqr4VuL4,18971
70
+ singlestoredb/fusion/handlers/job.py,sha256=QqObcgjZ8XItgCoH6KIjWxqadU0pIpLGGEbUl3E9cZQ,21116
71
+ singlestoredb/fusion/handlers/models.py,sha256=2LWx7da7qVc65xFIKPsFikvvA9zF-QxMZJ76HV5inNw,6231
72
+ singlestoredb/fusion/handlers/stage.py,sha256=edViRGlBF7xZUd3ClmpBlMcBc6O4JKdvA9DGgnbGFdU,14272
73
+ singlestoredb/fusion/handlers/utils.py,sha256=ozHOWUraoN8XGTK9JZdhv5HV8AQR8zfUd1yh1kLvUXY,10685
74
+ singlestoredb/fusion/handlers/workspace.py,sha256=OP9edPByqWiFioujK6sqG2hab99Gw7agJEzDbLL_oks,29890
75
+ singlestoredb/http/__init__.py,sha256=A_2ZUCCpvRYIA6YDpPy57wL5R1eZ5SfP6I1To5nfJ2s,912
76
+ singlestoredb/http/connection.py,sha256=WrdDA_2dhGvlf5BAXkvWXjjiNeEvYbGNqM12Z2uQu8g,39745
77
+ singlestoredb/magics/__init__.py,sha256=lZjkT3Webo9c1EQAzlRCRh6B2pckQH8uvNrrB__abcI,1210
78
+ singlestoredb/magics/run_personal.py,sha256=Y5lVpJ8vqOyEjtZkip04Hwi4uZ7CQLU5Rd1MrCmpNvs,5222
79
+ singlestoredb/magics/run_shared.py,sha256=czoO4z6gtoq9ek_41efRBRk-XQiHKuHdY0BOdfKkFrc,5130
80
+ singlestoredb/management/__init__.py,sha256=8q7i6-Cr9x-oZ8-NVAvTo_qtfHEndX4wx2g6GMAAgPQ,304
81
+ singlestoredb/management/billing_usage.py,sha256=9ighjIpcopgIyJOktBYQ6pahBZmWGHOPyyCW4gu9FGs,3735
82
+ singlestoredb/management/cluster.py,sha256=vDefpp2IMZRawvueIqZK2pePWVNnPWb6Szrt8mO8gmg,14419
83
+ singlestoredb/management/export.py,sha256=yR-yZUE9USFrP5OR_5iLFqEc8GLiKDQypSEp08CmT5k,9083
84
+ singlestoredb/management/files.py,sha256=89IhpGw9WdwxVeksavHEDMVn9wb_jxb-utZuIDqkLHw,30477
85
+ singlestoredb/management/inference_api.py,sha256=px4JrziJQMwG73iNnYw_95np9DDrp5zo5mKz8c5EF9o,2742
86
+ singlestoredb/management/job.py,sha256=4-xLWzbE8odQogVVaFer80UEoTAZY1T28VZ9Ug4rbmM,24611
87
+ singlestoredb/management/manager.py,sha256=g7Zj5mLatS3kefNngi5XmrXz1dyZwWnjHgy1JB-Qh-Y,11464
88
+ singlestoredb/management/organization.py,sha256=_JvW0Znu5emR5uYGVEcZvakQqftNb_vRhzmkOoPRPfc,5869
89
+ singlestoredb/management/region.py,sha256=ji3u6ZjQoNJ9i_X4C9ojciYPq4Oz7gKkeeUDndO8dZU,4114
90
+ singlestoredb/management/utils.py,sha256=tJVr6pRGC5RS7jxmlNoYmtB5UKOTGdwTFqygVmCkxEY,13212
91
+ singlestoredb/management/workspace.py,sha256=_TuTiiKHINxWwTmBaOz-oLF223mhYkw4W6qyrmcMt4Y,62183
92
+ singlestoredb/mysql/__init__.py,sha256=olUTAvkiERhDW41JXQMawkg-i0tvBEkoTkII1tt6lxU,4492
93
+ singlestoredb/mysql/_auth.py,sha256=AugRitoUwgRIDFuJxuAH4MWIAmckY7Ji2pP6r_Ng9dY,8043
94
+ singlestoredb/mysql/charset.py,sha256=-FlONDS_oAUF5B3mIgeHBPb_SCt4zHD33arUeBNctU0,10510
95
+ singlestoredb/mysql/connection.py,sha256=1qzXu5fu1f_rr45-CV4hcP9oUcRAyWw-Ch8zS7axcVM,73364
96
+ singlestoredb/mysql/converters.py,sha256=CVe8SDmjbIAhy1xpQ2N5OKWw6t5eWpw-EU3QTlA0Hh0,7500
97
+ singlestoredb/mysql/cursors.py,sha256=aOLfHkj83aYZPOVuhJPkZ83CWByszIBRynq0fqSaWvY,27046
98
+ singlestoredb/mysql/err.py,sha256=-m5rqXi8yhq6b8SCEJ2h0E5Rudh_15dlAU_WbJ1YrM8,2388
99
+ singlestoredb/mysql/optionfile.py,sha256=DqL-rOQcqQncD5eVbPRkwZqo7Pj3Vh40VLx3E_e87TU,655
100
+ singlestoredb/mysql/protocol.py,sha256=PfdILK1oK2hlg1etmYZtrKf1obPlcLC7FyEJHEpIplc,14885
101
+ singlestoredb/mysql/times.py,sha256=2j7purNVnJmjhOUgwUze-r3kNlCWqxjXj-jtqOzBfZI,463
102
+ singlestoredb/mysql/constants/CLIENT.py,sha256=SSvMFPZCTVMU1UWa4zOrfhYMDdR2wG2mS0E5GzJhDsg,878
103
+ singlestoredb/mysql/constants/COMMAND.py,sha256=TGITAUcNWlq2Gwg2wv5UK2ykdTd4LYTk_EcJJOCpGIc,679
104
+ singlestoredb/mysql/constants/CR.py,sha256=z3Oa86nHVDgWcz_XYFOzkfvvfkZmEoNluzpbNOJxjKg,2305
105
+ singlestoredb/mysql/constants/ER.py,sha256=cH5wgU-e70wd0uSygNR5IFCnnXcrR9WLwJPMH22bhUw,12296
106
+ singlestoredb/mysql/constants/EXTENDED_TYPE.py,sha256=HUWYXFsppd0jypu7BKjGqspEuaDwsxBkisoiwN-xEvA,29
107
+ singlestoredb/mysql/constants/FIELD_TYPE.py,sha256=OftDI47xn-sJmwHRuTjC9EFbLEEYDE_1BmD7_u334mg,765
108
+ singlestoredb/mysql/constants/FLAG.py,sha256=Fy-PrCLnUI7fx_o5WypYnUAzWAM0E9d5yL8fFRVKffY,214
109
+ singlestoredb/mysql/constants/SERVER_STATUS.py,sha256=m28Iq5JGCFCWLhafE73-iOvw_9gDGqnytW3NkHpbugA,333
110
+ singlestoredb/mysql/constants/VECTOR_TYPE.py,sha256=4aFqFB7gig4Qnh8G82FkE-rVeJCf-Z7jXaeEarxOqNw,63
111
+ singlestoredb/mysql/constants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
112
+ singlestoredb/mysql/tests/__init__.py,sha256=JFzNFYLRD6dxD9ZvGgGIZOWPMYKW8b4tywBsb_I51J4,997
113
+ singlestoredb/mysql/tests/base.py,sha256=sv_VpPrJDvCt2QRlikG6_YWU3yJX3KEkdc96YRXGvEI,4025
114
+ singlestoredb/mysql/tests/conftest.py,sha256=vWjt2DEnzwlXuOBbz3p_EZXXDopucKGXHsPPPmCAmms,1117
115
+ singlestoredb/mysql/tests/test_DictCursor.py,sha256=oxn_q4DJTT6XqByCzKt0zQYw24_k768_8YJhpYUkDmE,4878
116
+ singlestoredb/mysql/tests/test_SSCursor.py,sha256=1IySbqn6a-1Wt7S04HxO3mUZstVmKIuy0vF8B0ZT06I,4306
117
+ singlestoredb/mysql/tests/test_basic.py,sha256=MsOP0zCvH9Kx1F1guLG4Iiir5ePD-3In_PCNyAJp1Cc,15465
118
+ singlestoredb/mysql/tests/test_connection.py,sha256=MRS4mU9pO4-Ga2GYWRdo640CHH7PTZtucdqB278Srlg,32297
119
+ singlestoredb/mysql/tests/test_converters.py,sha256=lNxgzbkfhw55mYFwSczUJeJHOsY-jXSqjeihdEQuV0w,2002
120
+ singlestoredb/mysql/tests/test_cursor.py,sha256=1OGzKzf7UCcF96X2XN8GnB9xIiUVyXn4GOuzW7hp6Cw,5045
121
+ singlestoredb/mysql/tests/test_err.py,sha256=nxMjsP9aCHT58aIPIrFyPveo2UZaHMYz4voDgY4Wnr0,422
122
+ singlestoredb/mysql/tests/test_issues.py,sha256=Rv0IJaYQu_u88O_pgURpT6V8Eo-cMitjpV59hT9EKrI,18965
123
+ singlestoredb/mysql/tests/test_load_local.py,sha256=EVz1O9LDR31GrvU97eEpBddHaTUhX-zifdUvgCFuICE,2502
124
+ singlestoredb/mysql/tests/test_nextset.py,sha256=CdiCOeZI5a_pdnjMmnQaJLCqUoXeugFj0IhOkJ_LLTA,2725
125
+ singlestoredb/mysql/tests/test_optionfile.py,sha256=eb2WaNzKKu7TjpRmWBAgjv8yXJptyGH964H1Uhuy-U4,585
126
+ singlestoredb/mysql/tests/thirdparty/__init__.py,sha256=M1hysF-gCD33Q8msVNoTDYJ8Lq3xyOlxXe3dUwPySjg,117
127
+ singlestoredb/mysql/tests/thirdparty/test_MySQLdb/__init__.py,sha256=bG2vIeDuGH568xEQjM_YTvnJNgOLB9ofLmwfrBmicQc,307
128
+ singlestoredb/mysql/tests/thirdparty/test_MySQLdb/capabilities.py,sha256=AgEdvx7Njz_Y7KDMeQPMYI7y4nJRKblocVrC0VxVZZE,10171
129
+ singlestoredb/mysql/tests/thirdparty/test_MySQLdb/dbapi20.py,sha256=E5_jnyZEZ7_mZw_P4EAzxMSSgvU8DXpp1kTM_kubdbs,31414
130
+ singlestoredb/mysql/tests/thirdparty/test_MySQLdb/test_MySQLdb_capabilities.py,sha256=szE4Zodgf7YwhkMBOrCvUwhTWppVtaodsqlV-vJ7fmY,3090
131
+ singlestoredb/mysql/tests/thirdparty/test_MySQLdb/test_MySQLdb_dbapi20.py,sha256=t_OzqsVnj_ReBbmY_wx51ZcWbLz9nASZ0hno-9YeiyQ,8022
132
+ singlestoredb/mysql/tests/thirdparty/test_MySQLdb/test_MySQLdb_nonstandard.py,sha256=pl0bvuZo_nzAlYOINxRiR-Zi9khz0W2Pc7vP-K3sQYQ,2819
133
+ singlestoredb/notebook/__init__.py,sha256=v0j1E3MFAtaC8wTrR-F7XY0nytUvQ4XpYhVXddv2xA0,533
134
+ singlestoredb/notebook/_objects.py,sha256=MkB1eowEq5SQXFHY00xAKAyyeLqHu_uaZiA20BCJPaE,8043
135
+ singlestoredb/notebook/_portal.py,sha256=iaoQuPS53pJad88FuV9fIhSVaCJB_ehTrO3TVL4SobM,11358
136
+ singlestoredb/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
137
+ singlestoredb/server/docker.py,sha256=veCbn0xVFR6o1bQLz9f4Gmjrf3VN8yXqvtELYc_7MKs,14525
138
+ singlestoredb/server/free_tier.py,sha256=YPtUX6idwcez9LGBaVllcTpKo8Qk2RZp3MaAZvsZcOg,8386
139
+ singlestoredb/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
140
+ singlestoredb/tests/alltypes.sql,sha256=S_bUJ20MGZht3F7MhFSEIDRUzWV6jm1d4UwHdLW2kwA,7648
141
+ singlestoredb/tests/alltypes_no_nulls.sql,sha256=MCeBEoeZC6mmeG9-4J7vy9ZOIvvKWqqMgdpHQlvDDzs,6240
142
+ singlestoredb/tests/empty.sql,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
143
+ singlestoredb/tests/local_infile.csv,sha256=sBtqjvfkS9aoOVx8nMXYgYv4rDuT4OuYhqUhNRu0O68,42
144
+ singlestoredb/tests/test.ipynb,sha256=jrkI2WoSsUA9xQpKTBCHnsDptryQhPdM5QaxfvYRGpg,216
145
+ singlestoredb/tests/test.sql,sha256=mErluOEZsN0QH5EuSVR8Ki-NSIpdpR8MStuchec_ZKc,18640
146
+ singlestoredb/tests/test2.ipynb,sha256=yd1PE1VK-DwiRd6mYS4_0cPBtuVkvcDtycvTwD-YnDo,218
147
+ singlestoredb/tests/test2.sql,sha256=D4U2GSlOVeo39U8-RMM4YziJzYFfi4Ztm2YXJVJVAS8,37
148
+ singlestoredb/tests/test_basics.py,sha256=Dw1irrtf3gWN7tqGruSH6uhWi5zkmCpJl6ZMQxMqlf4,48446
149
+ singlestoredb/tests/test_config.py,sha256=63lyIQ2KrvGE6C9403B_4Mc90mX4tp42ys5Bih2sXrE,11184
150
+ singlestoredb/tests/test_connection.py,sha256=XhJ4XvtvAuXHjmR794dozQsNRKbjfw5BvlhnBK66EuQ,120237
151
+ singlestoredb/tests/test_dbapi.py,sha256=IKq5Hcwx8WikASP8_AB5fo3TXv7ryWPCVGonoly00gI,652
152
+ singlestoredb/tests/test_exceptions.py,sha256=tfr_8X2w1UmG4nkSBzWGB0C7ehrf1GAVgj6_ODaG-TM,1131
153
+ singlestoredb/tests/test_ext_func.py,sha256=_YREceW1Llwx9Wcamj0up2IXLuBTnuvQqCFOWphckKI,46271
154
+ singlestoredb/tests/test_ext_func_data.py,sha256=kyNklkX1RxSiahI0LZjpqhg3LGDs0iwv8iHuXW3AcSo,47515
155
+ singlestoredb/tests/test_fusion.py,sha256=7YQ_nOQoV_7yD4OEpJz2Ov-zok-cBFK9IOJ3FgZ0xo0,50593
156
+ singlestoredb/tests/test_http.py,sha256=RXasTqBWRn__omj0eLFTJYIbZjd0PPdIV2d4Cqz0MC8,8580
157
+ singlestoredb/tests/test_management.py,sha256=wjJIr9KG_jNGnW6b4EPWf_jrdG9XDcEMex3pjRH8I10,53513
158
+ singlestoredb/tests/test_plugin.py,sha256=qpO9wmWc62VaijN1sJ97YSYIX7I7Y5C6sY-WzwrutDQ,812
159
+ singlestoredb/tests/test_results.py,sha256=wg93sujwt-R9_eJCgSCElgAZhLDkIiAo3qPkPydOv78,6582
160
+ singlestoredb/tests/test_types.py,sha256=jqoAaSjhbgwB3vt0KsTcl7XBWoMMIa0mPFKhEi5bBjo,4500
161
+ singlestoredb/tests/test_udf.py,sha256=ycqSwwwCw3Mq4r0cyIylg63ReSjP4KbMX_7XqoYm-dg,29676
162
+ singlestoredb/tests/test_udf_returns.py,sha256=k31L6Ir2Xw8MEZ18upuu0p_D_OpbrPAzWhDQXVFDS7I,15541
163
+ singlestoredb/tests/test_vectorstore.py,sha256=anHfp5gQrQy8Iw3Ub4mxFEkaZWahs566OXuKqjpkozM,1554
164
+ singlestoredb/tests/test_xdict.py,sha256=fqHspoi39nbX3fIDVkkRXcd5H50xdOsSvK0bxAMQnaE,10408
165
+ singlestoredb/tests/utils.py,sha256=2A2tEdD3t8aXWUnHtAIcFlWrflsz2MlMcCbUDaAG29c,4995
166
+ singlestoredb/tests/ext_funcs/__init__.py,sha256=Gg15gcphVnW5ZXgFT8P8hYSOmgvmVIaUA8jxTC_UgRc,15581
167
+ singlestoredb/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
168
+ singlestoredb/utils/config.py,sha256=m6Rpv1Qm1gtPG60tjT8k0r5hKdSh-5b7gIDo6FHj-8Y,24521
169
+ singlestoredb/utils/convert_rows.py,sha256=A6up7a8Bq-eV2BXdGCotQviqp1Q7XdJ2MA9339hLYVQ,1816
170
+ singlestoredb/utils/debug.py,sha256=0JiLA37u_9CKiDGiN9BK_PtFMUku3vIcNjERWaTNRSU,349
171
+ singlestoredb/utils/dtypes.py,sha256=1qUiB4BJFJ7rOVh2mItQssYbJupV7uq1x8uwX-Eu2Ks,5898
172
+ singlestoredb/utils/events.py,sha256=kSrdOf1PgGKaUf8Cauj3KhPEzA9dWlKIytpUMRGZ_cU,1454
173
+ singlestoredb/utils/mogrify.py,sha256=k2nN6w8OnkaXRtNmA9OiXslBpYeqM8mBEy9rLSLDiB0,4059
174
+ singlestoredb/utils/results.py,sha256=WXc3wsxxeL3-rVo7P7ga67i1J7fXQDM0a8JRf_Cm03s,15305
175
+ singlestoredb/utils/xdict.py,sha256=j1N2cn15DFwPcpm8X83NJmtMFUopIFEeMnwmIiNtjSY,12932
176
+ singlestoredb-1.16.1.dist-info/licenses/LICENSE,sha256=Mlq78idURT-9G026aMYswwwnnrLcgzTLuXeAs5hjDLM,11341
177
+ sqlx/__init__.py,sha256=aBYiU8DZXCogvWu3yWafOz7bZS5WWwLZXj7oL0dXGyU,85
178
+ sqlx/magic.py,sha256=JsS9_9aBFaOt91Torm1JPN0c8qB2QmYJmNSKtbSQIY0,3509
179
+ singlestoredb-1.16.1.dist-info/METADATA,sha256=fsuWVCTTIO9_eZFUHTYBevzX7ZccKpE0xaTaukuVctc,6633
180
+ singlestoredb-1.16.1.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
181
+ singlestoredb-1.16.1.dist-info/entry_points.txt,sha256=bSLaTWB5zGjpVYPAaI46MkkDup0su-eb3uAhCNYuRV0,48
182
+ singlestoredb-1.16.1.dist-info/top_level.txt,sha256=4NWrNYfmbIQ129HTH5DBS_VQQVY9rMrCMnN7zIzoSVY,24
183
+ singlestoredb-1.16.1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (79.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [pytest11]
2
+ singlestoredb = singlestoredb.pytest
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2021 SingleStore
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,3 @@
1
+ dist
2
+ singlestoredb
3
+ sqlx
sqlx/__init__.py ADDED
@@ -0,0 +1,4 @@
1
+ from sqlx.magic import load_ipython_extension
2
+
3
+
4
+ __all__ = ['load_ipython_extension']