prismnote 0.4.1__tar.gz → 0.4.3__tar.gz
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.
- {prismnote-0.4.1/python/prismnote.egg-info → prismnote-0.4.3}/PKG-INFO +42 -15
- {prismnote-0.4.1 → prismnote-0.4.3}/README.md +30 -9
- {prismnote-0.4.1 → prismnote-0.4.3}/pyproject.toml +14 -10
- {prismnote-0.4.1 → prismnote-0.4.3}/python/prismnote/__init__.py +1 -1
- {prismnote-0.4.1 → prismnote-0.4.3}/python/prismnote/_cli.py +1 -1
- {prismnote-0.4.1 → prismnote-0.4.3/python/prismnote.egg-info}/PKG-INFO +42 -15
- {prismnote-0.4.1 → prismnote-0.4.3}/python/prismnote.egg-info/requires.txt +12 -5
- {prismnote-0.4.1 → prismnote-0.4.3}/LICENSE +0 -0
- {prismnote-0.4.1 → prismnote-0.4.3}/python/prismnote/__main__.py +0 -0
- {prismnote-0.4.1 → prismnote-0.4.3}/python/prismnote.egg-info/SOURCES.txt +0 -0
- {prismnote-0.4.1 → prismnote-0.4.3}/python/prismnote.egg-info/dependency_links.txt +0 -0
- {prismnote-0.4.1 → prismnote-0.4.3}/python/prismnote.egg-info/entry_points.txt +0 -0
- {prismnote-0.4.1 → prismnote-0.4.3}/python/prismnote.egg-info/top_level.txt +0 -0
- {prismnote-0.4.1 → prismnote-0.4.3}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: prismnote
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.3
|
|
4
4
|
Summary: Modern, open-source Jupyter-compatible data science notebook with Rust performance
|
|
5
5
|
Author-email: Georgi Mammen Mullassery <mullassery@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -28,17 +28,23 @@ License-File: LICENSE
|
|
|
28
28
|
Requires-Dist: ipykernel>=6.0
|
|
29
29
|
Requires-Dist: jupyter>=1.0
|
|
30
30
|
Provides-Extra: sql
|
|
31
|
-
Requires-Dist:
|
|
31
|
+
Requires-Dist: duckdb>=0.9; extra == "sql"
|
|
32
|
+
Requires-Dist: pg8000>=1.30; extra == "sql"
|
|
32
33
|
Requires-Dist: pymysql>=1.0; extra == "sql"
|
|
33
34
|
Provides-Extra: postgres
|
|
34
|
-
Requires-Dist:
|
|
35
|
+
Requires-Dist: pg8000>=1.30; extra == "postgres"
|
|
35
36
|
Provides-Extra: mysql
|
|
36
37
|
Requires-Dist: pymysql>=1.0; extra == "mysql"
|
|
38
|
+
Provides-Extra: duckdb
|
|
39
|
+
Requires-Dist: duckdb>=0.9; extra == "duckdb"
|
|
37
40
|
Provides-Extra: cloud
|
|
38
|
-
Requires-Dist: snowflake-connector-python>=3.0; extra == "cloud"
|
|
41
|
+
Requires-Dist: snowflake-connector-python[pandas]>=3.0; extra == "cloud"
|
|
39
42
|
Requires-Dist: google-cloud-bigquery>=3.0; extra == "cloud"
|
|
40
|
-
Requires-Dist:
|
|
41
|
-
Requires-Dist:
|
|
43
|
+
Requires-Dist: db-dtypes>=1.0; extra == "cloud"
|
|
44
|
+
Requires-Dist: redshift_connector>=2.0; extra == "cloud"
|
|
45
|
+
Requires-Dist: databricks-sql-connector>=2.0; extra == "cloud"
|
|
46
|
+
Requires-Dist: pyathena>=3.0; extra == "cloud"
|
|
47
|
+
Requires-Dist: trino>=0.328; extra == "cloud"
|
|
42
48
|
Provides-Extra: ai
|
|
43
49
|
Requires-Dist: anthropic>=0.7; extra == "ai"
|
|
44
50
|
Provides-Extra: openai
|
|
@@ -59,7 +65,7 @@ Dynamic: license-file
|
|
|
59
65
|
**A fast, modern, open-source data-science notebook.**
|
|
60
66
|
Rust engine · React UI · local-first · AI-native.
|
|
61
67
|
|
|
62
|
-
**License:** MIT · **Status:** Beta (v0.4) · **PyPI:** [`prismnote`](https://pypi.org/project/prismnote/)
|
|
68
|
+
**License:** MIT · **Status:** Beta (v0.4.3) · **PyPI:** [`prismnote`](https://pypi.org/project/prismnote/)
|
|
63
69
|
|
|
64
70
|
</div>
|
|
65
71
|
|
|
@@ -76,10 +82,11 @@ AI assistance, scheduled jobs, git, and generated cloud-deploy files — all on
|
|
|
76
82
|
- **Jupyter-compatible** — native `.ipynb` import/export.
|
|
77
83
|
- **Batteries included** — kernel, SQL, charts, AI, jobs, git, deploy, search, terminal.
|
|
78
84
|
|
|
79
|
-
> **Status note:** PrismNote is **beta**. The notebook, kernel, AI, jobs, git,
|
|
80
|
-
> charts
|
|
81
|
-
>
|
|
82
|
-
> before shipping. See the
|
|
85
|
+
> **Status note:** PrismNote is **beta**. The notebook, kernel, AI, jobs, git,
|
|
86
|
+
> charts, variable explorer, and SQL (databases + warehouses) are functional. SQL runs
|
|
87
|
+
> through the kernel using the OSS driver you install (see [CONNECTORS.md](CONNECTORS.md));
|
|
88
|
+
> deployment files are **generated templates** you review before shipping. See the
|
|
89
|
+
> [roadmap](#roadmap).
|
|
83
90
|
|
|
84
91
|
---
|
|
85
92
|
|
|
@@ -141,6 +148,16 @@ binary isn't published for your platform/version yet, use the from-source steps
|
|
|
141
148
|
- **Interrupt** a running cell and **restart** the kernel.
|
|
142
149
|
- **Dynamic input widgets** — `prism.input / slider / select / checkbox` re-run the
|
|
143
150
|
cell when changed.
|
|
151
|
+
- **Variable explorer** — a Variables tab listing the kernel's variables (name, type,
|
|
152
|
+
shape, preview).
|
|
153
|
+
|
|
154
|
+
### Data & SQL
|
|
155
|
+
- **Connections** for SQLite, DuckDB, PostgreSQL, MySQL, and 8 cloud warehouses
|
|
156
|
+
(Snowflake, BigQuery, Redshift, Databricks, Athena, Trino, Presto, Synapse).
|
|
157
|
+
- **Real query execution** through the kernel using permissively-licensed (OSS)
|
|
158
|
+
drivers you install — no vendored drivers. See [CONNECTORS.md](CONNECTORS.md).
|
|
159
|
+
- Results render with the **Table / Bar / Line** switcher, and **Insert into notebook**
|
|
160
|
+
drops a reproducible `df = …` cell.
|
|
144
161
|
|
|
145
162
|
### AI assistance
|
|
146
163
|
Local models via **Ollama**, or **Claude / OpenAI**.
|
|
@@ -161,12 +178,21 @@ Local models via **Ollama**, or **Claude / OpenAI**.
|
|
|
161
178
|
- **Cloud deploy** — generates `Dockerfile`, `docker-compose.yml`, `k8s.yaml`, and
|
|
162
179
|
`fly.toml` (review before deploying).
|
|
163
180
|
|
|
181
|
+
### Editing & menus
|
|
182
|
+
- Cell ops: **cut / copy / paste / delete / move up·down**, add code/markdown.
|
|
183
|
+
- **Find & Replace** across the notebook (per-cell find via Monaco `⌘F`).
|
|
184
|
+
- Run **all / selected / above / below**, **Restart & Run All**, clear outputs.
|
|
185
|
+
- Dedicated **Kernel** menu (interrupt / restart / restart & clear).
|
|
186
|
+
- Export as **.ipynb** or **.py**; **inline rename** (click the notebook title).
|
|
187
|
+
|
|
164
188
|
### Workspace & UX
|
|
165
189
|
- VS Code-style layout; **all panels collapsible**, each with **independent font +/-**.
|
|
166
190
|
- **Responsive** — side panels auto-collapse on narrow windows.
|
|
167
191
|
- Global **search**, **command palette**, integrated **terminal**, a **Python console**
|
|
168
|
-
(shares the kernel), and a **file
|
|
169
|
-
-
|
|
192
|
+
(shares the kernel), and a **file explorer** (works in any browser) with new/rename/
|
|
193
|
+
delete, **upload**, **drag-and-drop**, multi-select, a filter, hidden-files toggle, and
|
|
194
|
+
**git-status decorations**.
|
|
195
|
+
- **Ocean-blue** dark theme + light theme; `.ipynb` import/export.
|
|
170
196
|
|
|
171
197
|
---
|
|
172
198
|
|
|
@@ -231,7 +257,8 @@ python/ PyPI launcher package (prismnote)
|
|
|
231
257
|
*.md Architecture & comparison docs
|
|
232
258
|
```
|
|
233
259
|
|
|
234
|
-
|
|
260
|
+
Docs: [CONNECTORS.md](CONNECTORS.md) (data connectors & OSS licensing) ·
|
|
261
|
+
[ZEPPELIN_COMPARISON.md](ZEPPELIN_COMPARISON.md) ·
|
|
235
262
|
[DATABRICKS_COMPARISON.md](DATABRICKS_COMPARISON.md) ·
|
|
236
263
|
[NOTEBOOK_COMPARISON_MATRIX.md](NOTEBOOK_COMPARISON_MATRIX.md)
|
|
237
264
|
|
|
@@ -239,11 +266,11 @@ Comparisons: [ZEPPELIN_COMPARISON.md](ZEPPELIN_COMPARISON.md) ·
|
|
|
239
266
|
|
|
240
267
|
## Roadmap
|
|
241
268
|
|
|
242
|
-
- Functional cloud-warehouse query execution (currently scaffolded/stubbed).
|
|
243
269
|
- Prebuilt release binaries for all platforms (so `pip install` runs out of the box).
|
|
244
270
|
- Distributed compute (Spark) and a catalog/data browser.
|
|
245
271
|
- Real-time collaboration (live cursors / co-editing).
|
|
246
272
|
- Notebook parameters and multi-notebook job composition.
|
|
273
|
+
- Reactive (dependency-aware) cell execution.
|
|
247
274
|
|
|
248
275
|
---
|
|
249
276
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
**A fast, modern, open-source data-science notebook.**
|
|
6
6
|
Rust engine · React UI · local-first · AI-native.
|
|
7
7
|
|
|
8
|
-
**License:** MIT · **Status:** Beta (v0.4) · **PyPI:** [`prismnote`](https://pypi.org/project/prismnote/)
|
|
8
|
+
**License:** MIT · **Status:** Beta (v0.4.3) · **PyPI:** [`prismnote`](https://pypi.org/project/prismnote/)
|
|
9
9
|
|
|
10
10
|
</div>
|
|
11
11
|
|
|
@@ -22,10 +22,11 @@ AI assistance, scheduled jobs, git, and generated cloud-deploy files — all on
|
|
|
22
22
|
- **Jupyter-compatible** — native `.ipynb` import/export.
|
|
23
23
|
- **Batteries included** — kernel, SQL, charts, AI, jobs, git, deploy, search, terminal.
|
|
24
24
|
|
|
25
|
-
> **Status note:** PrismNote is **beta**. The notebook, kernel, AI, jobs, git,
|
|
26
|
-
> charts
|
|
27
|
-
>
|
|
28
|
-
> before shipping. See the
|
|
25
|
+
> **Status note:** PrismNote is **beta**. The notebook, kernel, AI, jobs, git,
|
|
26
|
+
> charts, variable explorer, and SQL (databases + warehouses) are functional. SQL runs
|
|
27
|
+
> through the kernel using the OSS driver you install (see [CONNECTORS.md](CONNECTORS.md));
|
|
28
|
+
> deployment files are **generated templates** you review before shipping. See the
|
|
29
|
+
> [roadmap](#roadmap).
|
|
29
30
|
|
|
30
31
|
---
|
|
31
32
|
|
|
@@ -87,6 +88,16 @@ binary isn't published for your platform/version yet, use the from-source steps
|
|
|
87
88
|
- **Interrupt** a running cell and **restart** the kernel.
|
|
88
89
|
- **Dynamic input widgets** — `prism.input / slider / select / checkbox` re-run the
|
|
89
90
|
cell when changed.
|
|
91
|
+
- **Variable explorer** — a Variables tab listing the kernel's variables (name, type,
|
|
92
|
+
shape, preview).
|
|
93
|
+
|
|
94
|
+
### Data & SQL
|
|
95
|
+
- **Connections** for SQLite, DuckDB, PostgreSQL, MySQL, and 8 cloud warehouses
|
|
96
|
+
(Snowflake, BigQuery, Redshift, Databricks, Athena, Trino, Presto, Synapse).
|
|
97
|
+
- **Real query execution** through the kernel using permissively-licensed (OSS)
|
|
98
|
+
drivers you install — no vendored drivers. See [CONNECTORS.md](CONNECTORS.md).
|
|
99
|
+
- Results render with the **Table / Bar / Line** switcher, and **Insert into notebook**
|
|
100
|
+
drops a reproducible `df = …` cell.
|
|
90
101
|
|
|
91
102
|
### AI assistance
|
|
92
103
|
Local models via **Ollama**, or **Claude / OpenAI**.
|
|
@@ -107,12 +118,21 @@ Local models via **Ollama**, or **Claude / OpenAI**.
|
|
|
107
118
|
- **Cloud deploy** — generates `Dockerfile`, `docker-compose.yml`, `k8s.yaml`, and
|
|
108
119
|
`fly.toml` (review before deploying).
|
|
109
120
|
|
|
121
|
+
### Editing & menus
|
|
122
|
+
- Cell ops: **cut / copy / paste / delete / move up·down**, add code/markdown.
|
|
123
|
+
- **Find & Replace** across the notebook (per-cell find via Monaco `⌘F`).
|
|
124
|
+
- Run **all / selected / above / below**, **Restart & Run All**, clear outputs.
|
|
125
|
+
- Dedicated **Kernel** menu (interrupt / restart / restart & clear).
|
|
126
|
+
- Export as **.ipynb** or **.py**; **inline rename** (click the notebook title).
|
|
127
|
+
|
|
110
128
|
### Workspace & UX
|
|
111
129
|
- VS Code-style layout; **all panels collapsible**, each with **independent font +/-**.
|
|
112
130
|
- **Responsive** — side panels auto-collapse on narrow windows.
|
|
113
131
|
- Global **search**, **command palette**, integrated **terminal**, a **Python console**
|
|
114
|
-
(shares the kernel), and a **file
|
|
115
|
-
-
|
|
132
|
+
(shares the kernel), and a **file explorer** (works in any browser) with new/rename/
|
|
133
|
+
delete, **upload**, **drag-and-drop**, multi-select, a filter, hidden-files toggle, and
|
|
134
|
+
**git-status decorations**.
|
|
135
|
+
- **Ocean-blue** dark theme + light theme; `.ipynb` import/export.
|
|
116
136
|
|
|
117
137
|
---
|
|
118
138
|
|
|
@@ -177,7 +197,8 @@ python/ PyPI launcher package (prismnote)
|
|
|
177
197
|
*.md Architecture & comparison docs
|
|
178
198
|
```
|
|
179
199
|
|
|
180
|
-
|
|
200
|
+
Docs: [CONNECTORS.md](CONNECTORS.md) (data connectors & OSS licensing) ·
|
|
201
|
+
[ZEPPELIN_COMPARISON.md](ZEPPELIN_COMPARISON.md) ·
|
|
181
202
|
[DATABRICKS_COMPARISON.md](DATABRICKS_COMPARISON.md) ·
|
|
182
203
|
[NOTEBOOK_COMPARISON_MATRIX.md](NOTEBOOK_COMPARISON_MATRIX.md)
|
|
183
204
|
|
|
@@ -185,11 +206,11 @@ Comparisons: [ZEPPELIN_COMPARISON.md](ZEPPELIN_COMPARISON.md) ·
|
|
|
185
206
|
|
|
186
207
|
## Roadmap
|
|
187
208
|
|
|
188
|
-
- Functional cloud-warehouse query execution (currently scaffolded/stubbed).
|
|
189
209
|
- Prebuilt release binaries for all platforms (so `pip install` runs out of the box).
|
|
190
210
|
- Distributed compute (Spark) and a catalog/data browser.
|
|
191
211
|
- Real-time collaboration (live cursors / co-editing).
|
|
192
212
|
- Notebook parameters and multi-notebook job composition.
|
|
213
|
+
- Reactive (dependency-aware) cell execution.
|
|
193
214
|
|
|
194
215
|
---
|
|
195
216
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "prismnote"
|
|
7
|
-
version = "0.4.
|
|
7
|
+
version = "0.4.3"
|
|
8
8
|
description = "Modern, open-source Jupyter-compatible data science notebook with Rust performance"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { text = "MIT" }
|
|
@@ -32,17 +32,21 @@ dependencies = [
|
|
|
32
32
|
]
|
|
33
33
|
|
|
34
34
|
[project.optional-dependencies]
|
|
35
|
-
# Database support
|
|
36
|
-
sql = ["
|
|
37
|
-
postgres = ["
|
|
38
|
-
mysql = ["pymysql>=1.0"]
|
|
35
|
+
# Database support — permissively-licensed (OSS) drivers only. See CONNECTORS.md.
|
|
36
|
+
sql = ["duckdb>=0.9", "pg8000>=1.30", "pymysql>=1.0"] # MIT / BSD / MIT
|
|
37
|
+
postgres = ["pg8000>=1.30"] # BSD (pure-Python)
|
|
38
|
+
mysql = ["pymysql>=1.0"] # MIT
|
|
39
|
+
duckdb = ["duckdb>=0.9"] # MIT
|
|
39
40
|
|
|
40
|
-
# Cloud warehouses
|
|
41
|
+
# Cloud warehouses — official open-source clients (Apache-2.0 / MIT)
|
|
41
42
|
cloud = [
|
|
42
|
-
"snowflake-connector-python>=3.0",
|
|
43
|
-
"google-cloud-bigquery>=3.0",
|
|
44
|
-
"
|
|
45
|
-
"
|
|
43
|
+
"snowflake-connector-python[pandas]>=3.0", # Apache-2.0
|
|
44
|
+
"google-cloud-bigquery>=3.0", # Apache-2.0
|
|
45
|
+
"db-dtypes>=1.0", # Apache-2.0 (BigQuery -> pandas)
|
|
46
|
+
"redshift_connector>=2.0", # Apache-2.0
|
|
47
|
+
"databricks-sql-connector>=2.0", # Apache-2.0
|
|
48
|
+
"pyathena>=3.0", # MIT
|
|
49
|
+
"trino>=0.328", # Apache-2.0
|
|
46
50
|
]
|
|
47
51
|
|
|
48
52
|
# AI features
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: prismnote
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.3
|
|
4
4
|
Summary: Modern, open-source Jupyter-compatible data science notebook with Rust performance
|
|
5
5
|
Author-email: Georgi Mammen Mullassery <mullassery@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -28,17 +28,23 @@ License-File: LICENSE
|
|
|
28
28
|
Requires-Dist: ipykernel>=6.0
|
|
29
29
|
Requires-Dist: jupyter>=1.0
|
|
30
30
|
Provides-Extra: sql
|
|
31
|
-
Requires-Dist:
|
|
31
|
+
Requires-Dist: duckdb>=0.9; extra == "sql"
|
|
32
|
+
Requires-Dist: pg8000>=1.30; extra == "sql"
|
|
32
33
|
Requires-Dist: pymysql>=1.0; extra == "sql"
|
|
33
34
|
Provides-Extra: postgres
|
|
34
|
-
Requires-Dist:
|
|
35
|
+
Requires-Dist: pg8000>=1.30; extra == "postgres"
|
|
35
36
|
Provides-Extra: mysql
|
|
36
37
|
Requires-Dist: pymysql>=1.0; extra == "mysql"
|
|
38
|
+
Provides-Extra: duckdb
|
|
39
|
+
Requires-Dist: duckdb>=0.9; extra == "duckdb"
|
|
37
40
|
Provides-Extra: cloud
|
|
38
|
-
Requires-Dist: snowflake-connector-python>=3.0; extra == "cloud"
|
|
41
|
+
Requires-Dist: snowflake-connector-python[pandas]>=3.0; extra == "cloud"
|
|
39
42
|
Requires-Dist: google-cloud-bigquery>=3.0; extra == "cloud"
|
|
40
|
-
Requires-Dist:
|
|
41
|
-
Requires-Dist:
|
|
43
|
+
Requires-Dist: db-dtypes>=1.0; extra == "cloud"
|
|
44
|
+
Requires-Dist: redshift_connector>=2.0; extra == "cloud"
|
|
45
|
+
Requires-Dist: databricks-sql-connector>=2.0; extra == "cloud"
|
|
46
|
+
Requires-Dist: pyathena>=3.0; extra == "cloud"
|
|
47
|
+
Requires-Dist: trino>=0.328; extra == "cloud"
|
|
42
48
|
Provides-Extra: ai
|
|
43
49
|
Requires-Dist: anthropic>=0.7; extra == "ai"
|
|
44
50
|
Provides-Extra: openai
|
|
@@ -59,7 +65,7 @@ Dynamic: license-file
|
|
|
59
65
|
**A fast, modern, open-source data-science notebook.**
|
|
60
66
|
Rust engine · React UI · local-first · AI-native.
|
|
61
67
|
|
|
62
|
-
**License:** MIT · **Status:** Beta (v0.4) · **PyPI:** [`prismnote`](https://pypi.org/project/prismnote/)
|
|
68
|
+
**License:** MIT · **Status:** Beta (v0.4.3) · **PyPI:** [`prismnote`](https://pypi.org/project/prismnote/)
|
|
63
69
|
|
|
64
70
|
</div>
|
|
65
71
|
|
|
@@ -76,10 +82,11 @@ AI assistance, scheduled jobs, git, and generated cloud-deploy files — all on
|
|
|
76
82
|
- **Jupyter-compatible** — native `.ipynb` import/export.
|
|
77
83
|
- **Batteries included** — kernel, SQL, charts, AI, jobs, git, deploy, search, terminal.
|
|
78
84
|
|
|
79
|
-
> **Status note:** PrismNote is **beta**. The notebook, kernel, AI, jobs, git,
|
|
80
|
-
> charts
|
|
81
|
-
>
|
|
82
|
-
> before shipping. See the
|
|
85
|
+
> **Status note:** PrismNote is **beta**. The notebook, kernel, AI, jobs, git,
|
|
86
|
+
> charts, variable explorer, and SQL (databases + warehouses) are functional. SQL runs
|
|
87
|
+
> through the kernel using the OSS driver you install (see [CONNECTORS.md](CONNECTORS.md));
|
|
88
|
+
> deployment files are **generated templates** you review before shipping. See the
|
|
89
|
+
> [roadmap](#roadmap).
|
|
83
90
|
|
|
84
91
|
---
|
|
85
92
|
|
|
@@ -141,6 +148,16 @@ binary isn't published for your platform/version yet, use the from-source steps
|
|
|
141
148
|
- **Interrupt** a running cell and **restart** the kernel.
|
|
142
149
|
- **Dynamic input widgets** — `prism.input / slider / select / checkbox` re-run the
|
|
143
150
|
cell when changed.
|
|
151
|
+
- **Variable explorer** — a Variables tab listing the kernel's variables (name, type,
|
|
152
|
+
shape, preview).
|
|
153
|
+
|
|
154
|
+
### Data & SQL
|
|
155
|
+
- **Connections** for SQLite, DuckDB, PostgreSQL, MySQL, and 8 cloud warehouses
|
|
156
|
+
(Snowflake, BigQuery, Redshift, Databricks, Athena, Trino, Presto, Synapse).
|
|
157
|
+
- **Real query execution** through the kernel using permissively-licensed (OSS)
|
|
158
|
+
drivers you install — no vendored drivers. See [CONNECTORS.md](CONNECTORS.md).
|
|
159
|
+
- Results render with the **Table / Bar / Line** switcher, and **Insert into notebook**
|
|
160
|
+
drops a reproducible `df = …` cell.
|
|
144
161
|
|
|
145
162
|
### AI assistance
|
|
146
163
|
Local models via **Ollama**, or **Claude / OpenAI**.
|
|
@@ -161,12 +178,21 @@ Local models via **Ollama**, or **Claude / OpenAI**.
|
|
|
161
178
|
- **Cloud deploy** — generates `Dockerfile`, `docker-compose.yml`, `k8s.yaml`, and
|
|
162
179
|
`fly.toml` (review before deploying).
|
|
163
180
|
|
|
181
|
+
### Editing & menus
|
|
182
|
+
- Cell ops: **cut / copy / paste / delete / move up·down**, add code/markdown.
|
|
183
|
+
- **Find & Replace** across the notebook (per-cell find via Monaco `⌘F`).
|
|
184
|
+
- Run **all / selected / above / below**, **Restart & Run All**, clear outputs.
|
|
185
|
+
- Dedicated **Kernel** menu (interrupt / restart / restart & clear).
|
|
186
|
+
- Export as **.ipynb** or **.py**; **inline rename** (click the notebook title).
|
|
187
|
+
|
|
164
188
|
### Workspace & UX
|
|
165
189
|
- VS Code-style layout; **all panels collapsible**, each with **independent font +/-**.
|
|
166
190
|
- **Responsive** — side panels auto-collapse on narrow windows.
|
|
167
191
|
- Global **search**, **command palette**, integrated **terminal**, a **Python console**
|
|
168
|
-
(shares the kernel), and a **file
|
|
169
|
-
-
|
|
192
|
+
(shares the kernel), and a **file explorer** (works in any browser) with new/rename/
|
|
193
|
+
delete, **upload**, **drag-and-drop**, multi-select, a filter, hidden-files toggle, and
|
|
194
|
+
**git-status decorations**.
|
|
195
|
+
- **Ocean-blue** dark theme + light theme; `.ipynb` import/export.
|
|
170
196
|
|
|
171
197
|
---
|
|
172
198
|
|
|
@@ -231,7 +257,8 @@ python/ PyPI launcher package (prismnote)
|
|
|
231
257
|
*.md Architecture & comparison docs
|
|
232
258
|
```
|
|
233
259
|
|
|
234
|
-
|
|
260
|
+
Docs: [CONNECTORS.md](CONNECTORS.md) (data connectors & OSS licensing) ·
|
|
261
|
+
[ZEPPELIN_COMPARISON.md](ZEPPELIN_COMPARISON.md) ·
|
|
235
262
|
[DATABRICKS_COMPARISON.md](DATABRICKS_COMPARISON.md) ·
|
|
236
263
|
[NOTEBOOK_COMPARISON_MATRIX.md](NOTEBOOK_COMPARISON_MATRIX.md)
|
|
237
264
|
|
|
@@ -239,11 +266,11 @@ Comparisons: [ZEPPELIN_COMPARISON.md](ZEPPELIN_COMPARISON.md) ·
|
|
|
239
266
|
|
|
240
267
|
## Roadmap
|
|
241
268
|
|
|
242
|
-
- Functional cloud-warehouse query execution (currently scaffolded/stubbed).
|
|
243
269
|
- Prebuilt release binaries for all platforms (so `pip install` runs out of the box).
|
|
244
270
|
- Distributed compute (Spark) and a catalog/data browser.
|
|
245
271
|
- Real-time collaboration (live cursors / co-editing).
|
|
246
272
|
- Notebook parameters and multi-notebook job composition.
|
|
273
|
+
- Reactive (dependency-aware) cell execution.
|
|
247
274
|
|
|
248
275
|
---
|
|
249
276
|
|
|
@@ -5,16 +5,22 @@ jupyter>=1.0
|
|
|
5
5
|
anthropic>=0.7
|
|
6
6
|
|
|
7
7
|
[cloud]
|
|
8
|
-
snowflake-connector-python>=3.0
|
|
8
|
+
snowflake-connector-python[pandas]>=3.0
|
|
9
9
|
google-cloud-bigquery>=3.0
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
db-dtypes>=1.0
|
|
11
|
+
redshift_connector>=2.0
|
|
12
|
+
databricks-sql-connector>=2.0
|
|
13
|
+
pyathena>=3.0
|
|
14
|
+
trino>=0.328
|
|
12
15
|
|
|
13
16
|
[dev]
|
|
14
17
|
pytest>=7.0
|
|
15
18
|
black>=22.0
|
|
16
19
|
ruff>=0.1.0
|
|
17
20
|
|
|
21
|
+
[duckdb]
|
|
22
|
+
duckdb>=0.9
|
|
23
|
+
|
|
18
24
|
[mysql]
|
|
19
25
|
pymysql>=1.0
|
|
20
26
|
|
|
@@ -22,12 +28,13 @@ pymysql>=1.0
|
|
|
22
28
|
openai>=1.0
|
|
23
29
|
|
|
24
30
|
[postgres]
|
|
25
|
-
|
|
31
|
+
pg8000>=1.30
|
|
26
32
|
|
|
27
33
|
[spark]
|
|
28
34
|
pyspark>=3.0
|
|
29
35
|
pyarrow>=10
|
|
30
36
|
|
|
31
37
|
[sql]
|
|
32
|
-
|
|
38
|
+
duckdb>=0.9
|
|
39
|
+
pg8000>=1.30
|
|
33
40
|
pymysql>=1.0
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|