duckdb-ext-tpcds 1.2.1.20250921__py3-none-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-ext-tpcds might be problematic. Click here for more details.
- duckdb_ext/extensions/v1.2.1/windows_amd64/tpcds.duckdb_extension +0 -0
- duckdb_ext_tpcds-1.2.1.20250921.dist-info/METADATA +51 -0
- duckdb_ext_tpcds-1.2.1.20250921.dist-info/RECORD +5 -0
- duckdb_ext_tpcds-1.2.1.20250921.dist-info/WHEEL +5 -0
- duckdb_ext_tpcds-1.2.1.20250921.dist-info/top_level.txt +1 -0
|
Binary file
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: duckdb-ext-tpcds
|
|
3
|
+
Version: 1.2.1.20250921
|
|
4
|
+
Summary: DuckDB extension package for duckdb/core-extensions/tpcds
|
|
5
|
+
Author-email: duckdb <noreply@example.invalid>, Jeremy Tan <jtanx@outlook.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Documentation, https://github.com/jtanx/duckdb-ext#readme
|
|
8
|
+
Project-URL: Issues, https://github.com/jtanx/duckdb-ext/issues
|
|
9
|
+
Project-URL: Source, https://github.com/jtanx/duckdb-ext
|
|
10
|
+
Keywords: duckdb,extensions
|
|
11
|
+
Classifier: Operating System :: MacOS
|
|
12
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
13
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
14
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
15
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
16
|
+
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
17
|
+
Requires-Python: >=3.9
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
Requires-Dist: duckdb==1.2.1
|
|
20
|
+
|
|
21
|
+
# DuckDB extensions via PIP
|
|
22
|
+
|
|
23
|
+
## Installaton
|
|
24
|
+
|
|
25
|
+
```
|
|
26
|
+
pip install duckdb-ext[tpcds]
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Usage
|
|
30
|
+
|
|
31
|
+
## Option 1: Automatic
|
|
32
|
+
|
|
33
|
+
```python
|
|
34
|
+
import duckdb
|
|
35
|
+
import duckdb_ext
|
|
36
|
+
|
|
37
|
+
with duckdb_ext.init(duckdb.connect()) as con:
|
|
38
|
+
...
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## Option 2: Manual
|
|
42
|
+
|
|
43
|
+
```python
|
|
44
|
+
import duckdb
|
|
45
|
+
import duckdb_ext
|
|
46
|
+
|
|
47
|
+
with duckdb.connect() as con:
|
|
48
|
+
con.execute("SET extension_directory = ?;", (get_extension_dir(),))
|
|
49
|
+
# Ideally also:
|
|
50
|
+
con.execute("SET autoinstall_known_extensions = false;")
|
|
51
|
+
```
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
duckdb_ext/extensions/v1.2.1/windows_amd64/tpcds.duckdb_extension,sha256=YWPYgGLdHMt9m7xPd0kIL5urcjOhRRONQEUgbixWpSY,68205590
|
|
2
|
+
duckdb_ext_tpcds-1.2.1.20250921.dist-info/METADATA,sha256=fW6VYWVuwHdAaWMb6WKWDPcdGkqXgSbL1vOr9HHwmEk,1359
|
|
3
|
+
duckdb_ext_tpcds-1.2.1.20250921.dist-info/WHEEL,sha256=ZjXRCNaQ9YSypEK2TE0LRB0sy2OVXSszb4Sx1XjM99k,97
|
|
4
|
+
duckdb_ext_tpcds-1.2.1.20250921.dist-info/top_level.txt,sha256=KnVr12uTkVbiGBRyHf8frgN_4jmzxUj2XNvWyLySEG4,11
|
|
5
|
+
duckdb_ext_tpcds-1.2.1.20250921.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
duckdb_ext
|