Skip to content

Commit

Permalink
reinstate readme
Browse files Browse the repository at this point in the history
  • Loading branch information
discdiver committed May 16, 2020
1 parent 47dcf0e commit 2e8b5c0
Showing 1 changed file with 70 additions and 0 deletions.
70 changes: 70 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
=============
NotebookToAll
=============


.. image:: https://img.shields.io/pypi/v/notebooktoall.svg
:target: https://pypi.python.org/pypi/notebooktoall

.. image:: https://img.shields.io/travis/notebooktoall/notebooktoall.svg
:target: https://travis-ci.org/notebooktoall/notebooktoall

.. image:: https://readthedocs.org/projects/notebooktoall/badge/?version=latest
:target: https://notebooktoall.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status

.. image:: https://pyup.io/repos/github/notebooktoall/notebooktoall/shield.svg
:target: https://pyup.io/repos/github/notebooktoall/notebooktoall/
:alt: Updates


The coolest way to turn a Jupyter Notebook into sharable files.

Turn your Jupyter Notebook into a .py executable file and an .html file with a one-line command. You can create both or either file type at the same time! Under the hood, this package uses Jupyter nbconvert.

nbconvert is great for command line transformations, but it takes a bit of work to use in a program. NotebookToAll to the rescue.

Quick Start
-----------

Install
_______

Install from PyPI.

pip install notebooktoall

Use
___

Make sure your notebook doesn't have magic commands in it if you want to create an executable .py script.::


from notebooktoall.transform import transform_notebook

transform_notebook(ipynb_file="my_jupyter_notebook.ipynb", export_list=["html", "py"])



Run your code and your .html and .py files should appear in your current working directory.

You can pass a Jupyter notebook URL to transform_notebook().

License
_______

* Free software: GNU General Public License v3

Docs
____

* Documentation: https://notebooktoall.readthedocs.io.


Credits:
________

The Cookiecutter_ `audreyr/cookiecutter-pypackage`_ project template.

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage

0 comments on commit 2e8b5c0

Please sign in to comment.