Jupyter bundler extension to export notebook as a docx file
Project description
Jupyter docx bundler extension
Jupyter bundler extension to export notebook as a docx file
Installation
Using conda
conda install -c conda-forge jupyter-docx-bundler
Using pip
Make sure you have Pandoc installed, see installing-pandoc for instructions.
pip install jupyter-docx-bundler
Usage
Adding Metadata
The bundle extension uses metadata of the notebook, if you you provide it.
"title": "Notebook title"
"authors": [{"name": "author1"}, {"name": "author2"}]
"subtitle": "Notebook subtitle"
"date": "Notebook date"
The notebook metadata can be edited under Edit -> Edit Notebook Metadata.
Hiding inputs or complete code cells
You can hide individual code cells or just their inputs by defining cell tags:
nbconvert-remove-cell
: Remove the entire cellnbconvert-remove-input
: Remove the input code of the cell
(Currently there are no default values configured for these tags, the ones listed above are defined in my code and not in nbconvert. This may will change in the future.)
Cell tags can be shown by activating the cell toolbar under View -> Cell Toolbar -> Tags.
Hiding all inputs
It is also possible to hide all inputs. To achive this you need to add the following lines to your notebook metadata:
{
"jupyter-docx-bundler": {
"exclude_input": "True"
}
}
The notebook metadata can be edited under Edit -> Edit Notebook Metadata.
Direct call from console (nbconvert)
To use the bundler direct from console the nbconvert utility can be used with target format docx:
jupyter nbconvert --execute --to=docx <source notebook>.ipynb --output <target document>.docx
The --execute
option should be used to ensure that the notebook is run before generation.
Development
See CONTRIBUTING
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file jupyter-docx-bundler-0.4.0.tar.gz
.
File metadata
- Download URL: jupyter-docx-bundler-0.4.0.tar.gz
- Upload date:
- Size: 21.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 82e15319bcac37ab72e981f410d7ff52cfba9d52df7aa54da747e39a53e0cd3c |
|
MD5 | 676043c7caa7fa4473d9b505d91ebea8 |
|
BLAKE2b-256 | 47bf29cf4c935235cac96fec77bc232f2df69383f73cf66fd6d374d280731995 |
File details
Details for the file jupyter_docx_bundler-0.4.0-py3-none-any.whl
.
File metadata
- Download URL: jupyter_docx_bundler-0.4.0-py3-none-any.whl
- Upload date:
- Size: 13.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cd7e61c09f2c401d237da34ff017b1c4c8b7831767e8307f94ee7b7724ad70e1 |
|
MD5 | f234d44ecf86d079230467e8fe3484c8 |
|
BLAKE2b-256 | e9cf7007d2571a59cc96d8c457c41e713360eb937ec105f83ce6f9addfa15f99 |