duckdb 1.5.0.dev53__cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.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.
- _duckdb-stubs/__init__.pyi +1443 -0
- _duckdb-stubs/_func.pyi +46 -0
- _duckdb-stubs/_sqltypes.pyi +75 -0
- _duckdb.cpython-314-x86_64-linux-gnu.so +0 -0
- adbc_driver_duckdb/__init__.py +50 -0
- adbc_driver_duckdb/dbapi.py +115 -0
- duckdb/__init__.py +381 -0
- duckdb/_dbapi_type_object.py +231 -0
- duckdb/_version.py +22 -0
- duckdb/bytes_io_wrapper.py +69 -0
- duckdb/experimental/__init__.py +3 -0
- duckdb/experimental/spark/LICENSE +260 -0
- duckdb/experimental/spark/__init__.py +6 -0
- duckdb/experimental/spark/_globals.py +77 -0
- duckdb/experimental/spark/_typing.py +46 -0
- duckdb/experimental/spark/conf.py +46 -0
- duckdb/experimental/spark/context.py +180 -0
- duckdb/experimental/spark/errors/__init__.py +70 -0
- duckdb/experimental/spark/errors/error_classes.py +918 -0
- duckdb/experimental/spark/errors/exceptions/__init__.py +16 -0
- duckdb/experimental/spark/errors/exceptions/base.py +168 -0
- duckdb/experimental/spark/errors/utils.py +111 -0
- duckdb/experimental/spark/exception.py +18 -0
- duckdb/experimental/spark/sql/__init__.py +7 -0
- duckdb/experimental/spark/sql/_typing.py +86 -0
- duckdb/experimental/spark/sql/catalog.py +79 -0
- duckdb/experimental/spark/sql/column.py +361 -0
- duckdb/experimental/spark/sql/conf.py +24 -0
- duckdb/experimental/spark/sql/dataframe.py +1389 -0
- duckdb/experimental/spark/sql/functions.py +6195 -0
- duckdb/experimental/spark/sql/group.py +424 -0
- duckdb/experimental/spark/sql/readwriter.py +435 -0
- duckdb/experimental/spark/sql/session.py +297 -0
- duckdb/experimental/spark/sql/streaming.py +36 -0
- duckdb/experimental/spark/sql/type_utils.py +107 -0
- duckdb/experimental/spark/sql/types.py +1239 -0
- duckdb/experimental/spark/sql/udf.py +37 -0
- duckdb/filesystem.py +33 -0
- duckdb/func/__init__.py +3 -0
- duckdb/functional/__init__.py +13 -0
- duckdb/polars_io.py +284 -0
- duckdb/py.typed +0 -0
- duckdb/query_graph/__main__.py +358 -0
- duckdb/sqltypes/__init__.py +63 -0
- duckdb/typing/__init__.py +71 -0
- duckdb/udf.py +24 -0
- duckdb/value/__init__.py +1 -0
- duckdb/value/constant/__init__.py +270 -0
- duckdb-1.5.0.dev53.dist-info/METADATA +87 -0
- duckdb-1.5.0.dev53.dist-info/RECORD +52 -0
- duckdb-1.5.0.dev53.dist-info/WHEEL +6 -0
- duckdb-1.5.0.dev53.dist-info/licenses/LICENSE +7 -0
|
@@ -0,0 +1,270 @@
|
|
|
1
|
+
# ruff: noqa: D101, D104, D105, D107, ANN401
|
|
2
|
+
from typing import Any
|
|
3
|
+
|
|
4
|
+
from duckdb.sqltypes import (
|
|
5
|
+
BIGINT,
|
|
6
|
+
BIT,
|
|
7
|
+
BLOB,
|
|
8
|
+
BOOLEAN,
|
|
9
|
+
DATE,
|
|
10
|
+
DOUBLE,
|
|
11
|
+
FLOAT,
|
|
12
|
+
HUGEINT,
|
|
13
|
+
INTEGER,
|
|
14
|
+
INTERVAL,
|
|
15
|
+
SMALLINT,
|
|
16
|
+
SQLNULL,
|
|
17
|
+
TIME,
|
|
18
|
+
TIME_TZ,
|
|
19
|
+
TIMESTAMP,
|
|
20
|
+
TIMESTAMP_MS,
|
|
21
|
+
TIMESTAMP_NS,
|
|
22
|
+
TIMESTAMP_S,
|
|
23
|
+
TIMESTAMP_TZ,
|
|
24
|
+
TINYINT,
|
|
25
|
+
UBIGINT,
|
|
26
|
+
UHUGEINT,
|
|
27
|
+
UINTEGER,
|
|
28
|
+
USMALLINT,
|
|
29
|
+
UTINYINT,
|
|
30
|
+
UUID,
|
|
31
|
+
VARCHAR,
|
|
32
|
+
DuckDBPyType,
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
class Value:
|
|
37
|
+
def __init__(self, object: Any, type: DuckDBPyType) -> None:
|
|
38
|
+
self.object = object
|
|
39
|
+
self.type = type
|
|
40
|
+
|
|
41
|
+
def __repr__(self) -> str:
|
|
42
|
+
return str(self.object)
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
# Miscellaneous
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
class NullValue(Value):
|
|
49
|
+
def __init__(self) -> None:
|
|
50
|
+
super().__init__(None, SQLNULL)
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
class BooleanValue(Value):
|
|
54
|
+
def __init__(self, object: Any) -> None:
|
|
55
|
+
super().__init__(object, BOOLEAN)
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
# Unsigned numerics
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
class UnsignedBinaryValue(Value):
|
|
62
|
+
def __init__(self, object: Any) -> None:
|
|
63
|
+
super().__init__(object, UTINYINT)
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
class UnsignedShortValue(Value):
|
|
67
|
+
def __init__(self, object: Any) -> None:
|
|
68
|
+
super().__init__(object, USMALLINT)
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
class UnsignedIntegerValue(Value):
|
|
72
|
+
def __init__(self, object: Any) -> None:
|
|
73
|
+
super().__init__(object, UINTEGER)
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
class UnsignedLongValue(Value):
|
|
77
|
+
def __init__(self, object: Any) -> None:
|
|
78
|
+
super().__init__(object, UBIGINT)
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
# Signed numerics
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
class BinaryValue(Value):
|
|
85
|
+
def __init__(self, object: Any) -> None:
|
|
86
|
+
super().__init__(object, TINYINT)
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
class ShortValue(Value):
|
|
90
|
+
def __init__(self, object: Any) -> None:
|
|
91
|
+
super().__init__(object, SMALLINT)
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
class IntegerValue(Value):
|
|
95
|
+
def __init__(self, object: Any) -> None:
|
|
96
|
+
super().__init__(object, INTEGER)
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
class LongValue(Value):
|
|
100
|
+
def __init__(self, object: Any) -> None:
|
|
101
|
+
super().__init__(object, BIGINT)
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
class HugeIntegerValue(Value):
|
|
105
|
+
def __init__(self, object: Any) -> None:
|
|
106
|
+
super().__init__(object, HUGEINT)
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
class UnsignedHugeIntegerValue(Value):
|
|
110
|
+
def __init__(self, object: Any) -> None:
|
|
111
|
+
super().__init__(object, UHUGEINT)
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
# Fractional
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
class FloatValue(Value):
|
|
118
|
+
def __init__(self, object: Any) -> None:
|
|
119
|
+
super().__init__(object, FLOAT)
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
class DoubleValue(Value):
|
|
123
|
+
def __init__(self, object: Any) -> None:
|
|
124
|
+
super().__init__(object, DOUBLE)
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
class DecimalValue(Value):
|
|
128
|
+
def __init__(self, object: Any, width: int, scale: int) -> None:
|
|
129
|
+
import duckdb
|
|
130
|
+
|
|
131
|
+
decimal_type = duckdb.decimal_type(width, scale)
|
|
132
|
+
super().__init__(object, decimal_type)
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
# String
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
class StringValue(Value):
|
|
139
|
+
def __init__(self, object: Any) -> None:
|
|
140
|
+
super().__init__(object, VARCHAR)
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
class UUIDValue(Value):
|
|
144
|
+
def __init__(self, object: Any) -> None:
|
|
145
|
+
super().__init__(object, UUID)
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
class BitValue(Value):
|
|
149
|
+
def __init__(self, object: Any) -> None:
|
|
150
|
+
super().__init__(object, BIT)
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
class BlobValue(Value):
|
|
154
|
+
def __init__(self, object: Any) -> None:
|
|
155
|
+
super().__init__(object, BLOB)
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
# Temporal
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
class DateValue(Value):
|
|
162
|
+
def __init__(self, object: Any) -> None:
|
|
163
|
+
super().__init__(object, DATE)
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
class IntervalValue(Value):
|
|
167
|
+
def __init__(self, object: Any) -> None:
|
|
168
|
+
super().__init__(object, INTERVAL)
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
class TimestampValue(Value):
|
|
172
|
+
def __init__(self, object: Any) -> None:
|
|
173
|
+
super().__init__(object, TIMESTAMP)
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
class TimestampSecondValue(Value):
|
|
177
|
+
def __init__(self, object: Any) -> None:
|
|
178
|
+
super().__init__(object, TIMESTAMP_S)
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
class TimestampMilisecondValue(Value):
|
|
182
|
+
def __init__(self, object: Any) -> None:
|
|
183
|
+
super().__init__(object, TIMESTAMP_MS)
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
class TimestampNanosecondValue(Value):
|
|
187
|
+
def __init__(self, object: Any) -> None:
|
|
188
|
+
super().__init__(object, TIMESTAMP_NS)
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
class TimestampTimeZoneValue(Value):
|
|
192
|
+
def __init__(self, object: Any) -> None:
|
|
193
|
+
super().__init__(object, TIMESTAMP_TZ)
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
class TimeValue(Value):
|
|
197
|
+
def __init__(self, object: Any) -> None:
|
|
198
|
+
super().__init__(object, TIME)
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
class TimeTimeZoneValue(Value):
|
|
202
|
+
def __init__(self, object: Any) -> None:
|
|
203
|
+
super().__init__(object, TIME_TZ)
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
class ListValue(Value):
|
|
207
|
+
def __init__(self, object: Any, child_type: DuckDBPyType) -> None:
|
|
208
|
+
import duckdb
|
|
209
|
+
|
|
210
|
+
list_type = duckdb.list_type(child_type)
|
|
211
|
+
super().__init__(object, list_type)
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
class StructValue(Value):
|
|
215
|
+
def __init__(self, object: Any, children: dict[str, DuckDBPyType]) -> None:
|
|
216
|
+
import duckdb
|
|
217
|
+
|
|
218
|
+
struct_type = duckdb.struct_type(children)
|
|
219
|
+
super().__init__(object, struct_type)
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
class MapValue(Value):
|
|
223
|
+
def __init__(self, object: Any, key_type: DuckDBPyType, value_type: DuckDBPyType) -> None:
|
|
224
|
+
import duckdb
|
|
225
|
+
|
|
226
|
+
map_type = duckdb.map_type(key_type, value_type)
|
|
227
|
+
super().__init__(object, map_type)
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
class UnionType(Value):
|
|
231
|
+
def __init__(self, object: Any, members: dict[str, DuckDBPyType]) -> None:
|
|
232
|
+
import duckdb
|
|
233
|
+
|
|
234
|
+
union_type = duckdb.union_type(members)
|
|
235
|
+
super().__init__(object, union_type)
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
# TODO: add EnumValue once `duckdb.enum_type` is added # noqa: TD002, TD003
|
|
239
|
+
|
|
240
|
+
__all__ = [
|
|
241
|
+
"BinaryValue",
|
|
242
|
+
"BitValue",
|
|
243
|
+
"BlobValue",
|
|
244
|
+
"BooleanValue",
|
|
245
|
+
"DateValue",
|
|
246
|
+
"DecimalValue",
|
|
247
|
+
"DoubleValue",
|
|
248
|
+
"FloatValue",
|
|
249
|
+
"HugeIntegerValue",
|
|
250
|
+
"IntegerValue",
|
|
251
|
+
"IntervalValue",
|
|
252
|
+
"LongValue",
|
|
253
|
+
"NullValue",
|
|
254
|
+
"ShortValue",
|
|
255
|
+
"StringValue",
|
|
256
|
+
"TimeTimeZoneValue",
|
|
257
|
+
"TimeValue",
|
|
258
|
+
"TimestampMilisecondValue",
|
|
259
|
+
"TimestampNanosecondValue",
|
|
260
|
+
"TimestampSecondValue",
|
|
261
|
+
"TimestampTimeZoneValue",
|
|
262
|
+
"TimestampValue",
|
|
263
|
+
"UUIDValue",
|
|
264
|
+
"UnsignedBinaryValue",
|
|
265
|
+
"UnsignedHugeIntegerValue",
|
|
266
|
+
"UnsignedIntegerValue",
|
|
267
|
+
"UnsignedLongValue",
|
|
268
|
+
"UnsignedShortValue",
|
|
269
|
+
"Value",
|
|
270
|
+
]
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: duckdb
|
|
3
|
+
Version: 1.5.0.dev53
|
|
4
|
+
Summary: DuckDB in-process database
|
|
5
|
+
Keywords: DuckDB,Database,SQL,OLAP
|
|
6
|
+
Author: DuckDB Foundation
|
|
7
|
+
Maintainer: DuckDB Foundation
|
|
8
|
+
Classifier: Development Status :: 3 - Alpha
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Classifier: Topic :: Database
|
|
12
|
+
Classifier: Topic :: Database :: Database Engines/Servers
|
|
13
|
+
Classifier: Topic :: Scientific/Engineering
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: Intended Audience :: Education
|
|
16
|
+
Classifier: Intended Audience :: Information Technology
|
|
17
|
+
Classifier: Intended Audience :: Science/Research
|
|
18
|
+
Classifier: Programming Language :: Python
|
|
19
|
+
Classifier: Programming Language :: Python :: 3
|
|
20
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
26
|
+
Classifier: Programming Language :: C++
|
|
27
|
+
Project-URL: Documentation, https://duckdb.org/docs/stable/clients/python/overview
|
|
28
|
+
Project-URL: Source, https://github.com/duckdb/duckdb-python
|
|
29
|
+
Project-URL: Issues, https://github.com/duckdb/duckdb-python/issues
|
|
30
|
+
Project-URL: Changelog, https://github.com/duckdb/duckdb/releases
|
|
31
|
+
Requires-Python: >=3.9.0
|
|
32
|
+
Provides-Extra: all
|
|
33
|
+
Requires-Dist: ipython; extra == "all"
|
|
34
|
+
Requires-Dist: fsspec; extra == "all"
|
|
35
|
+
Requires-Dist: numpy; extra == "all"
|
|
36
|
+
Requires-Dist: pandas; python_version < "3.14" and extra == "all"
|
|
37
|
+
Requires-Dist: pyarrow; python_version < "3.14" and extra == "all"
|
|
38
|
+
Requires-Dist: adbc_driver_manager; python_version < "3.14" and extra == "all"
|
|
39
|
+
Description-Content-Type: text/markdown
|
|
40
|
+
|
|
41
|
+
<div align="center">
|
|
42
|
+
<picture>
|
|
43
|
+
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/duckdb/duckdb/refs/heads/main/logo/DuckDB_Logo-horizontal.svg">
|
|
44
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/duckdb/duckdb/refs/heads/main/logo/DuckDB_Logo-horizontal-dark-mode.svg">
|
|
45
|
+
<img alt="DuckDB logo" src="https://raw.githubusercontent.com/duckdb/duckdb/refs/heads/main/logo/DuckDB_Logo-horizontal.svg" height="100">
|
|
46
|
+
</picture>
|
|
47
|
+
</div>
|
|
48
|
+
<br />
|
|
49
|
+
<p align="center">
|
|
50
|
+
<a href="https://discord.gg/tcvwpjfnZx"><img src="https://shields.io/discord/909674491309850675" alt="Discord" /></a>
|
|
51
|
+
<a href="https://pypi.org/project/duckdb/"><img src="https://img.shields.io/pypi/v/duckdb.svg" alt="PyPI Latest Release"/></a>
|
|
52
|
+
</p>
|
|
53
|
+
<br />
|
|
54
|
+
<p align="center">
|
|
55
|
+
<a href="https://duckdb.org">DuckDB.org</a>
|
|
56
|
+
|
|
|
57
|
+
<a href="https://duckdb.org/docs/stable/guides/python/install">User Guide (Python)</a>
|
|
58
|
+
-
|
|
59
|
+
<a href="https://duckdb.org/docs/stable/clients/python/overview">API Docs (Python)</a>
|
|
60
|
+
</p>
|
|
61
|
+
|
|
62
|
+
# DuckDB: A Fast, In-Process, Portable, Open Source, Analytical Database System
|
|
63
|
+
|
|
64
|
+
* **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.
|
|
65
|
+
* **Portable**: DuckDB runs on Linux, macOS, Windows, Android, iOS and all popular hardware architectures. It has idiomatic client APIs for major programming languages.
|
|
66
|
+
* **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.
|
|
67
|
+
* **Fast**: DuckDB runs analytical queries at blazing speed thanks to its columnar engine, which supports parallel execution and can process larger-than-memory workloads.
|
|
68
|
+
* **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.
|
|
69
|
+
* **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.
|
|
70
|
+
|
|
71
|
+
## Installation
|
|
72
|
+
|
|
73
|
+
Install the latest release of DuckDB directly from [PyPI](https://pypi.org/project/duckdb/):
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
pip install duckdb
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
Install with all optional dependencies:
|
|
80
|
+
|
|
81
|
+
```bash
|
|
82
|
+
pip install 'duckdb[all]'
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
## Contributing
|
|
86
|
+
|
|
87
|
+
See the [CONTRIBUTING.md](CONTRIBUTING.md) for instructions on how to set up a development environment.
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
_duckdb.cpython-314-x86_64-linux-gnu.so,sha256=7v2MYI5StC-2l6DV0krXGuZS3TkvPm2v3UwFVhzTKTo,58295256
|
|
2
|
+
_duckdb-stubs/__init__.pyi,sha256=kPWv71k0P7ehfS7hjx-aj3GXA93QfuJtcRkPzV70s2U,63546
|
|
3
|
+
_duckdb-stubs/_func.pyi,sha256=1_39vmTVZZep_vSNVWVRBwLlz3YUk42yQeAvfZQXk1M,2086
|
|
4
|
+
_duckdb-stubs/_sqltypes.pyi,sha256=zJD-frBluEE2PrZccsHr9TjkTuWcCQLPe9FoG0YpKMI,2165
|
|
5
|
+
adbc_driver_duckdb/__init__.py,sha256=OIW5djWVmfo5fFFNzJLIPuWbAh0j5XbEoUG5OTmpSSs,1914
|
|
6
|
+
adbc_driver_duckdb/dbapi.py,sha256=Jg6JWpy2WUoew8XN-LU5BW7_RFDJQKmhaOYD7uPY6xo,3461
|
|
7
|
+
duckdb/__init__.py,sha256=KyCqaPIZeRd3oZXP7F-H__YQKZ0mv7webvdpJHbHBKE,7507
|
|
8
|
+
duckdb/_dbapi_type_object.py,sha256=NW-m3YcpJwwpQ4UC9lj68eioUB1NbdmgaaQID6v9ecU,6980
|
|
9
|
+
duckdb/_version.py,sha256=YED0DUA67R3YQhz3hY_0QA_goTaWK2HE2epopxDxrIc,844
|
|
10
|
+
duckdb/bytes_io_wrapper.py,sha256=ymaALp1QJQghb1dx8j_rLqGWz3oZ6ghK3jt2sjojEQI,3081
|
|
11
|
+
duckdb/filesystem.py,sha256=GjKX8kNZrGTVtZkRru6pPO6-A5oWP1Dd8Qi89J62TqA,1299
|
|
12
|
+
duckdb/polars_io.py,sha256=rOY2k5SKDvFQfxgTdkngi70CY8HRaPk-NE3u4vzY-YE,10996
|
|
13
|
+
duckdb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
+
duckdb/udf.py,sha256=J0uNT5nAyxesuRW_OFOpJoIucDIjRYbmaogh4K8519I,773
|
|
15
|
+
duckdb/experimental/__init__.py,sha256=RtBuXJuOPi6sh03OWG2Oor3yDEiVWV9q2aJQTNhSkcY,59
|
|
16
|
+
duckdb/experimental/spark/LICENSE,sha256=_1qknFLpgwYnWC6YVPp2gn0Zw7BAuFYWLRctcqnpUGc,13387
|
|
17
|
+
duckdb/experimental/spark/__init__.py,sha256=n88g7UWukshEnqxhqYKIxuqeqBBIIPJSq_0LMAq3kvA,267
|
|
18
|
+
duckdb/experimental/spark/_globals.py,sha256=cOZjzthtbY9priskvpw-VJI4oQRJpteLcth1uunZmGs,2485
|
|
19
|
+
duckdb/experimental/spark/_typing.py,sha256=ucsD63ySqAZrmxXjbruUlRcI_B_N11YkaAubHE9rM4Q,1528
|
|
20
|
+
duckdb/experimental/spark/conf.py,sha256=TgbrtuZ8t1hIQ4qwAQJ1N9QBGqbRtbHRYQayyxvvneo,1590
|
|
21
|
+
duckdb/experimental/spark/context.py,sha256=EON5ckQp9g1YgMVNBvHlOqANmt7Nv86iwWrh4o3XimE,6803
|
|
22
|
+
duckdb/experimental/spark/exception.py,sha256=lyWpHLPPwAlBUrJicU_F7flgNR2rO6rrhkd3-baMaHE,633
|
|
23
|
+
duckdb/experimental/spark/errors/__init__.py,sha256=bZuHemepRWlGWXTsMS-h1H_II4GnNLQX00FhxybxJF8,2130
|
|
24
|
+
duckdb/experimental/spark/errors/error_classes.py,sha256=vxjHjulWrFy5yyHV2Vb4mRLrN6gyoDnTH5QfgtmuVdc,27272
|
|
25
|
+
duckdb/experimental/spark/errors/utils.py,sha256=xGGTrtoo_Rj4vYu9knGLN0nxq7of2G8iwT-Lv9qslBI,4437
|
|
26
|
+
duckdb/experimental/spark/errors/exceptions/__init__.py,sha256=ptR0qQGsC3A1xqgNDj4zAMadcNHCCquukzQV0ytey9w,798
|
|
27
|
+
duckdb/experimental/spark/errors/exceptions/base.py,sha256=ttou4L-iCPYSYgdNMh0v8qtbo7swz3c_btva-9-jFxc,5146
|
|
28
|
+
duckdb/experimental/spark/sql/__init__.py,sha256=Dsax7nLowynyH_bsZB7ZhFstOw386C9FggQ2MmkhMMA,270
|
|
29
|
+
duckdb/experimental/spark/sql/_typing.py,sha256=FnGgzj8uVF7TTrJ2X94IBo7XW_ezYQ8DYUwZ8wP-PIQ,2293
|
|
30
|
+
duckdb/experimental/spark/sql/catalog.py,sha256=An1hDFhI7eyf2indn0bpJFjEE5QWFw-FmD-u03JMFTU,2508
|
|
31
|
+
duckdb/experimental/spark/sql/column.py,sha256=7bTZWlnCqS0avoP7Pg10Zop1cNjv-_Mlzu3y-Y4X8Fs,11093
|
|
32
|
+
duckdb/experimental/spark/sql/conf.py,sha256=DQ04ZoJu7IQX855p22eSZLMBz7aWhm8yYMWNPi6U5UY,763
|
|
33
|
+
duckdb/experimental/spark/sql/dataframe.py,sha256=F_vUzIY7suX3y5pjv2bntSFF3-CTJ9M3od3dkcto2Cc,46451
|
|
34
|
+
duckdb/experimental/spark/sql/functions.py,sha256=rw9Iin_v9nDxRGzxSfn3-nMtXeSnWiesj4Ay4Qx2jEw,175142
|
|
35
|
+
duckdb/experimental/spark/sql/group.py,sha256=UHKCKwXB2M59Ki_tpsaC5s10ExqVdMLFVhncY5cR6do,13528
|
|
36
|
+
duckdb/experimental/spark/sql/readwriter.py,sha256=MEMBn9qX8Mj7i3rEOXVaZqIfbHB-AaFO1w32Ecvlal8,17495
|
|
37
|
+
duckdb/experimental/spark/sql/session.py,sha256=YKR42m92puFA-tqfmhbPLS6pYkyhbl61sxwI9C9Ybe0,9561
|
|
38
|
+
duckdb/experimental/spark/sql/streaming.py,sha256=Re1v3PMEK93JalVXAE0oOMZM47m-YO75qlnwnJi0-C4,1068
|
|
39
|
+
duckdb/experimental/spark/sql/type_utils.py,sha256=pbMyGdjaOj4yJE7jDgCXv85oMwUg4SjZoW8YOS4vWmY,3027
|
|
40
|
+
duckdb/experimental/spark/sql/types.py,sha256=dvmMWAwaKAYuUauwK3B5m3-KFO-XNvktumDU1X5B9kk,41202
|
|
41
|
+
duckdb/experimental/spark/sql/udf.py,sha256=4I-HyLIZeMJEYzasC23xVDtS0FNdPDWXIAzQTWCx7hs,1173
|
|
42
|
+
duckdb/func/__init__.py,sha256=oisXanDpKYjBG-tS1AMGVtodDGqKZspYbCLX5YlbWLQ,203
|
|
43
|
+
duckdb/functional/__init__.py,sha256=-WAPwJvoxdk2xQipz6unr8MwMyalnQ2aOUfMLhAPBw0,470
|
|
44
|
+
duckdb/query_graph/__main__.py,sha256=HPiIRIas63s1m6IGQGwMqi9t4qr-922z3ESZDzPFLbc,11476
|
|
45
|
+
duckdb/sqltypes/__init__.py,sha256=07pg8Ykp905Mf-KqJtCfGBChLPit5nW6t7KEpAz9LR8,886
|
|
46
|
+
duckdb/typing/__init__.py,sha256=XmmRUTVgQMOobDmer7GmabnuFZ8t7rVfbtoJdK5uD6Y,1127
|
|
47
|
+
duckdb/value/__init__.py,sha256=0eVFfVd2aZXTZHFXcLZnFk8MftII4cMhRBBYt3Hm3LI,13
|
|
48
|
+
duckdb/value/constant/__init__.py,sha256=anBSU847CeWmtnsjc5VtM0B9urBko8TWnBiCB3XPWs4,5823
|
|
49
|
+
duckdb-1.5.0.dev53.dist-info/METADATA,sha256=45MTGkKjZ4qfzPu0uugiOpkVx5gwAO_5MrIFkjcyRtA,4314
|
|
50
|
+
duckdb-1.5.0.dev53.dist-info/WHEEL,sha256=2Z7cqR7z5TjHVR5woomqa7pivY4dqlyUOKdayBOXB8Q,157
|
|
51
|
+
duckdb-1.5.0.dev53.dist-info/RECORD,,
|
|
52
|
+
duckdb-1.5.0.dev53.dist-info/licenses/LICENSE,sha256=fhf9MSSfqHXLOxxeBcbD6Zt1UJ9qKATKF2wheDTeHcs,1072
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
Copyright 2018-2025 Stichting DuckDB Foundation
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
4
|
+
|
|
5
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
6
|
+
|
|
7
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|