-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Jupyter Flowchart Notebook #50
Conversation
…notebook/jupyter-flowchart-notebook.md
Hi @CharlesAverill, thanks for the proposal! I personally like the idea, having played with Scratch with my elementary-school-aged children. |
This pull request has been mentioned on Jupyter Community Forum. There might be relevant details there: https://discourse.jupyter.org/t/flowchart-based-notebook-ui-idea/4541/2 |
It feels to me like this might benefit from some rounds of prototyping etc before making it into a JEP, perhaps with some general discussion in the community forum (linked above, but here again: https://discourse.jupyter.org) Also ping @alexmorley who I believe was interested in this idea as well! |
@choldgraf I definitely agree on prototyping. I'm working on something right now that should be able to eventually lay the groundwork for implementation in Jupyter, but it's still pretty far away from that point. I just wanted to get the word out early to see if I could find any teammates for the project. |
Hey 👋 I can dig out the designs I did for this a while back. I have a post on the forum, the work their didn't really go ahead as planned but would love to revive it. https://discourse.jupyter.org/t/closed-experimental-jupyter-ux-web-development-contract-opportunity/1314 |
@alexmorley That would be great! I looked through your git and it looks like we've got a lot of the same ideas. If you're up to reviving the project then I'm sure we can get a lot done. |
Just linked over from the above (QuantStack/jupyterlab-drawio#61), so I'll toss some thoughts out there. Given the above, I'm biased but: The JupyterLab examples would be fine places to start, but at that point, just having a labextension would be the stronger play. nteract is also a beautiful set of components, but (to my knowledge) has only two paths: a) get into core, or b) build your own thing out of them. Again, biased, but mxgraph/drawio might be a good base layer. Here's their ports example of tying blocks that contain arbitrary HTML
making something work really well with python is good... but making something that worked with every kernel...
Picking a well-characterized formalism, rather than inventing something new (however it's visually encoded) is probably worth considering. These usually have some kind of conformance suite or at least reference implementation that can be used for testing. Some examples might be:
Having written a few wall-chart sized "programs" in SysML constraints (think strongly-typed, visual excel formulae), a few things become extremely important at any scale beyond toy/tutorial:
It's worth pointing out that a number of existing tools already provide visual flows of various sorts that work with various parts of the Jupyter stack, but they usually treat a whole notebook as a node (and are therefore kernel-agnostic), and aren't as concerned with the authoring of the individual code blocks:
Good luck! |
Hi @CharlesAverill 👋—Zach from the @jupyter/software-steering-council here. We're working through old JEPs and closing proposals that are no longer active or may not be relevant anymore. Under Jupyter's new governance model, we have an active Software Steering Council who reviews JEPs weekly. We are catching up on the backlog now. Since there has been no active discussion on this JEP in awhile, I'd propose we close it here (we'll leave it open for two more weeks in case you'd like to revive the conversation). If you would like to re-open the discussion after we close it, you are welcome to do that too. |
Closing as no activity since @Zsailer 's message. |
Hi there,
I'm new to the Jupyter community so I hope I've gone through this submission process properly. I'd like to add a new UI to Jupyter that allows users to format notebooks in a branching flowchart style. I think the addition of a more graphical UI could benefit users that prefer visuals to plain text while learning and creating.
I've received a bit of positive feedback from friends and colleagues who say they would also enjoy a flowchart-based design.
EDIT: I'd also like to mention that I've already started working on this idea, but in a different format. Satyrn performs most of the basic functions that Jupyter notebooks can, but is built for multi-threaded code. It's completely Python-based, but the experience from that project will make it a lot easier to add this functionality to Jupyter.
Thank you!
Charles