Skip to content

aiodia/junomerger

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Jupyter Notebook Merger

Simple library to merge several jupyter notebook into one.

Requirements

Getting Started

Installing

Can be installed using pip:

pip install git+git://github.com/aiodia/junomerger.git

Usage

  • import library
import junomerger
  • Create several notebook, let say notebook A and B.
  • Give unique keyword to several or all cell :
junomerger.print_hidden_tag('my_unique_keyword')
  • Run notebook A and C, then save.
  • Create notebook C to merge A and B
  • Convert notebook A and B into html
notebook_a = junomerger.convert_ipynb2html('notebook_a.ipynb')
notebook_b = junomerger.convert_ipynb2html('notebook_b.ipynb')
  • show particular output based on unique keyword that has been created
notebook_a.show_jupyter_output(keyword='my_unique_keyword')

see this articles and examples folder for details.

License

This software is licensed with the MIT license. See LICENSE.txt for the full text.

About

Simple library to merge several jupyter notebook into one.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages