Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jupyterlab/jupyterlab-data-explorer
First class datasets in JupyterLab
https://github.com/jupyterlab/jupyterlab-data-explorer
data-registry jupyterlab jupyterlab-extension observable rxjs
Last synced: 5 days ago
JSON representation
First class datasets in JupyterLab
- Host: GitHub
- URL: https://github.com/jupyterlab/jupyterlab-data-explorer
- Owner: jupyterlab
- License: bsd-3-clause
- Archived: true
- Created: 2019-01-03T21:57:42.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-08-08T06:45:57.000Z (over 1 year ago)
- Last Synced: 2024-07-11T23:36:50.901Z (4 months ago)
- Topics: data-registry, jupyterlab, jupyterlab-extension, observable, rxjs
- Language: TypeScript
- Homepage:
- Size: 12.1 MB
- Stars: 178
- Watchers: 27
- Forks: 38
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-jupyter-resources - GitHub - 62% open · ⏱️ 24.05.2020): (JupyterLab扩展)
- best-of-jupyter - GitHub - 38% open · ⏱️ 08.08.2023): (JupyterLab Extensions)
README
**This repository has been archived by lack of maintainers.**
# JupyterLab Data Explorer
![Stability Experimental][badge-stability] [![npm][badge-npm-version-dataregistry-extension]][npm-package-dataregistry-extension] [![npm][badge-npm-version-dataregistry]][npm-package-dataregistry]
To experiment with the extension in a live notebook environment,
- latest release (stable version): [![Binder (stable)][badge-binder]][binder-stable]
- latest master (bleeding edge): [![Binder (latest)][badge-binder]][binder-master]## Overview
- Bring any data type you can imagine! **Extensible** and **type safe** data registry system.
- Register **conversions** between the different data types.
- Data changing on you? Use [`RxJS` **observables**][rxjs] to represent data over time.
- Have a new way to look at your data? Create **React** or **lumino** components to view a certain type.
- Built-in data **explorer UI** to find and use available datasets.
- Dataset in your dataset? Use the **nested** datatype.
- Building another data centric application? Use the [`@jupyterlab/dataregistry`][npm-package-dataregistry] package which can be used independently of [JupyterLab][jupyterlab].
- Check out the project vision in the ["Press Release from the Future"](./press_release.md)!![](https://user-images.githubusercontent.com/1186124/59360085-85becf80-8cfd-11e9-8fc8-98d8a7b83934.png)
## Prerequisites
When used as a [JupyterLab][jupyterlab] extension,
- [JupyterLab][jupyterlab] (version >= 1.0.0)
## Installation
```bash
$ jupyter labextension install @jupyterlab/dataregistry-extension
```## Usage
[Usage docs](./docs/usage.md)
## Contributing
This repository is in active development, and we welcome collaboration. For development guidance, please consult the [development guide](./docs/development.md).
If you have ideas or questions, feel free to open an issue, or, if you feel like getting your hands dirty, feel free to tackle an existing issue by contributing a pull request.
We try to keep the current issues relevant and matched to relevant milestones.
### Third Party Extenson
You can either add support by adding a new converter to this repository or creating a new [JupyterLab][jupyterlab] extension that depends on the `IRegistry` exposed by this extension. You can access a `Registry`, which you can use to add your own converter.
It might also be useful to view the existing data types by looking at the source code in this repository and by using the debugger. You can open this in [JupyterLab][jupyterlab] by looking for the "Data Debugger" command:
![](./docs/img/debugger.png)
[badge-stability]: https://img.shields.io/badge/stability-experimental-red.svg
[badge-binder]: https://mybinder.org/badge_logo.svg
[binder-stable]: https://mybinder.org/v2/gh/jupyterlab/jupyterlab-data-explorer/4a47ff159818159450814b33b0b33f2221c223a5?urlpath=lab%2Ftree%2Fnotebooks%2Fdemo.ipynb
[binder-master]: https://mybinder.org/v2/gh/jupyterlab/jupyterlab-data-explorer/master?urlpath=lab%2Ftree%2Fnotebooks%2Fdemo.ipynb
[badge-npm-version-dataregistry-extension]: https://img.shields.io/npm/v/@jupyterlab/dataregistry-extension?label=%40jupyterlab%2Fdataregistry-extension&style=flat
[npm-package-dataregistry-extension]: https://www.npmjs.com/package/@jupyterlab/dataregistry-extension
[badge-npm-version-dataregistry]: https://img.shields.io/npm/v/@jupyterlab/dataregistry?label=%40jupyterlab%2Fdataregistry&style=flat
[npm-package-dataregistry]: https://www.npmjs.com/package/@jupyterlab/dataregistry
[jupyterlab]: https://github.com/jupyterlab/jupyterlab
[rxjs]: https://rxjs.dev/
[nteract-data-explorer]: https://github.com/nteract/nteract/tree/master/packages/data-explorer