clickhouse-driver 0.2.1__cp39-cp39-win_amd64.whl → 0.2.10__cp39-cp39-win_amd64.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 (85) hide show
  1. clickhouse_driver/__init__.py +9 -9
  2. clickhouse_driver/block.py +227 -195
  3. clickhouse_driver/blockstreamprofileinfo.py +22 -22
  4. clickhouse_driver/bufferedreader.cp39-win_amd64.pyd +0 -0
  5. clickhouse_driver/bufferedwriter.cp39-win_amd64.pyd +0 -0
  6. clickhouse_driver/client.py +812 -666
  7. clickhouse_driver/clientinfo.py +119 -80
  8. clickhouse_driver/columns/arraycolumn.py +161 -150
  9. clickhouse_driver/columns/base.py +221 -147
  10. clickhouse_driver/columns/boolcolumn.py +7 -0
  11. clickhouse_driver/columns/datecolumn.py +108 -49
  12. clickhouse_driver/columns/datetimecolumn.py +203 -207
  13. clickhouse_driver/columns/decimalcolumn.py +116 -118
  14. clickhouse_driver/columns/enumcolumn.py +129 -119
  15. clickhouse_driver/columns/exceptions.py +12 -12
  16. clickhouse_driver/columns/floatcolumn.py +34 -34
  17. clickhouse_driver/columns/intcolumn.py +157 -157
  18. clickhouse_driver/columns/intervalcolumn.py +33 -33
  19. clickhouse_driver/columns/ipcolumn.py +118 -118
  20. clickhouse_driver/columns/jsoncolumn.py +37 -0
  21. clickhouse_driver/columns/largeint.cp39-win_amd64.pyd +0 -0
  22. clickhouse_driver/columns/lowcardinalitycolumn.py +142 -123
  23. clickhouse_driver/columns/mapcolumn.py +73 -58
  24. clickhouse_driver/columns/nestedcolumn.py +10 -0
  25. clickhouse_driver/columns/nothingcolumn.py +13 -13
  26. clickhouse_driver/columns/nullablecolumn.py +7 -7
  27. clickhouse_driver/columns/nullcolumn.py +15 -15
  28. clickhouse_driver/columns/numpy/base.py +47 -14
  29. clickhouse_driver/columns/numpy/boolcolumn.py +8 -0
  30. clickhouse_driver/columns/numpy/datecolumn.py +19 -12
  31. clickhouse_driver/columns/numpy/datetimecolumn.py +146 -145
  32. clickhouse_driver/columns/numpy/floatcolumn.py +24 -13
  33. clickhouse_driver/columns/numpy/intcolumn.py +43 -43
  34. clickhouse_driver/columns/numpy/lowcardinalitycolumn.py +96 -83
  35. clickhouse_driver/columns/numpy/service.py +58 -80
  36. clickhouse_driver/columns/numpy/stringcolumn.py +78 -76
  37. clickhouse_driver/columns/numpy/tuplecolumn.py +37 -0
  38. clickhouse_driver/columns/service.py +185 -131
  39. clickhouse_driver/columns/simpleaggregatefunctioncolumn.py +7 -7
  40. clickhouse_driver/columns/stringcolumn.py +73 -73
  41. clickhouse_driver/columns/tuplecolumn.py +63 -65
  42. clickhouse_driver/columns/util.py +61 -0
  43. clickhouse_driver/columns/uuidcolumn.py +64 -64
  44. clickhouse_driver/compression/__init__.py +32 -28
  45. clickhouse_driver/compression/base.py +87 -52
  46. clickhouse_driver/compression/lz4.py +21 -55
  47. clickhouse_driver/compression/lz4hc.py +9 -9
  48. clickhouse_driver/compression/zstd.py +20 -51
  49. clickhouse_driver/connection.py +825 -632
  50. clickhouse_driver/context.py +36 -36
  51. clickhouse_driver/dbapi/__init__.py +62 -62
  52. clickhouse_driver/dbapi/connection.py +99 -96
  53. clickhouse_driver/dbapi/cursor.py +370 -368
  54. clickhouse_driver/dbapi/errors.py +40 -40
  55. clickhouse_driver/dbapi/extras.py +73 -0
  56. clickhouse_driver/defines.py +58 -42
  57. clickhouse_driver/errors.py +453 -446
  58. clickhouse_driver/log.py +48 -44
  59. clickhouse_driver/numpy/block.py +8 -8
  60. clickhouse_driver/numpy/helpers.py +28 -25
  61. clickhouse_driver/numpy/result.py +123 -123
  62. clickhouse_driver/opentelemetry.py +43 -0
  63. clickhouse_driver/progress.py +44 -32
  64. clickhouse_driver/protocol.py +130 -105
  65. clickhouse_driver/queryprocessingstage.py +8 -8
  66. clickhouse_driver/reader.py +69 -69
  67. clickhouse_driver/readhelpers.py +26 -26
  68. clickhouse_driver/result.py +144 -144
  69. clickhouse_driver/settings/available.py +405 -405
  70. clickhouse_driver/settings/types.py +50 -50
  71. clickhouse_driver/settings/writer.py +34 -29
  72. clickhouse_driver/streams/compressed.py +88 -88
  73. clickhouse_driver/streams/native.py +108 -90
  74. clickhouse_driver/util/compat.py +39 -0
  75. clickhouse_driver/util/escape.py +94 -55
  76. clickhouse_driver/util/helpers.py +173 -57
  77. clickhouse_driver/varint.cp39-win_amd64.pyd +0 -0
  78. clickhouse_driver/writer.py +67 -67
  79. clickhouse_driver-0.2.10.dist-info/METADATA +215 -0
  80. clickhouse_driver-0.2.10.dist-info/RECORD +89 -0
  81. {clickhouse_driver-0.2.1.dist-info → clickhouse_driver-0.2.10.dist-info}/WHEEL +1 -1
  82. {clickhouse_driver-0.2.1.dist-info → clickhouse_driver-0.2.10.dist-info/licenses}/LICENSE +21 -21
  83. clickhouse_driver-0.2.1.dist-info/METADATA +0 -24
  84. clickhouse_driver-0.2.1.dist-info/RECORD +0 -80
  85. {clickhouse_driver-0.2.1.dist-info → clickhouse_driver-0.2.10.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,215 @@
1
+ Metadata-Version: 2.4
2
+ Name: clickhouse-driver
3
+ Version: 0.2.10
4
+ Summary: Python driver with native interface for ClickHouse
5
+ Home-page: https://github.com/mymarilyn/clickhouse-driver
6
+ Author: Konstantin Lebedev
7
+ Author-email: kostyan.lebedev@gmail.com
8
+ License: MIT
9
+ Project-URL: Documentation, https://clickhouse-driver.readthedocs.io
10
+ Project-URL: Changes, https://github.com/mymarilyn/clickhouse-driver/blob/master/CHANGELOG.md
11
+ Keywords: ClickHouse db database cloud analytics
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Environment :: Console
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Intended Audience :: Information Technology
16
+ Classifier: License :: OSI Approved :: MIT License
17
+ Classifier: Operating System :: OS Independent
18
+ Classifier: Programming Language :: SQL
19
+ Classifier: Programming Language :: Python :: 3
20
+ Classifier: Programming Language :: Python :: 3.9
21
+ Classifier: Programming Language :: Python :: 3.10
22
+ Classifier: Programming Language :: Python :: 3.11
23
+ Classifier: Programming Language :: Python :: 3.12
24
+ Classifier: Programming Language :: Python :: 3.13
25
+ Classifier: Programming Language :: Python :: 3.14
26
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
27
+ Classifier: Topic :: Database
28
+ Classifier: Topic :: Software Development
29
+ Classifier: Topic :: Software Development :: Libraries
30
+ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
31
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
32
+ Classifier: Topic :: Scientific/Engineering :: Information Analysis
33
+ Requires-Python: >=3.9, <4
34
+ License-File: LICENSE
35
+ Requires-Dist: pytz
36
+ Requires-Dist: tzlocal
37
+ Provides-Extra: lz4
38
+ Requires-Dist: lz4<=3.0.1; implementation_name == "pypy" and extra == "lz4"
39
+ Requires-Dist: lz4; implementation_name != "pypy" and extra == "lz4"
40
+ Requires-Dist: clickhouse-cityhash>=1.0.2.1; extra == "lz4"
41
+ Provides-Extra: zstd
42
+ Requires-Dist: zstd; extra == "zstd"
43
+ Requires-Dist: clickhouse-cityhash>=1.0.2.1; extra == "zstd"
44
+ Provides-Extra: numpy
45
+ Requires-Dist: numpy>=1.12.0; extra == "numpy"
46
+ Requires-Dist: pandas>=0.24.0; extra == "numpy"
47
+ Dynamic: author
48
+ Dynamic: author-email
49
+ Dynamic: classifier
50
+ Dynamic: description
51
+ Dynamic: home-page
52
+ Dynamic: keywords
53
+ Dynamic: license
54
+ Dynamic: license-file
55
+ Dynamic: project-url
56
+ Dynamic: provides-extra
57
+ Dynamic: requires-dist
58
+ Dynamic: requires-python
59
+ Dynamic: summary
60
+
61
+ ClickHouse Python Driver
62
+ ========================
63
+
64
+ .. image:: https://img.shields.io/pypi/v/clickhouse-driver.svg
65
+ :target: https://pypi.org/project/clickhouse-driver
66
+
67
+ .. image:: https://coveralls.io/repos/github/mymarilyn/clickhouse-driver/badge.svg?branch=master
68
+ :target: https://coveralls.io/github/mymarilyn/clickhouse-driver?branch=master
69
+
70
+ .. image:: https://img.shields.io/pypi/l/clickhouse-driver.svg
71
+ :target: https://pypi.org/project/clickhouse-driver
72
+
73
+ .. image:: https://img.shields.io/pypi/pyversions/clickhouse-driver.svg
74
+ :target: https://pypi.org/project/clickhouse-driver
75
+
76
+ .. image:: https://img.shields.io/pypi/dm/clickhouse-driver.svg
77
+ :target: https://pypi.org/project/clickhouse-driver
78
+
79
+ .. image:: https://github.com/mymarilyn/clickhouse-driver/actions/workflows/actions.yml/badge.svg
80
+ :target: https://github.com/mymarilyn/clickhouse-driver/actions/workflows/actions.yml
81
+
82
+ ClickHouse Python Driver with native (TCP) interface support.
83
+
84
+ Asynchronous wrapper is available here: https://github.com/mymarilyn/aioch
85
+
86
+ Features
87
+ ========
88
+
89
+ - External data for query processing.
90
+
91
+ - Query settings.
92
+
93
+ - Compression support.
94
+
95
+ - TLS support.
96
+
97
+ - Types support:
98
+
99
+ * Float32/64
100
+ * [U]Int8/16/32/64/128/256
101
+ * Date/Date32/DateTime('timezone')/DateTime64('timezone')
102
+ * String/FixedString(N)
103
+ * Enum8/16
104
+ * Array(T)
105
+ * Nullable(T)
106
+ * Bool
107
+ * UUID
108
+ * Decimal
109
+ * IPv4/IPv6
110
+ * LowCardinality(T)
111
+ * SimpleAggregateFunction(F, T)
112
+ * Tuple(T1, T2, ...)
113
+ * Nested
114
+ * Map(key, value)
115
+
116
+ - Query progress information.
117
+
118
+ - Block by block results streaming.
119
+
120
+ - Reading query profile info.
121
+
122
+ - Receiving server logs.
123
+
124
+ - Multiple hosts support.
125
+
126
+ - Python DB API 2.0 specification support.
127
+
128
+ - Optional NumPy arrays support.
129
+
130
+ Documentation
131
+ =============
132
+
133
+ Documentation is available at https://clickhouse-driver.readthedocs.io.
134
+
135
+ Usage
136
+ =====
137
+
138
+ There are two ways to communicate with server:
139
+
140
+ - using pure Client;
141
+ - using DB API.
142
+
143
+ Pure Client example:
144
+
145
+ .. code-block:: python
146
+
147
+ >>> from clickhouse_driver import Client
148
+ >>>
149
+ >>> client = Client('localhost')
150
+ >>>
151
+ >>> client.execute('SHOW TABLES')
152
+ [('test',)]
153
+ >>> client.execute('DROP TABLE IF EXISTS test')
154
+ []
155
+ >>> client.execute('CREATE TABLE test (x Int32) ENGINE = Memory')
156
+ []
157
+ >>> client.execute(
158
+ ... 'INSERT INTO test (x) VALUES',
159
+ ... [{'x': 100}]
160
+ ... )
161
+ 1
162
+ >>> client.execute('INSERT INTO test (x) VALUES', [[200]])
163
+ 1
164
+ >>> client.execute(
165
+ ... 'INSERT INTO test (x) '
166
+ ... 'SELECT * FROM system.numbers LIMIT %(limit)s',
167
+ ... {'limit': 3}
168
+ ... )
169
+ []
170
+ >>> client.execute('SELECT sum(x) FROM test')
171
+ [(303,)]
172
+
173
+ DB API example:
174
+
175
+ .. code-block:: python
176
+
177
+ >>> from clickhouse_driver import connect
178
+ >>>
179
+ >>> conn = connect('clickhouse://localhost')
180
+ >>> cursor = conn.cursor()
181
+ >>>
182
+ >>> cursor.execute('SHOW TABLES')
183
+ >>> cursor.fetchall()
184
+ [('test',)]
185
+ >>> cursor.execute('DROP TABLE IF EXISTS test')
186
+ >>> cursor.fetchall()
187
+ []
188
+ >>> cursor.execute('CREATE TABLE test (x Int32) ENGINE = Memory')
189
+ >>> cursor.fetchall()
190
+ []
191
+ >>> cursor.executemany(
192
+ ... 'INSERT INTO test (x) VALUES',
193
+ ... [{'x': 100}]
194
+ ... )
195
+ >>> cursor.rowcount
196
+ 1
197
+ >>> cursor.executemany('INSERT INTO test (x) VALUES', [[200]])
198
+ >>> cursor.rowcount
199
+ 1
200
+ >>> cursor.execute(
201
+ ... 'INSERT INTO test (x) '
202
+ ... 'SELECT * FROM system.numbers LIMIT %(limit)s',
203
+ ... {'limit': 3}
204
+ ... )
205
+ >>> cursor.rowcount
206
+ 0
207
+ >>> cursor.execute('SELECT sum(x) FROM test')
208
+ >>> cursor.fetchall()
209
+ [(303,)]
210
+
211
+ License
212
+ =======
213
+
214
+ ClickHouse Python Driver is distributed under the `MIT license
215
+ <http://www.opensource.org/licenses/mit-license.php>`_.
@@ -0,0 +1,89 @@
1
+ clickhouse_driver/__init__.py,sha256=-RHHLH8KESN2fiVtQ1br8WM8Hl6CkqkunzvCOJCNkbM,159
2
+ clickhouse_driver/block.py,sha256=t2zZhtCzwp4aJj0CuDqXlDEgHXgwc6GRsIks2aaIZvI,6311
3
+ clickhouse_driver/blockstreamprofileinfo.py,sha256=nYx9QXWAS8aPiRbtAzwLRT5JIlJ8S103JMkudncwpFg,712
4
+ clickhouse_driver/bufferedreader.cp39-win_amd64.pyd,sha256=6Cdu7_KusU_TaQeLUDFLbfPead91w0Q3pImj7Wshs40,82432
5
+ clickhouse_driver/bufferedwriter.cp39-win_amd64.pyd,sha256=Y37QLkFY3A7JhKAR169NgTBGxsU0SmynP0xwxHABBPE,83968
6
+ clickhouse_driver/client.py,sha256=iYSz2DLQC-t6RLmtWJvtHoEWBAFtKDIafl874tz2ebs,32251
7
+ clickhouse_driver/clientinfo.py,sha256=cdMA2td6tuYPsN6m4qtGzLzGKY4zQune0s0fZlNRiEA,4271
8
+ clickhouse_driver/connection.py,sha256=1GlehPjkzAPtFaAAzKHlBxyXMAHLyNOtNUKQjG7kjq4,29950
9
+ clickhouse_driver/context.py,sha256=yPkJ_BN4LGODvKCOjNlDGqABwxAMQTQl7w1vIGRPBDg,909
10
+ clickhouse_driver/defines.py,sha256=EwrQz7sNNUmGZmZywQFpDpBFc67nB9GAZOBQEvvUJzA,2130
11
+ clickhouse_driver/errors.py,sha256=mffBg-Y2LFOSRzvE9V34RwFcvmfh67yqLeEBhrdjeXE,14343
12
+ clickhouse_driver/log.py,sha256=P9VS_YDY3a4JQsNOeUNNK0L1AAallTC1GF4FG5gCrac,1091
13
+ clickhouse_driver/opentelemetry.py,sha256=GIzHCxdB8LB1ozXtUjIpxsdznmRABAts64G2u2l4C_A,1622
14
+ clickhouse_driver/progress.py,sha256=mom2NRLg8dfE_ObOEthKqjSBIliBvDjt7joePvY_Fdw,1574
15
+ clickhouse_driver/protocol.py,sha256=BxCJiZLH0QkFmdNwog1OJm9MEMwdPZ1i5Jv1_NHcLb0,2965
16
+ clickhouse_driver/queryprocessingstage.py,sha256=lbV-bB5jWUp0hqYBTsUcRYkJhCgCTfN2G21AykMoAp0,186
17
+ clickhouse_driver/reader.py,sha256=PWKOKwjszu0sJbG-dd_TyGn8tQAzxg2gCJVbz27G3-8,1322
18
+ clickhouse_driver/readhelpers.py,sha256=tXOmSL9GSeHLdKE2yBlk0epfy-hGJ3bTOLq3Q6sXIkw,717
19
+ clickhouse_driver/result.py,sha256=RpjBUvRQJ70xISye7u6gxgQBJwc2UkNuusLkaZF7SmM,4098
20
+ clickhouse_driver/varint.cp39-win_amd64.pyd,sha256=VOxgkzGQcUAniPXLqzjCmwV5bWc_isP2TAlIucY_C9g,37888
21
+ clickhouse_driver/writer.py,sha256=yf5f1vTr56YFtL-Swpi_jBsPw5bQS56j53joB0Acdyk,1286
22
+ clickhouse_driver/columns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
+ clickhouse_driver/columns/arraycolumn.py,sha256=UiA48jw3o4-ert8BnzEbl2h1jVmtDH3jtcP1BTPru2w,5322
24
+ clickhouse_driver/columns/base.py,sha256=jRThD8Ol7gwNy3x0M7vvslkm0RDOsCLJqKGf0arsa0w,6504
25
+ clickhouse_driver/columns/boolcolumn.py,sha256=QgVCqbZWoFD1yvpppc92iiXIzReCVEh692efNSNH4UE,127
26
+ clickhouse_driver/columns/datecolumn.py,sha256=FT6qzmniFGKw5SpjFITiBf-fJGEwaoUIz7PMZMFxe8M,3209
27
+ clickhouse_driver/columns/datetimecolumn.py,sha256=RWucoNtcc4wUGQ6xPL0cTNmxFy8eQ50ZdHzexXBm3XE,6730
28
+ clickhouse_driver/columns/decimalcolumn.py,sha256=MBczjN6AtI0jgbVTNguwVE7ZdWql0XuMl-QohxV-sN0,3450
29
+ clickhouse_driver/columns/enumcolumn.py,sha256=zqZkSVVXfWsaPUbP59ayy7w8rG4otS9J51UPD29zs2Y,3674
30
+ clickhouse_driver/columns/exceptions.py,sha256=vrZMZ9ORRP7RSSd34azM_xFaeMaaYbwy6h6ZCeFNbIg,163
31
+ clickhouse_driver/columns/floatcolumn.py,sha256=Mci7Fl05dgkpDQRfjGaDP9QraZER5nkYX1lVsTA89Yk,925
32
+ clickhouse_driver/columns/intcolumn.py,sha256=ntpxyMiu44VQYJ0HyHlglwxMgUtnIgf3JE9LUD9Xwwc,3519
33
+ clickhouse_driver/columns/intervalcolumn.py,sha256=oQeybb4qrcp07LeVYfqgeZuHYGH5RaY7KnWVoIsDe1I,600
34
+ clickhouse_driver/columns/ipcolumn.py,sha256=LIt-NiUy70-8u5Amu0v0tlAlrolZ8gXzlFxcJYmjRAk,4095
35
+ clickhouse_driver/columns/jsoncolumn.py,sha256=SeCLSrmRoEg9wlvoehs7-EmrV8XkOL3lknzeOORhbJg,1175
36
+ clickhouse_driver/columns/largeint.cp39-win_amd64.pyd,sha256=uHwX7dP9RTpgTTbnmf6Uweq0daKPipuGmHfJFaxN8EI,58368
37
+ clickhouse_driver/columns/lowcardinalitycolumn.py,sha256=vMlhYYUPNmFhQiUAS77pE25KjI8TrO6ySz6w0ByBdZQ,4920
38
+ clickhouse_driver/columns/mapcolumn.py,sha256=gX7xvwsilfOHDCwmRJu4fW2Y1OrN_1cgZTmbvcyer30,2133
39
+ clickhouse_driver/columns/nestedcolumn.py,sha256=7x3xNYR22kEmgV4_3rPVZea2zCTU364O1tlOewMgw3M,303
40
+ clickhouse_driver/columns/nothingcolumn.py,sha256=O1a1K17tPw5DYH49gBQq9urrmm0plDJ34YD2s2y6dhg,259
41
+ clickhouse_driver/columns/nullablecolumn.py,sha256=HF4AyX2UIb6qGqe4aY_Tdcjf1ddisPO2QYte3PCIaRU,169
42
+ clickhouse_driver/columns/nullcolumn.py,sha256=a8Il310y69JQr-NobcK9WhMAkXlogMvDmJbcueuOozs,331
43
+ clickhouse_driver/columns/service.py,sha256=6nIGwvcG-5LErQFn_3a2GRKZI2OnKYsy2oIIMhxJqlc,6181
44
+ clickhouse_driver/columns/simpleaggregatefunctioncolumn.py,sha256=zDWBd_Hc7AktHFZ5JY7SwxIk7G4WBHdJdcPBqihe7q0,235
45
+ clickhouse_driver/columns/stringcolumn.py,sha256=C-l7HaReg9AcJGQvgpSH07aV-CZMBP1jKArPHZi8Q2k,2059
46
+ clickhouse_driver/columns/tuplecolumn.py,sha256=DnwtEwVXzm-YyL5-cPe9MiOLOoTEcDhcYeBY6SuuZZQ,2040
47
+ clickhouse_driver/columns/util.py,sha256=3q965GjEmKkTmjIva31PhvAEGfuuGulad1amK7kQBEQ,1427
48
+ clickhouse_driver/columns/uuidcolumn.py,sha256=7CLPxsHJtV6Zt9jxILSkE0LAwffloLmrjjbwCZH34mA,1865
49
+ clickhouse_driver/columns/numpy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
+ clickhouse_driver/columns/numpy/base.py,sha256=Wk1ADpoQGWQv5X8sWi0esA2jmQGEoDakXZxImuYM2eM,1410
51
+ clickhouse_driver/columns/numpy/boolcolumn.py,sha256=0_RwEroY2-ZqMuxKeTNG27ZCWN_y9BxYZzbuFKeqoQg,140
52
+ clickhouse_driver/columns/numpy/datecolumn.py,sha256=xWFsFwiRmszK9A20UWnF4beTE5f8XQDj18x53xtXtSI,482
53
+ clickhouse_driver/columns/numpy/datetimecolumn.py,sha256=X6XgslCvWOF3dtVP3ogDQ4WLWhQqAkAdw5qAIuE8f1o,4890
54
+ clickhouse_driver/columns/numpy/floatcolumn.py,sha256=WnnlyR3vabh6ixllXwdyQ_t8y5MSqCddImWityxz6pE,599
55
+ clickhouse_driver/columns/numpy/intcolumn.py,sha256=ZzmjvjpEaZ_kk-mGEPdBAqUCjqCgGT8tUEzbQKwUVVA,792
56
+ clickhouse_driver/columns/numpy/lowcardinalitycolumn.py,sha256=ExYtwBBn6WfSQtWC0f79ZqjdqO3ZJ3IL6KtlQOgMh-k,3368
57
+ clickhouse_driver/columns/numpy/service.py,sha256=ENk26HPfxtbumcO_b2fGTNJdTgaJT0a-l3q_xrRIZZ4,2126
58
+ clickhouse_driver/columns/numpy/stringcolumn.py,sha256=FH87XPQv3ga0ZJnngubqu4DgxmUt8bjW8xJcNfOU7EI,2439
59
+ clickhouse_driver/columns/numpy/tuplecolumn.py,sha256=5RqhCIZ-CrWy_D0yyfTmlWBJgrunT5Yk-bM4OvIKZ1o,1233
60
+ clickhouse_driver/compression/__init__.py,sha256=7D3Wk_-KQsnIdaqp9163YCDsQ98Stbl6GF1h1KAFgAg,840
61
+ clickhouse_driver/compression/base.py,sha256=MCTK2aOGT3Lkso5r3-U-ilj2ln4r-nnfNI_2Ostsu6Q,2434
62
+ clickhouse_driver/compression/lz4.py,sha256=ZTf1zn0uG26O29XHBBZeve26JLPNbbEWWMZe065oa0Y,631
63
+ clickhouse_driver/compression/lz4hc.py,sha256=zGbj9vnM20W298kgzD0dIAgIeV30e5Kx8NSN8t4SDas,195
64
+ clickhouse_driver/compression/zstd.py,sha256=yzI1UwKkAudCzvHcznSIRlbAYeGeR3k6xux4hReCnBc,531
65
+ clickhouse_driver/dbapi/__init__.py,sha256=Ouv2PV7d6nlY7yBYu71rOfy_JBM7POoG-wPH8kGu0q0,1759
66
+ clickhouse_driver/dbapi/connection.py,sha256=VZ27YhRnr4VhKxiFbLFhdeQ-0Nb0IRyZRZ0f0_wrkPU,3032
67
+ clickhouse_driver/dbapi/cursor.py,sha256=MOtVhXVkDYxXTAM_AeesKxrcsR64Rt2tRYVmsWLM_tQ,10517
68
+ clickhouse_driver/dbapi/errors.py,sha256=yv2SDIK-ZlWmIxBoF5_igfHRyh9zTUJSgAj9g8S4cXo,440
69
+ clickhouse_driver/dbapi/extras.py,sha256=je1tjk6gb-QqLMoWu_iXCqhJK159vyyHsCB_8vXkXyw,2129
70
+ clickhouse_driver/numpy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
+ clickhouse_driver/numpy/block.py,sha256=k8CqQxaVSviZvicS03exPZG_LFwbzB5-NnLB2EuBKgQ,180
72
+ clickhouse_driver/numpy/helpers.py,sha256=cwRvBX4a-o-QdccYIxFT3p8DPUaXqyXWsVNTSiG8Cdw,803
73
+ clickhouse_driver/numpy/result.py,sha256=D-7IsaIt0u4WJ8iSzXYBB0OiPgPu5ptu-1HiJvTW-No,3563
74
+ clickhouse_driver/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
+ clickhouse_driver/settings/available.py,sha256=8b1YUjt-_6gO9Cio02VZSMPdhM70zk-NMhE4f_jwFx8,16613
76
+ clickhouse_driver/settings/types.py,sha256=u_A3FzREqIjj4OSEdKUwm1Xn8jEnGpp-9AvqbcE2G8s,1108
77
+ clickhouse_driver/settings/writer.py,sha256=x0FVdbKZR9lN-hXAT2xxkoqvGo1ojvWWwyP3NaI7ZDA,1099
78
+ clickhouse_driver/streams/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
79
+ clickhouse_driver/streams/compressed.py,sha256=eyFCuq_sLX6oJLQ_h1QX3IB9IgUx56pPqPfhmeiA6ag,2865
80
+ clickhouse_driver/streams/native.py,sha256=lIJFxLRFrh2zqRAvf8W2JPmXdGtJu3LPDUkfaBrLAfk,3493
81
+ clickhouse_driver/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
82
+ clickhouse_driver/util/compat.py,sha256=wIB_6ULSapKx-Fi64lZ0YJ-TtWOQXePHE90wZopIM1I,876
83
+ clickhouse_driver/util/escape.py,sha256=vL8sY6XdHhjFwtHn8yQ3JbeZfocWt6jyvxFf-nEiRtM,2262
84
+ clickhouse_driver/util/helpers.py,sha256=IGmaK3L8_i8C-3NJWPWT2VK5hAtLxfflF0ti2z45SHs,4574
85
+ clickhouse_driver-0.2.10.dist-info/licenses/LICENSE,sha256=b2SjNa4zGQk6XzJwmeE1dQjjtWRvX_zxJIAl_ZbN_S8,1143
86
+ clickhouse_driver-0.2.10.dist-info/METADATA,sha256=L7JSolHa_2zc_NGUpJK-fXouxcU8UNJseMQkSxePWYE,6607
87
+ clickhouse_driver-0.2.10.dist-info/WHEEL,sha256=XkFE14KmFh7mutkkb-qn_ueuH2lwfT8rLdfc5xpQ7wE,99
88
+ clickhouse_driver-0.2.10.dist-info/top_level.txt,sha256=PrE0Lrs4d-gRQwzABaABfym9Qvr4nN6uTrDy6Q7zQME,18
89
+ clickhouse_driver-0.2.10.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.36.2)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp39-cp39-win_amd64
5
5
 
@@ -1,21 +1,21 @@
1
- This is the MIT license: http://www.opensource.org/licenses/mit-license.php
2
-
3
- Copyright (c) 2017 by Konstantin Lebedev.
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ This is the MIT license: http://www.opensource.org/licenses/mit-license.php
2
+
3
+ Copyright (c) 2017 by Konstantin Lebedev.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -1,24 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: clickhouse-driver
3
- Version: 0.2.1
4
- Summary: Python driver with native interface for ClickHouse
5
- Home-page: https://github.com/mymarilyn/clickhouse-driver
6
- Author: Konstantin Lebedev
7
- Author-email: kostyan.lebedev@gmail.com
8
- License: MIT
9
- Project-URL: Documentation, https://clickhouse-driver.readthedocs.io
10
- Requires-Dist: pytz
11
- Requires-Dist: tzlocal (<3.0)
12
- Provides-Extra: lz4
13
- Requires-Dist: lz4 (<=3.0.1) ; extra == 'lz4'
14
- Requires-Dist: clickhouse-cityhash (>=1.0.2.1) ; extra == 'lz4'
15
- Provides-Extra: numpy
16
- Requires-Dist: numpy (>=1.12.0) ; extra == 'numpy'
17
- Requires-Dist: pandas (>=0.24.0) ; extra == 'numpy'
18
- Provides-Extra: zstd
19
- Requires-Dist: zstd ; extra == 'zstd'
20
- Requires-Dist: clickhouse-cityhash (>=1.0.2.1) ; extra == 'zstd'
21
-
22
- ClickHouse Python Driver
23
-
24
-
@@ -1,80 +0,0 @@
1
- clickhouse_driver/__init__.py,sha256=HJgCk7SmdCd-CPX5S_wRA-xCcAWpNWOYOopOWC7qB3s,167
2
- clickhouse_driver/block.py,sha256=tH8oJfNh8KRzlfmhCWJYWr7qrYtJxprx8Tq0eMCBS2A,5476
3
- clickhouse_driver/blockstreamprofileinfo.py,sha256=UG99TV28w4PfmI64EXRtVFmyhxsP7VxkEuny2DIQFgw,734
4
- clickhouse_driver/bufferedreader.cp39-win_amd64.pyd,sha256=DfhsSvEBS_eW1pRCCZpuK1cSUUnbqWN6NFmdipPS6_o,84992
5
- clickhouse_driver/bufferedwriter.cp39-win_amd64.pyd,sha256=pHnXyNEWWzq5rxlfbAX0HR5-yIGbpfNjJreCGoLfFhY,82432
6
- clickhouse_driver/client.py,sha256=qpcS8qzphTov-4ZUR8xfOq2h6m-GtPJUAmyXNGkInLg,26084
7
- clickhouse_driver/clientinfo.py,sha256=C-zBmDOqbtZcW-K0jEJ4l30drOKV4zTRhmFDc_wOFpE,2525
8
- clickhouse_driver/connection.py,sha256=y1wE--qxT2twebWnl6d-mmq0eLwPGNui-lM2WDwx6Qk,22745
9
- clickhouse_driver/context.py,sha256=gkkT6seC8AxovlpyvnJSBmqCXGXG8rhQ7AwNQ8a-AgE,945
10
- clickhouse_driver/defines.py,sha256=R-fZgX4pGhX9YGKfucELElYR7xEc6DW00E_WYESmVOw,1237
11
- clickhouse_driver/errors.py,sha256=crVa4kuwdexsnO03emhYlUa8WgWbn9ee7-sSzzFkr4Y,14639
12
- clickhouse_driver/log.py,sha256=jgGwDw00wXDWxJ0coQdrHfZeEcKRNthAFeLO0rRrES8,932
13
- clickhouse_driver/progress.py,sha256=W3_fbgC2nRmx7th29l4DQzmrO89ordIolrCra5JEWX8,1071
14
- clickhouse_driver/protocol.py,sha256=iI4daLokl_OgecTC8-MRRqSx9vKJm_fUntI52q7G8No,2395
15
- clickhouse_driver/queryprocessingstage.py,sha256=SJZsqb4yDsvQcDMuTxqR8OVcQ3VA8Zzu5hutp2pB950,194
16
- clickhouse_driver/reader.py,sha256=nYXjP5sGLb094Gx-4DfBsRWjN0cu6B_62vDeVJdFETQ,1391
17
- clickhouse_driver/readhelpers.py,sha256=gxl24wJwQ7y10izX3RLwqZ_MARhEbFRT-m3UWv8km3I,743
18
- clickhouse_driver/result.py,sha256=5t-aCoUr9vfgv_0jAFOgUrTU7D_ZBFg8pIKp0BgAkug,4242
19
- clickhouse_driver/varint.cp39-win_amd64.pyd,sha256=qH0WykSN4JkjnR_0ppGcRQ4X8BtzEDwi6BovMFjOUi4,31744
20
- clickhouse_driver/writer.py,sha256=YvRmaeXOPZSVZHjjN9BiSg1_z5ROeTMTS1Lwm6_rjG4,1353
21
- clickhouse_driver/columns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
- clickhouse_driver/columns/arraycolumn.py,sha256=jWPtyed_-Qkae0M9PXuxVt5hIRs7Aew32znvV-gmY1s,5129
23
- clickhouse_driver/columns/base.py,sha256=-KoImumjYQ4-KAxX9Dj4HY0FWu6Et-uN77e8XeIUqck,4241
24
- clickhouse_driver/columns/datecolumn.py,sha256=C6tAE1m8f5f-LwTyA19BYWZVZ04mNeI-rvebPKeCHPY,1417
25
- clickhouse_driver/columns/datetimecolumn.py,sha256=oj27yyfdmkweWHUpNik4P7FcfTGELKcq83CM8iaKEns,6964
26
- clickhouse_driver/columns/decimalcolumn.py,sha256=l2ENn7q2WtKWtbQmhBJuLx4VicAQ1Sgyvk7vjgAgT_g,3628
27
- clickhouse_driver/columns/enumcolumn.py,sha256=pr2BJ0R3V1oNzhniqtOmgfa9qCzSeDdFufdj16jZXG4,3338
28
- clickhouse_driver/columns/exceptions.py,sha256=qw1juhTWT0QenDnHN4WDilEuOvp8EginDiznBd1Spqs,175
29
- clickhouse_driver/columns/floatcolumn.py,sha256=tjAbWMIowDAJJT953WmDMboVXmIVoFFF8iGeBHcz2ew,959
30
- clickhouse_driver/columns/intcolumn.py,sha256=1xMyYTPzPdm7xe-XJhUn_hxDEgGVow0X5eG-leahVJo,3676
31
- clickhouse_driver/columns/intervalcolumn.py,sha256=iHB_LM27BdFX6H18f6O6t33j8S2wOkLrvZEr1Ex32UA,633
32
- clickhouse_driver/columns/ipcolumn.py,sha256=sKhSvnoPUclN7cKdZDXqoObT6ErhgPZlbbYZXaTFCD0,4213
33
- clickhouse_driver/columns/largeint.cp39-win_amd64.pyd,sha256=fyVT9kdtF62Yru1nVNHRBqFMP1PLdKhPrvrwZgkH0sM,51200
34
- clickhouse_driver/columns/lowcardinalitycolumn.py,sha256=JD7d1ZnnCQ0sP-_gzdQEW6GFZBH4y_7jNS75xmBwFv8,4130
35
- clickhouse_driver/columns/mapcolumn.py,sha256=mPObqTGDIA8g8RhwtSajfiK1CAhx6a5dqhroRzHSv8o,1816
36
- clickhouse_driver/columns/nothingcolumn.py,sha256=w7WQ1OuYcJ8j0dZ30guSzdCSM3Sp3AZ8Px5tknVqAEI,272
37
- clickhouse_driver/columns/nullablecolumn.py,sha256=YchemQNPvvxiS6Pd0AVPRP6ISU8kXaECQd-TaQwzHoY,176
38
- clickhouse_driver/columns/nullcolumn.py,sha256=1ySfYfCnK0NgOvhRWUdfp8SVlNDtvVJZ84hMXVsUcFw,346
39
- clickhouse_driver/columns/service.py,sha256=IGP-CK-5ZsY3YiNxjxrs8xQOtuqF5osFItRqtmM3OQo,4809
40
- clickhouse_driver/columns/simpleaggregatefunctioncolumn.py,sha256=XoHT80BXTwaDr_8uS49Etm7uKShunrCuYDdmI6rovf0,242
41
- clickhouse_driver/columns/stringcolumn.py,sha256=lRI94XOx-uVY-4YYh6BP8UN2Qp54Rr3peaNb8WOw_OI,2132
42
- clickhouse_driver/columns/tuplecolumn.py,sha256=yXRUsIxzrqfIijt924uUKXe85qStvkyGKrzBlqzUaF4,1706
43
- clickhouse_driver/columns/uuidcolumn.py,sha256=wymfIFR40t2k_PSFl0G4gY8-0UNAqCVRswav7B9iQzI,1887
44
- clickhouse_driver/columns/numpy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
- clickhouse_driver/columns/numpy/base.py,sha256=3ZZ0G0FigHJM-3O9o5nIFl8AUnge09nVkcnmIlU4dzE,352
46
- clickhouse_driver/columns/numpy/datecolumn.py,sha256=4h5eLCcA8cvhzQPbrTxLEPtd-bEmre1ZgiDNvTUf86o,307
47
- clickhouse_driver/columns/numpy/datetimecolumn.py,sha256=ID1Ygy198lNgVJS3v6k_7RPl5Z9gKfyTH4A7UXexstw,4763
48
- clickhouse_driver/columns/numpy/floatcolumn.py,sha256=RTttHzJ-Rfgd7zKtPYYXzXd2N_RkNkM3oC1vjXFjZjk,259
49
- clickhouse_driver/columns/numpy/intcolumn.py,sha256=N4m5q_Pnh1OJECLQbw_TRWCPEQj_QXGBUwcqMqan5O4,835
50
- clickhouse_driver/columns/numpy/lowcardinalitycolumn.py,sha256=EWNod7HPTf0BNLmKeP0lzRffKWq3-MUTiciFQxZopx8,2706
51
- clickhouse_driver/columns/numpy/service.py,sha256=sjmcUCnkJ6ya9LnGYvyFV9gXo4WeOlftnIRk94tpSGQ,3166
52
- clickhouse_driver/columns/numpy/stringcolumn.py,sha256=zVwnT3lNboGJPuTah2FeY4gVeGF6wEeMNxQSj44Hyfo,2504
53
- clickhouse_driver/compression/__init__.py,sha256=q06twpxA1_MHRxFBCOI7OZo6VWwRAgivxxWQbAvCBdE,742
54
- clickhouse_driver/compression/base.py,sha256=oq2V9pDIgV5Tc_WieHlkt4E8KlXoSebA4KQf70e1yPg,1328
55
- clickhouse_driver/compression/lz4.py,sha256=9uKkhGMuu17dYXsHZ6F8LbXtP5cH8O3P-wnXnlq1dcE,1824
56
- clickhouse_driver/compression/lz4hc.py,sha256=BOoiKkZfkhxpy_6Kl3gZKNciE8wXhZFPJWJcz04okco,204
57
- clickhouse_driver/compression/zstd.py,sha256=szcqegdSRZZLznNljmt9DpO69_PjXi0rU3lS1uwbyEY,1628
58
- clickhouse_driver/dbapi/__init__.py,sha256=YEjxOksGagpD94kekS55niQXZuXiWZd9XTaG-aG7iHM,1821
59
- clickhouse_driver/dbapi/connection.py,sha256=yVqM-9r7YHkIPtYib86k8kFuO66czhbo9eu9sCFJpYg,2934
60
- clickhouse_driver/dbapi/cursor.py,sha256=rLWeyrHwaF6VA2iySCobMlP8l30gUHvt5qYYWVd_zSo,10772
61
- clickhouse_driver/dbapi/errors.py,sha256=CYqUeWd-iMklEH-LZpaoUqU1hOIj95DvGTKwxscpVcQ,480
62
- clickhouse_driver/numpy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
63
- clickhouse_driver/numpy/block.py,sha256=psDwEeJDDR0yV_7ESfaOmQhhwNBIWIQOMDcck9zyZNU,188
64
- clickhouse_driver/numpy/helpers.py,sha256=SFexkpkgmkeygxmoiAdr0QxUShv70IiATtPi_C_kCTY,737
65
- clickhouse_driver/numpy/result.py,sha256=obyKQluARE8dgPLiWLWMgs9XRLIxY8So1nv_agtHKLM,3686
66
- clickhouse_driver/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
67
- clickhouse_driver/settings/available.py,sha256=85WWKENWS0qP5s1eDTbtxeBJi1I70L_5Qqmp7b1m9Sw,17018
68
- clickhouse_driver/settings/types.py,sha256=8vbN7liERsf9eHCUQl2SPeHgqmSHuWJq8vbD4iF3o_0,1158
69
- clickhouse_driver/settings/writer.py,sha256=Cz26KY4KTN6a_WLDUwdXfjny46o3fcNlH6Vp3da39-U,1093
70
- clickhouse_driver/streams/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
- clickhouse_driver/streams/compressed.py,sha256=43mBtJDje_Qe1B69vb9s9g4MAhGGnCtWYAigxN9sPqc,2953
72
- clickhouse_driver/streams/native.py,sha256=Vz1F_M12SipBJ0PpBaHPYaWCE1Caa-_I5DxltMy6vnk,2781
73
- clickhouse_driver/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
74
- clickhouse_driver/util/escape.py,sha256=j4i2TNpgQpJBgCOYQ1C4q_OUduiIWd_3ldDBfMNADlE,1216
75
- clickhouse_driver/util/helpers.py,sha256=yHGcxACdnGYZkkfdraeYXq9mMBgmqHyG_p62O8W_6FQ,1505
76
- clickhouse_driver-0.2.1.dist-info/LICENSE,sha256=-tjlYUbfXtOIARrV7R9S02lRGSfCjFf3L-G4zKxkOCU,1164
77
- clickhouse_driver-0.2.1.dist-info/METADATA,sha256=De35IJt9pJj0zvWvDwkYJ6AXqPW_x9LC6EHppHU3XAo,785
78
- clickhouse_driver-0.2.1.dist-info/WHEEL,sha256=jr7ubY0Lkz_yXH9FfFe9PTtLhGOsf62dZkNvTYrJINE,100
79
- clickhouse_driver-0.2.1.dist-info/top_level.txt,sha256=PrE0Lrs4d-gRQwzABaABfym9Qvr4nN6uTrDy6Q7zQME,18
80
- clickhouse_driver-0.2.1.dist-info/RECORD,,