All Projects → ideonate → Nb2xls

ideonate / Nb2xls

Licence: mit
Convert Jupyter notebook to Excel spreadsheet

Projects that are alternatives of or similar to Nb2xls

Juniper
🍇 Edit and execute code snippets in the browser using Jupyter kernels
Stars: ✭ 189 (+46.51%)
Mutual labels:  jupyter-notebook, jupyter, binder
Jupyter Server Proxy
Jupyter notebook server extension to proxy web services.
Stars: ✭ 153 (+18.6%)
Mutual labels:  jupyter-notebook, jupyter, binder
California Coronavirus Data
The Los Angeles Times' independent tally of coronavirus cases in California.
Stars: ✭ 188 (+45.74%)
Mutual labels:  jupyter-notebook, jupyter, binder
Ten Rules Jupyter
Ten Simple Rules for Writing and Sharing Computational Analyses in Jupyter Notebooks
Stars: ✭ 204 (+58.14%)
Mutual labels:  jupyter-notebook, jupyter, binder
Helm Chart
A store of Helm chart tarballs for deploying JupyterHub and BinderHub on a Kubernetes cluster
Stars: ✭ 123 (-4.65%)
Mutual labels:  jupyter-notebook, jupyter, binder
Python Training
Python training for business analysts and traders
Stars: ✭ 972 (+653.49%)
Mutual labels:  jupyter-notebook, jupyter, binder
Hands On Nltk Tutorial
The hands-on NLTK tutorial for NLP in Python
Stars: ✭ 419 (+224.81%)
Mutual labels:  jupyter-notebook, jupyter, binder
Repo2docker Action
GitHub Action for repo2docker
Stars: ✭ 88 (-31.78%)
Mutual labels:  jupyter-notebook, jupyter, binder
Ipyexperiments
jupyter/ipython experiment containers for GPU and general RAM re-use
Stars: ✭ 128 (-0.78%)
Mutual labels:  jupyter-notebook, jupyter
Dl Workshop
Master gradient-based machine learning. Also secretly a JAX course in disguise!
Stars: ✭ 103 (-20.16%)
Mutual labels:  jupyter-notebook, binder
Python Workshop
A series of Jupyter Notebooks on exploring Unidata technology with Python. See website for more information.
Stars: ✭ 127 (-1.55%)
Mutual labels:  jupyter-notebook, jupyter
Scipy2017 Jupyter Widgets Tutorial
Notebooks for the SciPy 2017 tutorial "The Jupyter Interactive Widget Ecosystem"
Stars: ✭ 102 (-20.93%)
Mutual labels:  jupyter-notebook, jupyter
Irkernel
R kernel for Jupyter
Stars: ✭ 1,379 (+968.99%)
Mutual labels:  jupyter-notebook, jupyter
Prml
PRML algorithms implemented in Python
Stars: ✭ 10,206 (+7811.63%)
Mutual labels:  jupyter-notebook, jupyter
Almond
A Scala kernel for Jupyter
Stars: ✭ 1,354 (+949.61%)
Mutual labels:  jupyter-notebook, jupyter
Spark R Notebooks
R on Apache Spark (SparkR) tutorials for Big Data analysis and Machine Learning as IPython / Jupyter notebooks
Stars: ✭ 109 (-15.5%)
Mutual labels:  jupyter-notebook, jupyter
Know Your Intent
State of the Art results in Intent Classification using Sematic Hashing for three datasets: AskUbuntu, Chatbot and WebApplication.
Stars: ✭ 116 (-10.08%)
Mutual labels:  jupyter-notebook, jupyter
Nbinclude.jl
import code from IJulia Jupyter notebooks into Julia programs
Stars: ✭ 90 (-30.23%)
Mutual labels:  jupyter-notebook, jupyter
Nb pdf template
A more accurate representation of jupyter notebooks when converting to pdfs.
Stars: ✭ 109 (-15.5%)
Mutual labels:  jupyter-notebook, jupyter
Analyzing neural time series
python implementations of Analyzing Neural Time Series Textbook
Stars: ✭ 117 (-9.3%)
Mutual labels:  jupyter-notebook, jupyter

nb2xls - Jupyter notebooks to Excel Spreadsheets

Convert Jupyter notebooks to Excel Spreadsheets (xlsx), through a new 'Download As' option or via nbconvert on the command line.

Respects tables such as Pandas DataFrames. Also exports image data such as matplotlib output.

Markdown is supported where possible (some elements still need work).

Input (code) cells are not included in the spreadsheet.

This allows you to share your results with non-programmers such that they can still easily play with the data.

Screenshot of Jupyter Notebook exported to Excel spreadsheet

Please note this is an ALPHA version. Some notebook features may be lost. Please send example ipynb files to me along with reports of any problems.

Try it out online through Binder:

Binder

Installation

Install via pip (recommended)

pip install nb2xls

Restart Jupyter to pick up the new 'Excel Spreadsheet (.xlsx)' option under 'Download As' in the File menu.

Usage

In Jupyter Notebook, just select the 'Excel Spreadsheet (.xlsx)' option under 'Download As' in the File menu.

To run from the command line try:

jupyter nbconvert --to xls Examples/ExcelTest.ipynb

or

jupyter nbconvert --to nb2xls.XLSExporter Examples/ExcelTest.ipynb

This should output ExcelTest.xlsx in the same folder as the ipynb file specified.

Development Installation

If you want to contribute or debug:

git clone https://github.com/ideonate/nb2xls
cd nb2xls
pip install -e .

To run tests, you will need to install some extra dependencies. Run:

pip install -e .[test]

Then run:

pytest

Requirements

nb2xls requires Python 3 and is tested against recent versions of jupyter and nbconvert. Please let me know if you find incompatibilities

Contact for Feedback

Please get in touch with any feedback or questions: [email protected]. It is very helpful to send example notebooks, especially if you have bug reports or feature suggestions.

License

This code is released under an MIT license.

Change Log

0.1.6 (5 Aug 2019)

  • Better layout and formatting of Pandas tables

0.1.5 (1 Aug 2019)

  • Displays multiple outputs in display_data and execute_data output types

0.1.4 (26 Jul 2019)

  • Better handling of mimetypes application/json and text/markdown

0.1.3 (24 Jul 2019)

  • Working with Pandas/NumPy NaN values

0.1.2 (11 Jul 2019)

  • Minor changes, mainly to deployment mechanism

0.1.1 (10 Jul 2019)

  • Displays images over multiple rows for better scrolling
  • Better markdown parsing especially for nested lists

0.0.1 (14 Jun 2019)

  • Initial release
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].