Is there any difference between opening a jupytext file vs. paired ipython notebook in jupyter?
See original GitHub issueSorry to pollute your issue tracker (this isn’t a bug, but I can’t find the answer in the documentation). In jupyter, I can open both jupytext python scripts and ipython notebook files as “notebooks”. For example (note the file extensions):

If I open a jupytext .py
script and save it in jupyter, a paired .ipynb
file is created – but the .py
file name still appears at the head of the tab rather than the .ipynb
file.
Is there any functional difference between “opening” the jupytext .py
script vs. the paired .ipynb
notebook file in jupyter?
Would “opening” the actual .ipynb
file result in better performance for any reason?
Issue Analytics
- State:
- Created 3 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Paired notebooks - Jupytext documentation - Read the Docs
When the notebook is refreshed in Jupyter, the input cells are read from the text file, and the output cells from the .ipynb...
Read more >Version Control With Jupyter Notebook | by Shinichi Okada
Jupyter notebook generates files that contain metadata, source code, formatted text, and rich media. Only one word of change results in ...
Read more >Jupyter notebooks as Markdown documents or Python scripts
Jupytext is a Jupyter plugin that allows you to convert Jupyter notebooks to Markdown or Python script files and back again.
Read more >Jupytext: The hack-free way to use Jupyter notebooks with git
As mentioned previously, I'm a big fan of Jupyter Notebook/Lab. ... files instead of just opening them in any text editor the way...
Read more >Using IPython / Jupyter Notebooks Under Version Control
Open the notebook that you want to version control, and pair it to a Markdown file (or a Script) using the Jupytext Menu...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Oh sorry @lukelbd I missed your question. Thanks for the reminder!
I think it is not stored anywhere (other than in the memory of your web browser). I think the outputs are also transmitted back to the server over the network (so you should not expect performance improvements there), but the server ignores them.
In my experience, the cell outputs are lost as soon as you reload the notebook.
Great idea! I’ll do that.