duckdb 1.5.0.dev37__cp312-cp312-win_amd64.whl → 1.5.0.dev94__cp312-cp312-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.

Potentially problematic release.


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

Files changed (56) hide show
  1. _duckdb-stubs/__init__.pyi +1443 -0
  2. _duckdb-stubs/_func.pyi +46 -0
  3. _duckdb-stubs/_sqltypes.pyi +75 -0
  4. _duckdb.cp312-win_amd64.pyd +0 -0
  5. adbc_driver_duckdb/__init__.py +49 -0
  6. adbc_driver_duckdb/dbapi.py +115 -0
  7. duckdb/__init__.py +341 -435
  8. duckdb/_dbapi_type_object.py +231 -0
  9. duckdb/_version.py +22 -0
  10. duckdb/bytes_io_wrapper.py +12 -9
  11. duckdb/experimental/__init__.py +2 -1
  12. duckdb/experimental/spark/__init__.py +3 -4
  13. duckdb/experimental/spark/_globals.py +8 -8
  14. duckdb/experimental/spark/_typing.py +7 -9
  15. duckdb/experimental/spark/conf.py +16 -15
  16. duckdb/experimental/spark/context.py +60 -44
  17. duckdb/experimental/spark/errors/__init__.py +33 -35
  18. duckdb/experimental/spark/errors/error_classes.py +1 -1
  19. duckdb/experimental/spark/errors/exceptions/__init__.py +1 -1
  20. duckdb/experimental/spark/errors/exceptions/base.py +39 -88
  21. duckdb/experimental/spark/errors/utils.py +11 -16
  22. duckdb/experimental/spark/exception.py +9 -6
  23. duckdb/experimental/spark/sql/__init__.py +5 -5
  24. duckdb/experimental/spark/sql/_typing.py +8 -15
  25. duckdb/experimental/spark/sql/catalog.py +21 -20
  26. duckdb/experimental/spark/sql/column.py +48 -55
  27. duckdb/experimental/spark/sql/conf.py +9 -8
  28. duckdb/experimental/spark/sql/dataframe.py +185 -233
  29. duckdb/experimental/spark/sql/functions.py +1222 -1248
  30. duckdb/experimental/spark/sql/group.py +56 -52
  31. duckdb/experimental/spark/sql/readwriter.py +80 -94
  32. duckdb/experimental/spark/sql/session.py +64 -59
  33. duckdb/experimental/spark/sql/streaming.py +9 -10
  34. duckdb/experimental/spark/sql/type_utils.py +67 -65
  35. duckdb/experimental/spark/sql/types.py +309 -345
  36. duckdb/experimental/spark/sql/udf.py +6 -6
  37. duckdb/filesystem.py +26 -16
  38. duckdb/func/__init__.py +3 -0
  39. duckdb/functional/__init__.py +12 -16
  40. duckdb/polars_io.py +130 -83
  41. duckdb/query_graph/__main__.py +91 -96
  42. duckdb/sqltypes/__init__.py +63 -0
  43. duckdb/typing/__init__.py +18 -8
  44. duckdb/udf.py +10 -5
  45. duckdb/value/__init__.py +1 -0
  46. duckdb/value/constant/__init__.py +62 -60
  47. {duckdb-1.5.0.dev37.dist-info → duckdb-1.5.0.dev94.dist-info}/METADATA +12 -4
  48. duckdb-1.5.0.dev94.dist-info/RECORD +52 -0
  49. duckdb/__init__.pyi +0 -713
  50. duckdb/functional/__init__.pyi +0 -31
  51. duckdb/typing/__init__.pyi +0 -36
  52. duckdb/value/constant/__init__.pyi +0 -115
  53. duckdb-1.5.0.dev37.dist-info/RECORD +0 -47
  54. /duckdb/{value/__init__.pyi → py.typed} +0 -0
  55. {duckdb-1.5.0.dev37.dist-info → duckdb-1.5.0.dev94.dist-info}/WHEEL +0 -0
  56. {duckdb-1.5.0.dev37.dist-info → duckdb-1.5.0.dev94.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,7 @@
1
- from typing import Any, Dict
2
- from duckdb.typing import DuckDBPyType
3
- from duckdb.typing import (
1
+ # ruff: noqa: D101, D104, D105, D107, ANN401
2
+ from typing import Any
3
+
4
+ from duckdb.sqltypes import (
4
5
  BIGINT,
5
6
  BIT,
6
7
  BLOB,
@@ -9,30 +10,31 @@ from duckdb.typing import (
9
10
  DOUBLE,
10
11
  FLOAT,
11
12
  HUGEINT,
12
- UHUGEINT,
13
13
  INTEGER,
14
14
  INTERVAL,
15
15
  SMALLINT,
16
16
  SQLNULL,
17
17
  TIME,
18
+ TIME_TZ,
18
19
  TIMESTAMP,
19
20
  TIMESTAMP_MS,
20
21
  TIMESTAMP_NS,
21
22
  TIMESTAMP_S,
22
23
  TIMESTAMP_TZ,
23
- TIME_TZ,
24
24
  TINYINT,
25
25
  UBIGINT,
26
+ UHUGEINT,
26
27
  UINTEGER,
27
28
  USMALLINT,
28
29
  UTINYINT,
29
30
  UUID,
30
31
  VARCHAR,
32
+ DuckDBPyType,
31
33
  )
32
34
 
33
35
 
34
36
  class Value:
35
- def __init__(self, object: Any, type: DuckDBPyType):
37
+ def __init__(self, object: Any, type: DuckDBPyType) -> None:
36
38
  self.object = object
37
39
  self.type = type
38
40
 
@@ -44,12 +46,12 @@ class Value:
44
46
 
45
47
 
46
48
  class NullValue(Value):
47
- def __init__(self):
49
+ def __init__(self) -> None:
48
50
  super().__init__(None, SQLNULL)
49
51
 
50
52
 
51
53
  class BooleanValue(Value):
52
- def __init__(self, object: Any):
54
+ def __init__(self, object: Any) -> None:
53
55
  super().__init__(object, BOOLEAN)
54
56
 
55
57
 
@@ -57,22 +59,22 @@ class BooleanValue(Value):
57
59
 
58
60
 
59
61
  class UnsignedBinaryValue(Value):
60
- def __init__(self, object: Any):
62
+ def __init__(self, object: Any) -> None:
61
63
  super().__init__(object, UTINYINT)
62
64
 
63
65
 
64
66
  class UnsignedShortValue(Value):
65
- def __init__(self, object: Any):
67
+ def __init__(self, object: Any) -> None:
66
68
  super().__init__(object, USMALLINT)
67
69
 
68
70
 
69
71
  class UnsignedIntegerValue(Value):
70
- def __init__(self, object: Any):
72
+ def __init__(self, object: Any) -> None:
71
73
  super().__init__(object, UINTEGER)
72
74
 
73
75
 
74
76
  class UnsignedLongValue(Value):
75
- def __init__(self, object: Any):
77
+ def __init__(self, object: Any) -> None:
76
78
  super().__init__(object, UBIGINT)
77
79
 
78
80
 
@@ -80,32 +82,32 @@ class UnsignedLongValue(Value):
80
82
 
81
83
 
82
84
  class BinaryValue(Value):
83
- def __init__(self, object: Any):
85
+ def __init__(self, object: Any) -> None:
84
86
  super().__init__(object, TINYINT)
85
87
 
86
88
 
87
89
  class ShortValue(Value):
88
- def __init__(self, object: Any):
90
+ def __init__(self, object: Any) -> None:
89
91
  super().__init__(object, SMALLINT)
90
92
 
91
93
 
92
94
  class IntegerValue(Value):
93
- def __init__(self, object: Any):
95
+ def __init__(self, object: Any) -> None:
94
96
  super().__init__(object, INTEGER)
95
97
 
96
98
 
97
99
  class LongValue(Value):
98
- def __init__(self, object: Any):
100
+ def __init__(self, object: Any) -> None:
99
101
  super().__init__(object, BIGINT)
100
102
 
101
103
 
102
104
  class HugeIntegerValue(Value):
103
- def __init__(self, object: Any):
105
+ def __init__(self, object: Any) -> None:
104
106
  super().__init__(object, HUGEINT)
105
107
 
106
108
 
107
109
  class UnsignedHugeIntegerValue(Value):
108
- def __init__(self, object: Any):
110
+ def __init__(self, object: Any) -> None:
109
111
  super().__init__(object, UHUGEINT)
110
112
 
111
113
 
@@ -113,17 +115,17 @@ class UnsignedHugeIntegerValue(Value):
113
115
 
114
116
 
115
117
  class FloatValue(Value):
116
- def __init__(self, object: Any):
118
+ def __init__(self, object: Any) -> None:
117
119
  super().__init__(object, FLOAT)
118
120
 
119
121
 
120
122
  class DoubleValue(Value):
121
- def __init__(self, object: Any):
123
+ def __init__(self, object: Any) -> None:
122
124
  super().__init__(object, DOUBLE)
123
125
 
124
126
 
125
127
  class DecimalValue(Value):
126
- def __init__(self, object: Any, width: int, scale: int):
128
+ def __init__(self, object: Any, width: int, scale: int) -> None:
127
129
  import duckdb
128
130
 
129
131
  decimal_type = duckdb.decimal_type(width, scale)
@@ -134,22 +136,22 @@ class DecimalValue(Value):
134
136
 
135
137
 
136
138
  class StringValue(Value):
137
- def __init__(self, object: Any):
139
+ def __init__(self, object: Any) -> None:
138
140
  super().__init__(object, VARCHAR)
139
141
 
140
142
 
141
143
  class UUIDValue(Value):
142
- def __init__(self, object: Any):
144
+ def __init__(self, object: Any) -> None:
143
145
  super().__init__(object, UUID)
144
146
 
145
147
 
146
148
  class BitValue(Value):
147
- def __init__(self, object: Any):
149
+ def __init__(self, object: Any) -> None:
148
150
  super().__init__(object, BIT)
149
151
 
150
152
 
151
153
  class BlobValue(Value):
152
- def __init__(self, object: Any):
154
+ def __init__(self, object: Any) -> None:
153
155
  super().__init__(object, BLOB)
154
156
 
155
157
 
@@ -157,52 +159,52 @@ class BlobValue(Value):
157
159
 
158
160
 
159
161
  class DateValue(Value):
160
- def __init__(self, object: Any):
162
+ def __init__(self, object: Any) -> None:
161
163
  super().__init__(object, DATE)
162
164
 
163
165
 
164
166
  class IntervalValue(Value):
165
- def __init__(self, object: Any):
167
+ def __init__(self, object: Any) -> None:
166
168
  super().__init__(object, INTERVAL)
167
169
 
168
170
 
169
171
  class TimestampValue(Value):
170
- def __init__(self, object: Any):
172
+ def __init__(self, object: Any) -> None:
171
173
  super().__init__(object, TIMESTAMP)
172
174
 
173
175
 
174
176
  class TimestampSecondValue(Value):
175
- def __init__(self, object: Any):
177
+ def __init__(self, object: Any) -> None:
176
178
  super().__init__(object, TIMESTAMP_S)
177
179
 
178
180
 
179
181
  class TimestampMilisecondValue(Value):
180
- def __init__(self, object: Any):
182
+ def __init__(self, object: Any) -> None:
181
183
  super().__init__(object, TIMESTAMP_MS)
182
184
 
183
185
 
184
186
  class TimestampNanosecondValue(Value):
185
- def __init__(self, object: Any):
187
+ def __init__(self, object: Any) -> None:
186
188
  super().__init__(object, TIMESTAMP_NS)
187
189
 
188
190
 
189
191
  class TimestampTimeZoneValue(Value):
190
- def __init__(self, object: Any):
192
+ def __init__(self, object: Any) -> None:
191
193
  super().__init__(object, TIMESTAMP_TZ)
192
194
 
193
195
 
194
196
  class TimeValue(Value):
195
- def __init__(self, object: Any):
197
+ def __init__(self, object: Any) -> None:
196
198
  super().__init__(object, TIME)
197
199
 
198
200
 
199
201
  class TimeTimeZoneValue(Value):
200
- def __init__(self, object: Any):
202
+ def __init__(self, object: Any) -> None:
201
203
  super().__init__(object, TIME_TZ)
202
204
 
203
205
 
204
206
  class ListValue(Value):
205
- def __init__(self, object: Any, child_type: DuckDBPyType):
207
+ def __init__(self, object: Any, child_type: DuckDBPyType) -> None:
206
208
  import duckdb
207
209
 
208
210
  list_type = duckdb.list_type(child_type)
@@ -210,7 +212,7 @@ class ListValue(Value):
210
212
 
211
213
 
212
214
  class StructValue(Value):
213
- def __init__(self, object: Any, children: Dict[str, DuckDBPyType]):
215
+ def __init__(self, object: Any, children: dict[str, DuckDBPyType]) -> None:
214
216
  import duckdb
215
217
 
216
218
  struct_type = duckdb.struct_type(children)
@@ -218,7 +220,7 @@ class StructValue(Value):
218
220
 
219
221
 
220
222
  class MapValue(Value):
221
- def __init__(self, object: Any, key_type: DuckDBPyType, value_type: DuckDBPyType):
223
+ def __init__(self, object: Any, key_type: DuckDBPyType, value_type: DuckDBPyType) -> None:
222
224
  import duckdb
223
225
 
224
226
  map_type = duckdb.map_type(key_type, value_type)
@@ -226,43 +228,43 @@ class MapValue(Value):
226
228
 
227
229
 
228
230
  class UnionType(Value):
229
- def __init__(self, object: Any, members: Dict[str, DuckDBPyType]):
231
+ def __init__(self, object: Any, members: dict[str, DuckDBPyType]) -> None:
230
232
  import duckdb
231
233
 
232
234
  union_type = duckdb.union_type(members)
233
235
  super().__init__(object, union_type)
234
236
 
235
237
 
236
- # TODO: add EnumValue once `duckdb.enum_type` is added
238
+ # TODO: add EnumValue once `duckdb.enum_type` is added # noqa: TD002, TD003
237
239
 
238
240
  __all__ = [
239
- "Value",
240
- "NullValue",
241
- "BooleanValue",
242
- "UnsignedBinaryValue",
243
- "UnsignedShortValue",
244
- "UnsignedIntegerValue",
245
- "UnsignedLongValue",
246
241
  "BinaryValue",
247
- "ShortValue",
248
- "IntegerValue",
249
- "LongValue",
250
- "HugeIntegerValue",
251
- "UnsignedHugeIntegerValue",
252
- "FloatValue",
253
- "DoubleValue",
254
- "DecimalValue",
255
- "StringValue",
256
- "UUIDValue",
257
242
  "BitValue",
258
243
  "BlobValue",
244
+ "BooleanValue",
259
245
  "DateValue",
246
+ "DecimalValue",
247
+ "DoubleValue",
248
+ "FloatValue",
249
+ "HugeIntegerValue",
250
+ "IntegerValue",
260
251
  "IntervalValue",
261
- "TimestampValue",
262
- "TimestampSecondValue",
252
+ "LongValue",
253
+ "NullValue",
254
+ "ShortValue",
255
+ "StringValue",
256
+ "TimeTimeZoneValue",
257
+ "TimeValue",
263
258
  "TimestampMilisecondValue",
264
259
  "TimestampNanosecondValue",
260
+ "TimestampSecondValue",
265
261
  "TimestampTimeZoneValue",
266
- "TimeValue",
267
- "TimeTimeZoneValue",
262
+ "TimestampValue",
263
+ "UUIDValue",
264
+ "UnsignedBinaryValue",
265
+ "UnsignedHugeIntegerValue",
266
+ "UnsignedIntegerValue",
267
+ "UnsignedLongValue",
268
+ "UnsignedShortValue",
269
+ "Value",
268
270
  ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: duckdb
3
- Version: 1.5.0.dev37
3
+ Version: 1.5.0.dev94
4
4
  Summary: DuckDB in-process database
5
5
  Keywords: DuckDB,Database,SQL,OLAP
6
6
  Author: DuckDB Foundation
@@ -23,6 +23,7 @@ Classifier: Programming Language :: Python :: 3.10
23
23
  Classifier: Programming Language :: Python :: 3.11
24
24
  Classifier: Programming Language :: Python :: 3.12
25
25
  Classifier: Programming Language :: Python :: 3.13
26
+ Classifier: Programming Language :: Python :: 3.14
26
27
  Classifier: Programming Language :: C++
27
28
  Project-URL: Documentation, https://duckdb.org/docs/stable/clients/python/overview
28
29
  Project-URL: Source, https://github.com/duckdb/duckdb-python
@@ -33,9 +34,9 @@ Provides-Extra: all
33
34
  Requires-Dist: ipython; extra == "all"
34
35
  Requires-Dist: fsspec; extra == "all"
35
36
  Requires-Dist: numpy; extra == "all"
36
- Requires-Dist: pandas; python_version < "3.14" and extra == "all"
37
+ Requires-Dist: pandas; extra == "all"
37
38
  Requires-Dist: pyarrow; python_version < "3.14" and extra == "all"
38
- Requires-Dist: adbc_driver_manager; python_version < "3.14" and extra == "all"
39
+ Requires-Dist: adbc-driver-manager; extra == "all"
39
40
  Description-Content-Type: text/markdown
40
41
 
41
42
  <div align="center">
@@ -59,7 +60,14 @@ Description-Content-Type: text/markdown
59
60
  <a href="https://duckdb.org/docs/stable/clients/python/overview">API Docs (Python)</a>
60
61
  </p>
61
62
 
62
- # The [DuckDB](https://github.com/duckdb/duckdb) Python Package
63
+ # DuckDB: A Fast, In-Process, Portable, Open Source, Analytical Database System
64
+
65
+ * **Simple**: DuckDB is easy to install and deploy. It has zero external dependencies and runs in-process in its host application or as a single binary.
66
+ * **Portable**: DuckDB runs on Linux, macOS, Windows, Android, iOS and all popular hardware architectures. It has idiomatic client APIs for major programming languages.
67
+ * **Feature-rich**: DuckDB offers a rich SQL dialect. It can read and write file formats such as CSV, Parquet, and JSON, to and from the local file system and remote endpoints such as S3 buckets.
68
+ * **Fast**: DuckDB runs analytical queries at blazing speed thanks to its columnar engine, which supports parallel execution and can process larger-than-memory workloads.
69
+ * **Extensible**: DuckDB is extensible by third-party features such as new data types, functions, file formats and new SQL syntax. User contributions are available as community extensions.
70
+ * **Free**: DuckDB and its core extensions are open-source under the permissive MIT License. The intellectual property of the project is held by the DuckDB Foundation.
63
71
 
64
72
  ## Installation
65
73
 
@@ -0,0 +1,52 @@
1
+ _duckdb-stubs/__init__.pyi,sha256=IfzMA8elE8TYQC9FMetmaicgULKvYe8CLXqJw_1HKOw,64989
2
+ _duckdb-stubs/_func.pyi,sha256=pfAOz8vh8oUr25d59i_V3Vr9C2kKRX258h3kLrcO7Os,2132
3
+ _duckdb-stubs/_sqltypes.pyi,sha256=Isp1qkQvCq0ziAK1qOXk6dPjfrsJfKSXrX5Y4v8zd70,2240
4
+ _duckdb.cp312-win_amd64.pyd,sha256=MKa_L8HGx-gzHSsh3dbA4--bLuU55qMquHg0Il8cViM,35647488
5
+ adbc_driver_duckdb/__init__.py,sha256=_Ql-wKG3VPpA6igaeeP0hVIyah8pp7_uMq5ktShBGEo,1895
6
+ adbc_driver_duckdb/dbapi.py,sha256=_zN1IQV6uXO_dUg-ZZuJPvGr5lySo8tQEIrQnz2swIs,3576
7
+ duckdb/__init__.py,sha256=BWKsKsF6VeAaqHnayjhlwshmGmTmteintELpl51ZABg,7888
8
+ duckdb/_dbapi_type_object.py,sha256=sNn-ww6DlssS_kpKszGh8lye5n4r27kpJeO1ib0ojyk,7211
9
+ duckdb/_version.py,sha256=a7EZTJ5s5a4V1HEJC7IakcsU_KTkXVknLoVfEZjJkBM,866
10
+ duckdb/bytes_io_wrapper.py,sha256=U-FqgvFM04bhzLkXCLQrqorcXGLUPXVL9tcg0Y78qtc,3150
11
+ duckdb/experimental/__init__.py,sha256=LuaitcC-RLBqQITO8pyl4g4wKvA1JxpK2mQUzk1v6Wg,62
12
+ duckdb/experimental/spark/__init__.py,sha256=pEJGLmqLG3dU3wdpXEiGx3lVpyrTqIqNXlkZDyW9uG8,273
13
+ duckdb/experimental/spark/_globals.py,sha256=40WV6dn-3vQdDjGJoTshsAsxL7rSJ_qYLbKTVexlGtY,2562
14
+ duckdb/experimental/spark/_typing.py,sha256=UcltBZJZOtm6C9TQk4FhxlqTpeL3zJ19mMzRUPm4N2c,1574
15
+ duckdb/experimental/spark/conf.py,sha256=caYx7Q1P8H35B8RpbVLu2nj0ELJ0g3fFULovUa_KcUw,1636
16
+ duckdb/experimental/spark/context.py,sha256=2VY5R1tDAfk93l_-wS4RQ72wT7pMLl154E3sM030DG8,6983
17
+ duckdb/experimental/spark/errors/__init__.py,sha256=I6BreoZEXBT8AWrtritiBixM8mQLfmDPal9iJOpK4Mg,2200
18
+ duckdb/experimental/spark/errors/error_classes.py,sha256=91Ww3AI1IF7hmI-YM7nPaD-d5onN--lLKOeo9GgoSuA,28190
19
+ duckdb/experimental/spark/errors/exceptions/__init__.py,sha256=DsbPNVGJEVZ_HBKcJh4-sP_W9v4789GIso9sM7d0yF0,814
20
+ duckdb/experimental/spark/errors/exceptions/base.py,sha256=ZJEjJ4KPh_FKzmOqCU67kYuge1fDDaOv3Ww1HrIrEYw,5314
21
+ duckdb/experimental/spark/errors/utils.py,sha256=zbyIETv-HPOxsGABFGNx82uT9146JuWSLUycQLAzfRs,4548
22
+ duckdb/experimental/spark/exception.py,sha256=xx9vfA_ryGmSSC_MhHsbvk7Cj8VP6XSxfsBHSaKiKCE,651
23
+ duckdb/experimental/spark/LICENSE,sha256=vCGc3GQQzJKXFfRiLOJCSviQBJsHHzTWjewZVVVL8zI,13646
24
+ duckdb/experimental/spark/sql/__init__.py,sha256=ZRUTYpjIhNir5vJmPWX9VYJq85qnir32bP8AgNsE9QY,277
25
+ duckdb/experimental/spark/sql/_typing.py,sha256=PTgRwOMSMnYtlZXcsDAd7ynWCij5yfBN0caZo4p1RIQ,2379
26
+ duckdb/experimental/spark/sql/catalog.py,sha256=lh1qIwDH0YqYJub4gBG78YQCnwiO9DDWjvrXES613ug,2587
27
+ duckdb/experimental/spark/sql/column.py,sha256=-rqqrppRpSFiO20Ibqgv0gOfGIS0rPQzSVo3F3HuMHQ,11454
28
+ duckdb/experimental/spark/sql/conf.py,sha256=vqqomhORPBiPz9eBDlM_nm-AlC8JgK-NjSbssr0cFi8,787
29
+ duckdb/experimental/spark/sql/dataframe.py,sha256=qyRNImVdTgoXN2AYG28WLwQrSmJ3rZ6dMQaT5Ku2lkE,47840
30
+ duckdb/experimental/spark/sql/functions.py,sha256=QRclVWHdOq4wwOCuqLa-TdbvMBGWg9RQU5GpypkDiXc,181337
31
+ duckdb/experimental/spark/sql/group.py,sha256=qfOA3xXwNc5LL26xnaB1BEhUz_uInXH20xag1q756DY,13952
32
+ duckdb/experimental/spark/sql/readwriter.py,sha256=b7Sazd6LqyHfcdQaKXAOsGHmF4SF_iulzoc2Gm9g6ww,17930
33
+ duckdb/experimental/spark/sql/session.py,sha256=baQyZOH5wlUbuDgaxnwcR7ItdOr9Ecjka87prTLh7VM,9858
34
+ duckdb/experimental/spark/sql/streaming.py,sha256=7sz9L_URf3ONeetNV1h-nj11sDrOF0lDAWB1Xdg76so,1104
35
+ duckdb/experimental/spark/sql/type_utils.py,sha256=jerRgTP-UXlSVxFCWwO4LCDtMgDRsPBFeC8ZCbmrpiw,3134
36
+ duckdb/experimental/spark/sql/types.py,sha256=Y6LY8ubLngUHSvGdLg9qpHCHVDbE_scTyhTts1hWWgw,42441
37
+ duckdb/experimental/spark/sql/udf.py,sha256=IIYN517bTu5XYnuz5cU3gKrPImmdMOTs6-61jSvtjwE,1210
38
+ duckdb/filesystem.py,sha256=aRbfP4hvNVxJw96BN-JmqruTPikqUB8tniaZ-d3Pu0A,1332
39
+ duckdb/func/__init__.py,sha256=bIIrWjAJY028-hR41yhNmG0ZnvMPbhxR2l4JJKASDb0,206
40
+ duckdb/functional/__init__.py,sha256=kHrsNpZpmOGZb-wP2_teqY53iATo5x35xrUa9TqRNW8,483
41
+ duckdb/polars_io.py,sha256=7jCO5O93kqEB1t1es9oTq0wq0J8F55jGhKg1OXO639Y,11280
42
+ duckdb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
+ duckdb/query_graph/__main__.py,sha256=FFJE6nOnrf3ZnAgRaES3CTaILfQfo9h0FeJ35cPjsOo,11834
44
+ duckdb/sqltypes/__init__.py,sha256=DMSH62BFa5huuKDPnVcn5crZA8Gs3dh-5DRMQQp3gMw,949
45
+ duckdb/typing/__init__.py,sha256=J3e1D57dNlPAlYb-ZrB6CcfppBTeKg0a11uKNd3SFvY,1198
46
+ duckdb/udf.py,sha256=__OFm3IEeUgi_GLDjRzHj4gVSCo6wL4wVW2I1OwnvDI,797
47
+ duckdb/value/__init__.py,sha256=L3FIrKSnCnvhjGM6DCwE4Q2w3OuFmMgxXJMzZneV8dM,14
48
+ duckdb/value/constant/__init__.py,sha256=d2Qp5N-2zFrYmEJKHyHIAip46kdt9igAmfvfnREZqNQ,6093
49
+ duckdb-1.5.0.dev94.dist-info/METADATA,sha256=xLIJRo2_1BZzG3YBX9jrGCQS-j_Jy9C9m0KYDMUOW8s,4309
50
+ duckdb-1.5.0.dev94.dist-info/WHEEL,sha256=chqeLhPBtPdrOoreR34YMcofSk3yWDQhkrsDJ2n48LU,106
51
+ duckdb-1.5.0.dev94.dist-info/licenses/LICENSE,sha256=QACFao8AflP8UxUFM9ZEvK78ZLdGHkPBTMudPWalnNI,1079
52
+ duckdb-1.5.0.dev94.dist-info/RECORD,,