rdoume / py_to_nb

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Installation

Using pip

Installation using pip

pip install https://github.com/chicham/py2nb.git

Usage

Default

Once installed a script name py2nb.py is added to your PATH. Just type

py2nb.py myscript.py

To generate a myscript.ipynb readable by jupyter.

With output name

py2nb.py myscript.py -o name.ipynb

With ipython/jupyter version specification

py2nb.py myscript.py -v 3

To generate a notebook compatible with the version 3 of the ipython API. By default the version 4 is used.

Python file

In order to be converted the python source file some comments must be add to the source file.

Markdown block

# <markdowncell>
# My text in
# the markdowncell

Raw block

# <rawcell>
# A raw cell

Code block

# <codecell>

from numpy.random import randint

randint(0, 5, (3, 5))

About

License:MIT License


Languages

Language:Python 100.0%