2

i am trying to combine multiple jupyter notebooks into one. for instance, copy the content of nb1.ipynb and nb2.ipynb to nb_all.ipynb.

I've searched jupyter doc.

there seems to be not an existing api to do this.

any clues?

1 Answers1

3

nbmerge allows you to do that (install via pip)

nbmerge nb1.ipynb nb2.ipynb > nb_all.ipynb
asimo
  • 2,340
  • 11
  • 29