Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vericast/nbconflux
nbconflux converts Jupyter Notebooks to Atlassian Confluence pages
https://github.com/vericast/nbconflux
confluence jupyter nbconvert notebook team-platform
Last synced: about 22 hours ago
JSON representation
nbconflux converts Jupyter Notebooks to Atlassian Confluence pages
- Host: GitHub
- URL: https://github.com/vericast/nbconflux
- Owner: vericast
- License: bsd-3-clause
- Created: 2018-02-09T21:16:40.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-06-07T16:59:12.000Z (5 months ago)
- Last Synced: 2024-10-28T06:02:01.586Z (17 days ago)
- Topics: confluence, jupyter, nbconvert, notebook, team-platform
- Language: Jupyter Notebook
- Homepage:
- Size: 540 KB
- Stars: 120
- Watchers: 14
- Forks: 33
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
# nbconflux
nbconflux converts Jupyter Notebooks to [Atlassian Confluence](https://www.atlassian.com/software/confluence)
pages using
[nbconvert](https://github.com/jupyter/nbconvert).![Screenshot of a notebook converted to a Confluence page](etc/screenshot.png)
## Why?
nbconflux is useful when:
* You use Jupyter notebooks to author computational narratives
* Your organization uses Confluence to store institutional knowledge
* You want an easy way to publish your work in that knowledge base## Features
* Converts most cell inputs and outputs to valid [Confluence storage format](https://confluence.atlassian.com/doc/confluence-storage-format-790796544.html)
* Attaches image outputs (e.g., matplotlib PNGs) to a page, shows them inline,
and maintains the page-image association in the version history
* Attaches the source notebook to a page, links to it from the page footer, and
maintains the page-notebook association in the version history
* Supports sweep-select Confluence comments over most input and output content
* Excludes input, output, or entire cells based on notebook cell tags `noinput`,
`nooutput`, or `nocell`
* Labels pages with `nbconflux` to identify content that originated as notebooks
* Inserts a table of contents macro at the top of the page based on notebook
headings
* Applies the NBViewer stylesheet to pages to blend Confluence styling with
Jupyter notebook styling (requires the CSS macro)
* Enables MathJax rendering (requires the [HTML macro](https://confluence.atlassian.com/doc/html-macro-38273085.html))
* Supports raw-cell passthrough of Confluence storage format markup (e.g., to
include Confluence macros)
* Compatible with Confluence Cloud and Confluence Server## Installation
The nbconflux library requires Python 3 to run and `pip` to install.
Once you've satisfied these prerequisites, run:```bash
pip install nbconflux
```(A conda package is coming soon.)
## Usage
1. Create or visit a page on your Confluence site.
2. Copy the URL for the page.
3. Run one of the following:
* In a shell:
```bash
nbconflux /path/to/a.ipynb https://your/page/url
```
* In a Python script, Jupyter Notebook, etc.:
```python
import nbconflux
html, resources = nbconflux.notebook_to_page(nb_path, url)
```
4. Enter your Confluence username and password when prompted.
5. Visit the page to see your updates.If you receive an error, see the project issues for known limitations on what
you can post.Run `nbconflux -h` at the command line for additional options and help.
```
usage: nbconflux [-h] [--exclude-toc] [--exclude-ipynb] [--exclude-style]
[--include-mathjax]
notebook urlConverts Jupyter Notebooks to Atlassian Confluence pages using nbconvert
positional arguments:
notebook Path to local notebook (ipynb)
url URL of Confluence page to updateoptional arguments:
-h, --help show this help message and exit
--exclude-toc Do not generate a table of contents
--exclude-ipynb Do not attach the notebook to the page
--exclude-style Do not include the Jupyter base stylesheet
--include-mathjax Enable MathJax on the page
--extra-labels EXTRA_LABELS [EXTRA_LABELS ...]
Additional labels to add to the pageCollects credentials from the following locations:
1. CONFLUENCE_USERNAME and CONFLUENCE_PASSWORD environment variables
2. ~/.nbconflux file in the format username:password
3. User prompts
```## Contributing
We welcome issues and pull requests that help improve the variety of notebook
content and Confluence installations nbconflux supports, its usability for
humans, and its reusability within other tools.We recommend creating a Python development environment using `conda` or
`virtualenv`, running `make dev-env` to install the runtime and development
requirements, and running `make test` to execute the unit test suite on your
local machine.## FAQ
Q: Why not call it nbconfluence?
A: https://atlassian.com/legal/trademark
Q: Why do I have to create a page on the site first?
A: To avoid introducing the complexity of specifying a space, parent page, and
title into the package.Q: How do I use nbconflux if my organization has enabled two-factor
authentication (2FA) for our Confluence Cloud instance?A: You can login with an Atlassian API Token in place of your password as
described in the [API tokens](https://confluence.atlassian.com/cloud/api-tokens-938839638.html)
documentation.1. Sign into https://id.atlassian.com.
2. Under *Security* go to *API Tokens* then *Create API Token*.
3. Give the token a meaningful label so that access can be revoked later.
4. The token will be copied to the clipboard.
5. Use the token in place of your account password with any of the nbconflux
supported auth methods (e.g., environment variable, password prompt).## License
Copyright (c) 2018 Valassis Digital under the terms of the BSD 3-Clause license
## Development
To run the tests:
```
make dev-env
make test
```## Maintenance
To make a release:
1. Meet all the requirements described in
https://dustingram.com/articles/2018/03/16/markdown-descriptions-on-pypi
to support pushing the Markdown README as the long description on PyPI.
2. `git commit -m 'REL: 0.6.0' --allow-empty`
3. `git tag -a 0.6.0 -m 'REL: 0.6.0'`
4. `git push origin master` and `git push origin master --tags` or use a PR
5. Run `make release`.
6. Enter your PyPI creds when prompted.