All Projects → jupyterlab-contrib → jupyterlab-spreadsheet-editor

jupyterlab-contrib / jupyterlab-spreadsheet-editor

Licence: BSD-3-Clause License
JupyterLab spreadsheet editor for tabular data (e.g. csv, tsv)

Programming Languages

typescript
32286 projects
python
139335 projects - #7 most used programming language
CSS
56736 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to jupyterlab-spreadsheet-editor

Jupyterlab Spreadsheet
JupyterLab plugin for viewing spreadsheets, such as Excel .xls/.xlsx workbooks and OpenOffice .ods files
Stars: ✭ 95 (+31.94%)
Mutual labels:  excel, spreadsheet, jupyterlab, jupyterlab-extension
React Spreadsheet
Simple, customizable yet performant spreadsheet for React
Stars: ✭ 393 (+445.83%)
Mutual labels:  csv, excel, spreadsheet
J
❌ Multi-format spreadsheet CLI (now merged in http://github.com/sheetjs/js-xlsx )
Stars: ✭ 343 (+376.39%)
Mutual labels:  csv, excel, spreadsheet
Django Rest Pandas
📊📈 Serves up Pandas dataframes via the Django REST Framework for use in client-side (i.e. d3.js) visualizations and offline analysis (e.g. Excel)
Stars: ✭ 1,030 (+1330.56%)
Mutual labels:  csv, excel, spreadsheet
Dataproofer
A proofreader for your data
Stars: ✭ 628 (+772.22%)
Mutual labels:  csv, excel, spreadsheet
Sqlitebiter
A CLI tool to convert CSV / Excel / HTML / JSON / Jupyter Notebook / LDJSON / LTSV / Markdown / SQLite / SSV / TSV / Google-Sheets to a SQLite database file.
Stars: ✭ 601 (+734.72%)
Mutual labels:  tsv, csv, excel
Sheetjs
📗 SheetJS Community Edition -- Spreadsheet Data Toolkit
Stars: ✭ 28,479 (+39454.17%)
Mutual labels:  csv, excel, spreadsheet
Sq
swiss-army knife for data
Stars: ✭ 275 (+281.94%)
Mutual labels:  tsv, csv, excel
Pytablewriter
pytablewriter is a Python library to write a table in various formats: CSV / Elasticsearch / HTML / JavaScript / JSON / LaTeX / LDJSON / LTSV / Markdown / MediaWiki / NumPy / Excel / Pandas / Python / reStructuredText / SQLite / TOML / TSV.
Stars: ✭ 422 (+486.11%)
Mutual labels:  tsv, csv, excel
Visidata
A terminal spreadsheet multitool for discovering and arranging data
Stars: ✭ 4,606 (+6297.22%)
Mutual labels:  tsv, csv, spreadsheet
xltpl
A python module to generate xls/x files from a xls/x template.
Stars: ✭ 46 (-36.11%)
Mutual labels:  excel, spreadsheet, spreadsheet-manipulation
Pyexcel Io
One interface to read and write the data in various excel formats, import the data into and export the data from databases
Stars: ✭ 40 (-44.44%)
Mutual labels:  tsv, csv, excel
sheet2dict
Simple XLSX and CSV to dictionary converter
Stars: ✭ 206 (+186.11%)
Mutual labels:  csv, excel, spreadsheet
jupyterlab-theme-solarized-dark
JupyterLab 2/3 Solarized Dark extension
Stars: ✭ 61 (-15.28%)
Mutual labels:  jupyterlab, jupyterlab-extension
RecordParser
Zero Allocation Writer/Reader Parser for .NET Core
Stars: ✭ 155 (+115.28%)
Mutual labels:  tsv, csv
jupyter-project
Handle project folder, template and file templates in JupyterLab
Stars: ✭ 13 (-81.94%)
Mutual labels:  jupyterlab, jupyterlab-extension
ipylab
Control JupyterLab from Python Notebooks with Jupyter Widgets 🧪 ☢️ 🐍
Stars: ✭ 101 (+40.28%)
Mutual labels:  jupyterlab, jupyterlab-extension
fxl.js
ƛ fxl.js is a data-oriented JavaScript spreadsheet library. It provides a way to build spreadsheets using modular, lego-like blocks.
Stars: ✭ 27 (-62.5%)
Mutual labels:  excel, spreadsheet
exoffice
Library to parse common excel formats (xls, xlsx, csv)
Stars: ✭ 31 (-56.94%)
Mutual labels:  csv, excel
django-excel-response
Django package to easily render Excel spreadsheets
Stars: ✭ 74 (+2.78%)
Mutual labels:  csv, excel

JupyterLab Spreadsheet Editor

Extension status GitHub Action Status Binder pypi-version

JupyterLab spreadsheet editor enables interactive editing of comma/tab separated value spreadsheets. It support formulas, sorting, column/row rearrangements and more!

Note: you might be interested to checkout tabular-data-editor as well

Showcase

Fully featured integration

  • row/column operations, column width adjustment
  • search and replace

Formula support basic formula calculation (rendering) - as implemented by jExcel.

Column freezing for exploration of wide datasets with many covariates

Launcher items: create CSV/TSV files easily from the launcher or the palette.

Lightweight and reliable dependencies: the spreadsheet interface is built with the jexcel, while Papa Parse provides very fast, RFC 4180 compatible CSV parsing (both have no third-party dependencies).

Requirements

  • JupyterLab >= 3.0

Install

pip install jupyterlab-spreadsheet-editor

Contributing

Development install

Note: You will need NodeJS to build the extension package.

The jlpm command is JupyterLab's pinned version of yarn that is installed with JupyterLab. You may use yarn or npm in lieu of jlpm below.

# Clone the repo to your local environment
# Change directory to the jupyterlab-spreadsheet-editor directory
# Install package in development mode
pip install -e .
# Link your development version of the extension with JupyterLab
jupyter labextension develop . --overwrite
# Rebuild extension Typescript source after making changes
jlpm run build

You can watch the source directory and run JupyterLab at the same time in different terminals to watch for changes in the extension's source and automatically rebuild the extension.

# Watch the source directory in one terminal, automatically rebuilding when needed
jlpm run watch
# Run JupyterLab in another terminal
jupyter lab

With the watch command running, every saved change will immediately be built locally and available in your running JupyterLab. Refresh JupyterLab to load the change in your browser (you may need to wait several seconds for the extension to be rebuilt).

By default, the jlpm run build command generates the source maps for this extension to make it easier to debug using the browser dev tools. To also generate source maps for the JupyterLab core extensions, you can run the following command:

jupyter lab build --minimize=False

Uninstall

pip uninstall jupyterlab-spreadsheet-editor

Related extensions

Spreadsheet editors:

Spreadsheet viewers:

In-notebook spreadsheet widgets:

  • ipysheet - programmable sheet creation, exploration and modification
  • qgrid - interactive DataFrame exploration and modification
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].