duckrun 0.1.6.1__py3-none-any.whl → 0.1.6.2__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.
- duckrun/core.py +0 -3
- {duckrun-0.1.6.1.dist-info → duckrun-0.1.6.2.dist-info}/METADATA +6 -1
- duckrun-0.1.6.2.dist-info/RECORD +7 -0
- duckrun-0.1.6.1.dist-info/RECORD +0 -7
- {duckrun-0.1.6.1.dist-info → duckrun-0.1.6.2.dist-info}/WHEEL +0 -0
- {duckrun-0.1.6.1.dist-info → duckrun-0.1.6.2.dist-info}/licenses/LICENSE +0 -0
- {duckrun-0.1.6.1.dist-info → duckrun-0.1.6.2.dist-info}/top_level.txt +0 -0
duckrun/core.py
CHANGED
@@ -309,9 +309,6 @@ class Duckrun:
|
|
309
309
|
print(f"✅ Successfully attached {attached_count}/{len(tables)} tables")
|
310
310
|
print(f"{'='*60}\n")
|
311
311
|
|
312
|
-
print("Available views in DuckDB:")
|
313
|
-
self.con.sql("SELECT name FROM (SHOW ALL TABLES) WHERE database='memory' ORDER BY name").show()
|
314
|
-
|
315
312
|
if self.scan_all_schemas:
|
316
313
|
print(f"\n💡 Note: Tables are prefixed with schema (e.g., dbo_tablename)")
|
317
314
|
print(f" Default schema for operations: {self.schema}\n")
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: duckrun
|
3
|
-
Version: 0.1.6.
|
3
|
+
Version: 0.1.6.2
|
4
4
|
Summary: Lakehouse task runner powered by DuckDB for Microsoft Fabric
|
5
5
|
Author: mim
|
6
6
|
License: MIT
|
@@ -35,6 +35,11 @@ Simple task runner for Microsoft Fabric Python notebooks, powered by DuckDB and
|
|
35
35
|
```bash
|
36
36
|
pip install duckrun
|
37
37
|
```
|
38
|
+
for local usage, Note: When running locally, your internet speed will be the main bottleneck.
|
39
|
+
|
40
|
+
```bash
|
41
|
+
pip install duckrun[local]
|
42
|
+
```
|
38
43
|
|
39
44
|
## Quick Start
|
40
45
|
|
@@ -0,0 +1,7 @@
|
|
1
|
+
duckrun/__init__.py,sha256=L0jRtD9Ld8Ti4e6GRvPDdHvkQCFAPHM43GSP7ARh6EM,241
|
2
|
+
duckrun/core.py,sha256=_18GjaaT_CqhtivyDQuLIQx5UUuUIZNBMK9nBQgavXc,23180
|
3
|
+
duckrun-0.1.6.2.dist-info/licenses/LICENSE,sha256=-DeQQwdbCbkB4507ZF3QbocysB-EIjDtaLexvqRkGZc,1083
|
4
|
+
duckrun-0.1.6.2.dist-info/METADATA,sha256=dYy1d8V2yq2JwqkLXwJC8iBLMP6UbbFm9ZGHsBJLGuY,9497
|
5
|
+
duckrun-0.1.6.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
6
|
+
duckrun-0.1.6.2.dist-info/top_level.txt,sha256=BknMEwebbUHrVAp3SC92ps8MPhK7XSYsaogTvi_DmEU,8
|
7
|
+
duckrun-0.1.6.2.dist-info/RECORD,,
|
duckrun-0.1.6.1.dist-info/RECORD
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
duckrun/__init__.py,sha256=L0jRtD9Ld8Ti4e6GRvPDdHvkQCFAPHM43GSP7ARh6EM,241
|
2
|
-
duckrun/core.py,sha256=A5UdhpdEE9Wzje5d16c0ejTWn24zy5LCaoX6OghO8Us,23352
|
3
|
-
duckrun-0.1.6.1.dist-info/licenses/LICENSE,sha256=-DeQQwdbCbkB4507ZF3QbocysB-EIjDtaLexvqRkGZc,1083
|
4
|
-
duckrun-0.1.6.1.dist-info/METADATA,sha256=oHc38InTVr48Hp2mER4tbFL0RkWMEFXqg48OPYTk9qk,9358
|
5
|
-
duckrun-0.1.6.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
6
|
-
duckrun-0.1.6.1.dist-info/top_level.txt,sha256=BknMEwebbUHrVAp3SC92ps8MPhK7XSYsaogTvi_DmEU,8
|
7
|
-
duckrun-0.1.6.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|