singlestoredb 0.4.0__py3-none-any.whl → 1.0.4__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.

Potentially problematic release.


This version of singlestoredb might be problematic. Click here for more details.

Files changed (120) hide show
  1. singlestoredb/__init__.py +33 -1
  2. singlestoredb/alchemy/__init__.py +90 -0
  3. singlestoredb/auth.py +5 -1
  4. singlestoredb/config.py +116 -14
  5. singlestoredb/connection.py +483 -516
  6. singlestoredb/converters.py +238 -135
  7. singlestoredb/exceptions.py +30 -2
  8. singlestoredb/functions/__init__.py +1 -0
  9. singlestoredb/functions/decorator.py +142 -0
  10. singlestoredb/functions/dtypes.py +1639 -0
  11. singlestoredb/functions/ext/__init__.py +2 -0
  12. singlestoredb/functions/ext/arrow.py +375 -0
  13. singlestoredb/functions/ext/asgi.py +661 -0
  14. singlestoredb/functions/ext/json.py +427 -0
  15. singlestoredb/functions/ext/mmap.py +306 -0
  16. singlestoredb/functions/ext/rowdat_1.py +744 -0
  17. singlestoredb/functions/signature.py +673 -0
  18. singlestoredb/fusion/__init__.py +11 -0
  19. singlestoredb/fusion/graphql.py +213 -0
  20. singlestoredb/fusion/handler.py +621 -0
  21. singlestoredb/fusion/handlers/stage.py +257 -0
  22. singlestoredb/fusion/handlers/utils.py +162 -0
  23. singlestoredb/fusion/handlers/workspace.py +412 -0
  24. singlestoredb/fusion/registry.py +164 -0
  25. singlestoredb/fusion/result.py +399 -0
  26. singlestoredb/http/__init__.py +27 -0
  27. singlestoredb/{http.py → http/connection.py} +555 -154
  28. singlestoredb/management/__init__.py +3 -0
  29. singlestoredb/management/billing_usage.py +148 -0
  30. singlestoredb/management/cluster.py +14 -6
  31. singlestoredb/management/manager.py +100 -38
  32. singlestoredb/management/organization.py +188 -0
  33. singlestoredb/management/region.py +5 -5
  34. singlestoredb/management/utils.py +281 -2
  35. singlestoredb/management/workspace.py +1344 -49
  36. singlestoredb/{clients/pymysqlsv → mysql}/__init__.py +16 -21
  37. singlestoredb/{clients/pymysqlsv → mysql}/_auth.py +39 -8
  38. singlestoredb/{clients/pymysqlsv → mysql}/charset.py +26 -23
  39. singlestoredb/{clients/pymysqlsv/connections.py → mysql/connection.py} +532 -165
  40. singlestoredb/{clients/pymysqlsv → mysql}/constants/CLIENT.py +0 -1
  41. singlestoredb/{clients/pymysqlsv → mysql}/constants/COMMAND.py +0 -1
  42. singlestoredb/{clients/pymysqlsv → mysql}/constants/CR.py +0 -2
  43. singlestoredb/{clients/pymysqlsv → mysql}/constants/ER.py +0 -1
  44. singlestoredb/{clients/pymysqlsv → mysql}/constants/FIELD_TYPE.py +1 -1
  45. singlestoredb/{clients/pymysqlsv → mysql}/constants/FLAG.py +0 -1
  46. singlestoredb/{clients/pymysqlsv → mysql}/constants/SERVER_STATUS.py +0 -1
  47. singlestoredb/mysql/converters.py +271 -0
  48. singlestoredb/{clients/pymysqlsv → mysql}/cursors.py +228 -112
  49. singlestoredb/mysql/err.py +92 -0
  50. singlestoredb/{clients/pymysqlsv → mysql}/optionfile.py +5 -4
  51. singlestoredb/{clients/pymysqlsv → mysql}/protocol.py +49 -20
  52. singlestoredb/mysql/tests/__init__.py +19 -0
  53. singlestoredb/{clients/pymysqlsv → mysql}/tests/base.py +32 -12
  54. singlestoredb/mysql/tests/conftest.py +37 -0
  55. singlestoredb/{clients/pymysqlsv → mysql}/tests/test_DictCursor.py +11 -7
  56. singlestoredb/{clients/pymysqlsv → mysql}/tests/test_SSCursor.py +17 -12
  57. singlestoredb/{clients/pymysqlsv → mysql}/tests/test_basic.py +32 -24
  58. singlestoredb/{clients/pymysqlsv → mysql}/tests/test_connection.py +130 -119
  59. singlestoredb/{clients/pymysqlsv → mysql}/tests/test_converters.py +9 -7
  60. singlestoredb/mysql/tests/test_cursor.py +141 -0
  61. singlestoredb/{clients/pymysqlsv → mysql}/tests/test_err.py +3 -2
  62. singlestoredb/{clients/pymysqlsv → mysql}/tests/test_issues.py +35 -27
  63. singlestoredb/{clients/pymysqlsv → mysql}/tests/test_load_local.py +13 -11
  64. singlestoredb/{clients/pymysqlsv → mysql}/tests/test_nextset.py +7 -3
  65. singlestoredb/{clients/pymysqlsv → mysql}/tests/test_optionfile.py +2 -1
  66. singlestoredb/{clients/pymysqlsv → mysql}/tests/thirdparty/__init__.py +1 -1
  67. singlestoredb/mysql/tests/thirdparty/test_MySQLdb/__init__.py +9 -0
  68. singlestoredb/{clients/pymysqlsv → mysql}/tests/thirdparty/test_MySQLdb/capabilities.py +19 -17
  69. singlestoredb/{clients/pymysqlsv → mysql}/tests/thirdparty/test_MySQLdb/dbapi20.py +31 -22
  70. singlestoredb/{clients/pymysqlsv → mysql}/tests/thirdparty/test_MySQLdb/test_MySQLdb_capabilities.py +3 -4
  71. singlestoredb/{clients/pymysqlsv → mysql}/tests/thirdparty/test_MySQLdb/test_MySQLdb_dbapi20.py +24 -20
  72. singlestoredb/{clients/pymysqlsv → mysql}/tests/thirdparty/test_MySQLdb/test_MySQLdb_nonstandard.py +4 -4
  73. singlestoredb/{clients/pymysqlsv → mysql}/times.py +3 -4
  74. singlestoredb/pytest.py +283 -0
  75. singlestoredb/tests/empty.sql +0 -0
  76. singlestoredb/tests/ext_funcs/__init__.py +385 -0
  77. singlestoredb/tests/test.sql +210 -0
  78. singlestoredb/tests/test2.sql +1 -0
  79. singlestoredb/tests/test_basics.py +482 -115
  80. singlestoredb/tests/test_config.py +13 -13
  81. singlestoredb/tests/test_connection.py +241 -305
  82. singlestoredb/tests/test_dbapi.py +27 -0
  83. singlestoredb/tests/test_ext_func.py +1193 -0
  84. singlestoredb/tests/test_ext_func_data.py +1101 -0
  85. singlestoredb/tests/test_fusion.py +465 -0
  86. singlestoredb/tests/test_http.py +32 -26
  87. singlestoredb/tests/test_management.py +588 -8
  88. singlestoredb/tests/test_plugin.py +33 -0
  89. singlestoredb/tests/test_results.py +11 -12
  90. singlestoredb/tests/test_udf.py +687 -0
  91. singlestoredb/tests/utils.py +3 -2
  92. singlestoredb/utils/config.py +58 -0
  93. singlestoredb/utils/debug.py +13 -0
  94. singlestoredb/utils/mogrify.py +151 -0
  95. singlestoredb/utils/results.py +4 -1
  96. singlestoredb-1.0.4.dist-info/METADATA +139 -0
  97. singlestoredb-1.0.4.dist-info/RECORD +112 -0
  98. {singlestoredb-0.4.0.dist-info → singlestoredb-1.0.4.dist-info}/WHEEL +1 -1
  99. singlestoredb-1.0.4.dist-info/entry_points.txt +2 -0
  100. singlestoredb/clients/pymysqlsv/converters.py +0 -365
  101. singlestoredb/clients/pymysqlsv/err.py +0 -144
  102. singlestoredb/clients/pymysqlsv/tests/__init__.py +0 -19
  103. singlestoredb/clients/pymysqlsv/tests/test_cursor.py +0 -133
  104. singlestoredb/clients/pymysqlsv/tests/thirdparty/test_MySQLdb/__init__.py +0 -9
  105. singlestoredb/drivers/__init__.py +0 -45
  106. singlestoredb/drivers/base.py +0 -198
  107. singlestoredb/drivers/cymysql.py +0 -38
  108. singlestoredb/drivers/http.py +0 -47
  109. singlestoredb/drivers/mariadb.py +0 -40
  110. singlestoredb/drivers/mysqlconnector.py +0 -49
  111. singlestoredb/drivers/mysqldb.py +0 -60
  112. singlestoredb/drivers/pymysql.py +0 -37
  113. singlestoredb/drivers/pymysqlsv.py +0 -35
  114. singlestoredb/drivers/pyodbc.py +0 -65
  115. singlestoredb-0.4.0.dist-info/METADATA +0 -111
  116. singlestoredb-0.4.0.dist-info/RECORD +0 -86
  117. /singlestoredb/{clients → fusion/handlers}/__init__.py +0 -0
  118. /singlestoredb/{clients/pymysqlsv → mysql}/constants/__init__.py +0 -0
  119. {singlestoredb-0.4.0.dist-info → singlestoredb-1.0.4.dist-info}/LICENSE +0 -0
  120. {singlestoredb-0.4.0.dist-info → singlestoredb-1.0.4.dist-info}/top_level.txt +0 -0
@@ -1,111 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: singlestoredb
3
- Version: 0.4.0
4
- Summary: Interface to the SingleStore database and cluster management APIs
5
- Home-page: https://github.com/singlestore-labs/singlestoredb-python
6
- Author: SingleStore
7
- Author-email: support@singlestore.com
8
- License: Apache-2.0
9
- Classifier: Development Status :: 4 - Beta
10
- Classifier: License :: OSI Approved :: Apache Software License
11
- Classifier: Programming Language :: Python :: 3
12
- Classifier: Programming Language :: Python :: 3 :: Only
13
- Classifier: Programming Language :: Python :: 3.6
14
- Classifier: Programming Language :: Python :: 3.7
15
- Classifier: Programming Language :: Python :: 3.8
16
- Classifier: Programming Language :: Python :: 3.9
17
- Classifier: Programming Language :: Python :: 3.10
18
- Classifier: Topic :: Database
19
- Requires-Python: >=3.6
20
- Description-Content-Type: text/markdown
21
- License-File: LICENSE
22
- Requires-Dist: PyJWT
23
- Requires-Dist: PyMySQL
24
- Requires-Dist: requests
25
- Requires-Dist: sqlparams
26
- Provides-Extra: dataframe
27
- Requires-Dist: ibis-singlestoredb ; extra == 'dataframe'
28
- Provides-Extra: dbt
29
- Requires-Dist: dbt-singlestore ; extra == 'dbt'
30
- Provides-Extra: ed22519
31
- Requires-Dist: PyNaCl (>=1.4.0) ; extra == 'ed22519'
32
- Provides-Extra: ibis
33
- Requires-Dist: ibis-singlestoredb ; extra == 'ibis'
34
- Provides-Extra: rsa
35
- Requires-Dist: cryptography ; extra == 'rsa'
36
- Provides-Extra: sqlalchemy
37
- Requires-Dist: sqlalchemy-singlestoredb ; extra == 'sqlalchemy'
38
-
39
- # <img src="https://github.com/singlestore-labs/singlestoredb-python/blob/main/resources/singlestore-logo.png" height="60" valign="middle"/> SingleStoreDB Python Interface
40
-
41
- This project contains a [DB-API 2.0](https://www.python.org/dev/peps/pep-0249/)
42
- compatible Python interface to the SingleStore database and workspace management API.
43
-
44
- ## Install
45
-
46
- This package can be install from PyPI using `pip`:
47
- ```
48
- pip install singlestoredb
49
- ```
50
-
51
- If you are using Anaconda, you can install with `conda`:
52
- ```
53
- conda install -c singlestore singlestoredb
54
- ```
55
-
56
- ## Usage
57
-
58
- Connections to the SingleStore database are made using the DB-API parameters
59
- `host`, `port`, `user`, `password`, etc, but they may also be done using
60
- URLs that specify these parameters as well (much like the
61
- [SQLAlchemy](https://www.sqlalchemy.org) package).
62
- ```
63
- import singlestoredb as s2
64
-
65
- # Connect using the default connector
66
- conn = s2.connect('user:password@host:3306/db_name')
67
-
68
- # Create a cursor
69
- cur = conn.cursor()
70
-
71
- # Execute SQL
72
- cur.execute('select * from foo')
73
-
74
- # Fetch the results
75
- print(cur.description)
76
- for item in cur:
77
- print(item)
78
-
79
- # Close the connection
80
- conn.close()
81
- ```
82
-
83
- Connecting to the HTTP API is done as follows:
84
- ```
85
- # Use the HTTP API connector
86
- conn = s2.connect('https://user:password@host:8080/db_name')
87
- ```
88
-
89
- ## License
90
-
91
- This library is licensed under the [Apache 2.0 License](https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/main/LICENSE?token=GHSAT0AAAAAABMGV6QPNR6N23BVICDYK5LAYTVK5EA).
92
-
93
- ## Resources
94
-
95
- * [Documentation](https://singlestore-labs.github.io/singlestoredb-python)
96
- * [SingleStore](https://singlestore.com)
97
- * [Python](https://python.org)
98
-
99
- ## User agreement
100
-
101
- SINGLESTORE, INC. ("SINGLESTORE") AGREES TO GRANT YOU AND YOUR COMPANY ACCESS TO THIS OPEN SOURCE SOFTWARE CONNECTOR ONLY IF (A) YOU AND YOUR COMPANY REPRESENT AND WARRANT THAT YOU, ON BEHALF OF YOUR COMPANY, HAVE THE AUTHORITY TO LEGALLY BIND YOUR COMPANY AND (B) YOU, ON BEHALF OF YOUR COMPANY ACCEPT AND AGREE TO BE BOUND BY ALL OF THE OPEN SOURCE TERMS AND CONDITIONS APPLICABLE TO THIS OPEN SOURCE CONNECTOR AS SET FORTH BELOW (THIS “AGREEMENT”), WHICH SHALL BE DEFINITIVELY EVIDENCED BY ANY ONE OF THE FOLLOWING MEANS: YOU, ON BEHALF OF YOUR COMPANY, CLICKING THE “DOWNLOAD, “ACCEPTANCE” OR “CONTINUE” BUTTON, AS APPLICABLE OR COMPANY’S INSTALLATION, ACCESS OR USE OF THE OPEN SOURCE CONNECTOR AND SHALL BE EFFECTIVE ON THE EARLIER OF THE DATE ON WHICH THE DOWNLOAD, ACCESS, COPY OR INSTALL OF THE CONNECTOR OR USE ANY SERVICES (INCLUDING ANY UPDATES OR UPGRADES) PROVIDED BY SINGLESTORE.
102
- BETA SOFTWARE CONNECTOR
103
-
104
- Customer Understands and agrees that it is being granted access to pre-release or “beta” versions of SingleStore’s open source software connector (“Beta Software Connector”) for the limited purposes of non-production testing and evaluation of such Beta Software Connector. Customer acknowledges that SingleStore shall have no obligation to release a generally available version of such Beta Software Connector or to provide support or warranty for such versions of the Beta Software Connector for any production or non-evaluation use.
105
-
106
- NOTWITHSTANDING ANYTHING TO THE CONTRARY IN ANY DOCUMENTATION, AGREEMENT OR IN ANY ORDER DOCUMENT, SINGLESTORE WILL HAVE NO WARRANTY, INDEMNITY, SUPPORT, OR SERVICE LEVEL, OBLIGATIONS WITH
107
- RESPECT TO THIS BETA SOFTWARE CONNECTOR (INCLUDING TOOLS AND UTILITIES).
108
-
109
- APPLICABLE OPEN SOURCE LICENSE: Apache 2.0
110
-
111
- IF YOU OR YOUR COMPANY DO NOT AGREE TO THESE TERMS AND CONDITIONS, DO NOT CHECK THE ACCEPTANCE BOX, AND DO NOT DOWNLOAD, ACCESS, COPY, INSTALL OR USE THE SOFTWARE OR THE SERVICES.
@@ -1,86 +0,0 @@
1
- singlestoredb/__init__.py,sha256=nW8ZeK06pmbQbLwF1T0hfpyb62CpIpQOneHckuDxZLA,842
2
- singlestoredb/auth.py,sha256=PgPppchia3LMKfEqgJ0UlNVkRACcs0XHUAIBiRAwMuw,7502
3
- singlestoredb/config.py,sha256=zyWKMRK-KkHJD5d3jMf79e3IdEhJqZ1i69l35TxhMbU,4676
4
- singlestoredb/connection.py,sha256=Ks2lzbGn7d-OUUR8LLKBt7oiVwBmi8PDS1FwVuxdcM8,45060
5
- singlestoredb/converters.py,sha256=pgnigRSOTouskgin7CUxYUufoeD2VjgR6CqK3Mcoh3Q,9881
6
- singlestoredb/exceptions.py,sha256=wmO0QGGZA3jxA_TkGr6jtoBk7Qq5TUrwAP2dHDSdmZ0,2361
7
- singlestoredb/http.py,sha256=Y8aXAi6-Gp1jM6piMnSOcg3OD48F-BQtt3lbxwZnZWs,23604
8
- singlestoredb/types.py,sha256=FIqO1A7e0Gkk7ITmIysBy-P5S--ItbMSlYvblzqGS30,9969
9
- singlestoredb/clients/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
- singlestoredb/clients/pymysqlsv/__init__.py,sha256=ZTUhjwKIceSRK6cJdFWS4OT2TgsRjKqVjh8BLUi_b8I,4580
11
- singlestoredb/clients/pymysqlsv/_auth.py,sha256=vD0tvMQwOLM8wNSujqFGFwMe8-fkjWBsq_h-La43ct0,7418
12
- singlestoredb/clients/pymysqlsv/charset.py,sha256=d7317VnshLHut45FulfebNdMBH72juW0VHtgXsPZ_fg,10309
13
- singlestoredb/clients/pymysqlsv/connections.py,sha256=f3Ve4aYM776Ex88Toj7kT7LNY0uzoih-eMjesetjH70,54509
14
- singlestoredb/clients/pymysqlsv/converters.py,sha256=6udzRPsorXdYYvK29MIN_1Msal_J73bCnw-g7vCH2zk,9559
15
- singlestoredb/clients/pymysqlsv/cursors.py,sha256=kNquNxoTGi6rIFDWryNqVG8xVsxEEWC5GMrFyMPiyOs,18269
16
- singlestoredb/clients/pymysqlsv/err.py,sha256=bqW5J5knJtQsACG0E3o3Qjm5HCdEKbKJJGlepMEnkoI,3788
17
- singlestoredb/clients/pymysqlsv/optionfile.py,sha256=JXJwTILVVpYsrTJwZZV66cwJxlXpLs0Cd96wuyHuK9Q,588
18
- singlestoredb/clients/pymysqlsv/protocol.py,sha256=BUp_RB5MdQZI_9s4cRUuQENQQQlZ31fUDMQls8hw4L0,11895
19
- singlestoredb/clients/pymysqlsv/times.py,sha256=xBsPnBbHuCXUk9n6dCglG8ZwCAqQ7g2oxfGPE9xeqmE,435
20
- singlestoredb/clients/pymysqlsv/constants/CLIENT.py,sha256=h3phmMVBs_CpGUnlWbE4ypkd9J4EtXwnfzTpyrvKMlA,893
21
- singlestoredb/clients/pymysqlsv/constants/COMMAND.py,sha256=u0ci3HoEOiJBrT4QIpEZI3jx9Cv2OtNNIom_MALNvaM,694
22
- singlestoredb/clients/pymysqlsv/constants/CR.py,sha256=ZWv-1q64VMYwFS1U4BtCwR40MJGyyiNSe83x0aq6_5s,2335
23
- singlestoredb/clients/pymysqlsv/constants/ER.py,sha256=-b9lVYUrMA_M2iQ0ZXAgCQdi3cf64GCfZbhYN9-WU1k,12311
24
- singlestoredb/clients/pymysqlsv/constants/FIELD_TYPE.py,sha256=eqKpmM4VmerVA2G3O-iDA_dSBscKbpnctvN2MVdfNOM,385
25
- singlestoredb/clients/pymysqlsv/constants/FLAG.py,sha256=Od4-Hqn0uPV-EiZodIYqdk4W1KbwZn2yUC9cUUbjvRI,229
26
- singlestoredb/clients/pymysqlsv/constants/SERVER_STATUS.py,sha256=IwwXPObLLL_OxYb7ckS1CHri5CjfmysF_dV8Sk0_fmA,348
27
- singlestoredb/clients/pymysqlsv/constants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
28
- singlestoredb/clients/pymysqlsv/tests/__init__.py,sha256=Fz3Pfsd31IN04KNwL8p4z_2fD4BfIijMwAFgFA5aHlg,901
29
- singlestoredb/clients/pymysqlsv/tests/base.py,sha256=DBr_CNX4UwLWxJfrFb-Slbj5VxcQwJx44OJzcu4o7Kk,3394
30
- singlestoredb/clients/pymysqlsv/tests/test_DictCursor.py,sha256=j66zbpNC1a0Ng5D7ZyM1XPetc1dY6csqOjyQ5A7_E6I,4804
31
- singlestoredb/clients/pymysqlsv/tests/test_SSCursor.py,sha256=c-ODqVVNo5NnaNG5KT2lufR67gkBMhS53fscTQ0oXWw,4313
32
- singlestoredb/clients/pymysqlsv/tests/test_basic.py,sha256=YsY_MHfW17YI3S0c6hH8rQA3JN9uCcaXM0tr2kJpplY,15228
33
- singlestoredb/clients/pymysqlsv/tests/test_connection.py,sha256=CXhCDWiJhltMm0wTRoVt70Kl4MhnqslLqrm6F3igMxQ,31945
34
- singlestoredb/clients/pymysqlsv/tests/test_converters.py,sha256=WvVIm0gb7G2u_P_RpDVR-I1LpFbu9lLAVicLALow7ds,1973
35
- singlestoredb/clients/pymysqlsv/tests/test_cursor.py,sha256=BtCBXJJP_yUdGXLdVc3v9c_gNL0YzgOVqYHrCRBjzfA,4470
36
- singlestoredb/clients/pymysqlsv/tests/test_err.py,sha256=3R0u6mq8MIh5W5QASDaY7V9Qe1trSzxsuV_-W1j25UU,427
37
- singlestoredb/clients/pymysqlsv/tests/test_issues.py,sha256=s84i9TDXnM586d8bwvRMTZPCWGBjjK0srgSSFRRRDyY,18864
38
- singlestoredb/clients/pymysqlsv/tests/test_load_local.py,sha256=hqwmFHRWyX75s8wBBsZNKrmR01U55bv5nMojNAJNc4E,2536
39
- singlestoredb/clients/pymysqlsv/tests/test_nextset.py,sha256=mvyGyHK8Azg1-X6b3TynLeQpL8zFgwF3ebJBUSojkYM,2635
40
- singlestoredb/clients/pymysqlsv/tests/test_optionfile.py,sha256=rCKXKEuCyfZ_6_uFRXjkcsXc9926S9QQhyD6jnbZwK0,596
41
- singlestoredb/clients/pymysqlsv/tests/thirdparty/__init__.py,sha256=3A_-Rj1ZVUD2jgDUWPzEKiTnzTwx2r1ZcUK8d06BfL4,97
42
- singlestoredb/clients/pymysqlsv/tests/thirdparty/test_MySQLdb/__init__.py,sha256=MoZYjNmksamq2tYldbHbQZigrl54jha5apapnshMtzY,259
43
- singlestoredb/clients/pymysqlsv/tests/thirdparty/test_MySQLdb/capabilities.py,sha256=QPr2F8TmhKrwKBNpLeOA0X9B8rMRvB5do626vywN8ww,10085
44
- singlestoredb/clients/pymysqlsv/tests/thirdparty/test_MySQLdb/dbapi20.py,sha256=g423UkjswLJivAAphpiQ4AjH3DA4AVtCUnZVN5q4Skg,31398
45
- singlestoredb/clients/pymysqlsv/tests/thirdparty/test_MySQLdb/test_MySQLdb_capabilities.py,sha256=SdRKW2wtaH1BGK0MBssvets4MKEjPZ8ixfrlCeD0rWQ,3142
46
- singlestoredb/clients/pymysqlsv/tests/thirdparty/test_MySQLdb/test_MySQLdb_dbapi20.py,sha256=CTVTd4ljJj77ko4LUuRqoS2QXL_HsKzIOyhl-TG7C-4,7862
47
- singlestoredb/clients/pymysqlsv/tests/thirdparty/test_MySQLdb/test_MySQLdb_nonstandard.py,sha256=FEjY1ax1GBhDW9IsHJhkJnTEenUtC0VNsqq5BWdxfjs,2865
48
- singlestoredb/drivers/__init__.py,sha256=kzTFTDeXqxSf5o_tLJtCe-OKqk6nRgjOjbt5cMTDvXs,1341
49
- singlestoredb/drivers/base.py,sha256=6CWT7uwhOzIS2MY6NYteR-M1ya8fo-Al6eaUYZ7g1jw,6369
50
- singlestoredb/drivers/cymysql.py,sha256=9yMJLBv8hwp2RzqZvn6QRmt-xAkc67UvmEFzmpGd9Qk,1060
51
- singlestoredb/drivers/http.py,sha256=zOHL3ab456U1JlTS0fixLNXS7KgL5NFSeupeMBcYbRc,1203
52
- singlestoredb/drivers/mariadb.py,sha256=z8I910J7mwaqnQtDUaC3Osd8jcJbrGK7b7CzDf3WRDo,1022
53
- singlestoredb/drivers/mysqlconnector.py,sha256=7Gy-Y48XGXbfbwg0xl91p2SmM0g69_mrCt3pSUFuhI0,1581
54
- singlestoredb/drivers/mysqldb.py,sha256=qGWUN2v99-RGhxFw2WGqlwqh1V4Eg5dOl7NaM4NqAgI,1723
55
- singlestoredb/drivers/pymysql.py,sha256=sxcXcVJzoXJ2RH3NX_bUZ3amDhyXDsM50Few0Q6QoAU,1065
56
- singlestoredb/drivers/pymysqlsv.py,sha256=C3ZFWaU2QVrezlNQB4zeZpy68VU_eaTuZIwI0bSX5us,1098
57
- singlestoredb/drivers/pyodbc.py,sha256=wMwjnEH988B6OZ7ysaT3yGxe3PAK-5rcNnejEoHGWFY,1749
58
- singlestoredb/management/__init__.py,sha256=Mlwx2au_f_PKeMJcO7iITFPWPrm6wBrVlEpYqrisgh4,99
59
- singlestoredb/management/cluster.py,sha256=u81NiV8kDTLpQ1asRR6L59B58nRcxjs2ERZoNrCLtRM,14097
60
- singlestoredb/management/manager.py,sha256=yjBUs29R4bhQh8vWKBd26LheGa6xgZTOuM4Ow57K0kU,6501
61
- singlestoredb/management/region.py,sha256=iO967AdXoIQl-QD4XzNiKPMcJuIFxuLQoqPjiPD7I2U,1599
62
- singlestoredb/management/utils.py,sha256=MKVwYDrMdpOZb67IUGQ4mZoHHhJwnIGVG3h2wiXwmSY,1028
63
- singlestoredb/management/workspace.py,sha256=xjoXklZ94Y17U3y8Xrve1UW_BEsXXX6EbzXqxih9cDY,17858
64
- singlestoredb/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
65
- singlestoredb/tests/local_infile.csv,sha256=sBtqjvfkS9aoOVx8nMXYgYv4rDuT4OuYhqUhNRu0O68,42
66
- singlestoredb/tests/test.sql,sha256=5nTFzubFQJ79UsfVWp-haSK63tFZhN-j6hPCGswjOP4,5040
67
- singlestoredb/tests/test_basics.py,sha256=2bdW8kJshKqS71Y-Am8mWIF6LC7Fdkow2zAytgplfwE,30870
68
- singlestoredb/tests/test_config.py,sha256=fGQLoIOkNg7dlStsU2Ul9RPfdKJe-gw7jwzLRl1bT4k,11180
69
- singlestoredb/tests/test_connection.py,sha256=IcDnnyafibXZn9ZqtSJDdJQ4brXTXFgfg7goLjCyKLo,52906
70
- singlestoredb/tests/test_exceptions.py,sha256=tfr_8X2w1UmG4nkSBzWGB0C7ehrf1GAVgj6_ODaG-TM,1131
71
- singlestoredb/tests/test_http.py,sha256=gjLTLNxN__3jcKE7cS9xpq9bZ42lty9ugLAuSAfKPms,8331
72
- singlestoredb/tests/test_management.py,sha256=l3O01DOqp2kc0BawoMDtRJPzr__aBYAMJAKAW_99dKI,9656
73
- singlestoredb/tests/test_results.py,sha256=c8j7Lw4cdE2-omkdYbfMERgFGia6XtZlDD2Mgs9_hbE,6641
74
- singlestoredb/tests/test_types.py,sha256=jqoAaSjhbgwB3vt0KsTcl7XBWoMMIa0mPFKhEi5bBjo,4500
75
- singlestoredb/tests/test_xdict.py,sha256=fqHspoi39nbX3fIDVkkRXcd5H50xdOsSvK0bxAMQnaE,10408
76
- singlestoredb/tests/utils.py,sha256=4bScYm_92MtDMiToXXJbx6N3nXYBzJQJi4zXyFR6NGQ,4598
77
- singlestoredb/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
78
- singlestoredb/utils/config.py,sha256=4BZxIdO_L5VV_5GoF5qTUqw39tBXWPYsgKwcdODHFKw,23303
79
- singlestoredb/utils/convert_rows.py,sha256=A6up7a8Bq-eV2BXdGCotQviqp1Q7XdJ2MA9339hLYVQ,1816
80
- singlestoredb/utils/results.py,sha256=9X8e2CDXgpptKa007829gt63l7Mie5ya3I2QEks8loM,5100
81
- singlestoredb/utils/xdict.py,sha256=S9HKgrPrnu_6b7iOwa2KrW8CmU1Uqx0BWdEyogFzWbE,12896
82
- singlestoredb-0.4.0.dist-info/LICENSE,sha256=Mlq78idURT-9G026aMYswwwnnrLcgzTLuXeAs5hjDLM,11341
83
- singlestoredb-0.4.0.dist-info/METADATA,sha256=MgGhDnMlkbIi_A82Ij2zM30wu6-ab8fycEuv8b_18Qo,5054
84
- singlestoredb-0.4.0.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
85
- singlestoredb-0.4.0.dist-info/top_level.txt,sha256=eet8bVPNRqiGeY0PrO5ERH2UpamwlrKHEQCffz4dOh8,14
86
- singlestoredb-0.4.0.dist-info/RECORD,,
File without changes