Metadata-Version: 2.1
Name: offlineslides
Version: 0.2.0
Summary: Program to make a jupyter notebook into offline reveal.js slideshow
Home-page: https://github.com/alexisfcote/offline_slides
Author: Alexis Fortin-Côté
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Environment :: Console
Description-Content-Type: text/markdown
Requires-Dist: nbconvert
Requires-Dist: requests
Requires-Dist: nbformat

[![Latest PyPI version](https://img.shields.io/pypi/v/offlineslides.svg?style=flat)](https://pypi.python.org/pypi/offline_slides)
[![Build Status](https://travis-ci.com/alexisfcote/offline_slides.svg?branch=master)](https://travis-ci.com/alexisfcote/offline_slides)

# Offline Slides
Hacky program to make a jupyter 
notebook into offline reveal.js slideshow. Can also output a html version.
Will create a .slides.offline.html next to 
the notebook as well as a ext/ folder including all of the required files.
You need to copy both of those for the presentation to work.

## Usage
### as command line tool
```
 offlineslides [-h] [--html] [--no-download] [--verbose] notebook_path

positional arguments:
  notebook_path      Path to the .ipynb notebook

optional arguments:
  -h, --help         show this help message and exit
  --html             Export as offline standalone html
  --no-download, -n  Do not download files if ext folder exists
  --verbose, -v      Output more info if true
```
### as library
```python
from offlineslides import export_to_offline
export_to_offline('my_notebook.ipynb')
```


