mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
jupytext: add page (#4072)
This commit is contained in:
parent
75b9a1168c
commit
fd7b66cf9d
1 changed files with 28 additions and 0 deletions
28
pages/common/jupytext.md
Normal file
28
pages/common/jupytext.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
# jupytext
|
||||
|
||||
> Tool to convert Jupyter notebooks to plain text documents, and back again.
|
||||
> More information: <https://jupytext.readthedocs.io/en/latest/>.
|
||||
|
||||
- Turn a notebook into a paired `.ipynb`/`.py` notebook:
|
||||
|
||||
`jupytext --set-formats ipynb,py {{notebook.ipynb}}`
|
||||
|
||||
- Convert a notebook to a `.py` file:
|
||||
|
||||
`jupytext --to py {{notebook.ipynb}}`
|
||||
|
||||
- Convert a `.py` file to a notebook with no outputs:
|
||||
|
||||
`jupytext --to notebook {{notebook.py}}`
|
||||
|
||||
- Convert a `.md` file to a notebook and run it:
|
||||
|
||||
`jupytext --to notebook --execute {{notebook.md}}`
|
||||
|
||||
- Update the input cells in a notebook and preserve outputs and metadata:
|
||||
|
||||
`jupytext --update --to notebook {{notebook.py}}`
|
||||
|
||||
- Update all paired representations of a notebook:
|
||||
|
||||
`jupytext --sync {{notebook.ipynb}}`
|
Loading…
Add table
Reference in a new issue