Jupyter contents manager for data.world
Project description
A Jupyter content provider for data.world.
This content provider allows data.world users to store and manage their notebooks and files directly on data.world using Jupyter Notebook or Jupyter Lab.
Once enabled, the content provider will allow you to browse and access your entire data.world library, including datasets and projects that you have created, contribute to or have bookmarked.
Quick start
Install
You can install it using pip directly from PyPI:
pip install dwcontents
Configure
Find or create a file named jupyter_notebook_config.py under your Jupyter folder (~/.jupyter).
Update it to define two configuration parameters: - NotebookApp.contents_manager_class: Must be set to dwcontents.DwContents - DwContents.dw_auth_token: Must be your data.world API token (obtained at https://data.world/settings/advanced)
For example:
import dwcontents
c = get_config()
c.NotebookApp.contents_manager_class = dwcontents.DwContents
c.DwContents.dw_auth_token = 'YOUR TOKEN GOES HERE'
You can also use this to access data.world alongside your local files using dwcontents.HybridContents.
In that case, this is what your jupyter_notebook_config.py might look like:
import dwcontents
from notebook.services.contents.filemanager import FileContentsManager
c = get_config()
c.NotebookApp.contents_manager_class = dwcontents.HybridContents
c.HybridContents.manager_classes = {
# Associate the root directory with data.world
'': dwcontents.DwContents,
# Associate /~local with your working directory, completely disconnected from data.world
'~local': FileContentsManager
}
c.HybridContents.manager_kwargs = {
'': {
'dw_auth_token': 'YOUR TOKEN GOES HERE'
}
}
Run
Once installation and configuration are complete, run Jupyter Notebook or Labs like you normally would.
For example:
jupyter notebook
Known Issues
Jupyter supports a wide variety of file operations, whereas support for directories on data.world is limited. For a better experience, try to keep a flat file structure under your datasets and projects.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file dwcontents-1.0.0b5.tar.gz
.
File metadata
- Download URL: dwcontents-1.0.0b5.tar.gz
- Upload date:
- Size: 12.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 78a79929dbf316eefa7cd36413aa364211ca80199b627e0f89903de24e997f80 |
|
MD5 | 1050f5ac83064e38f445194c57c4abb2 |
|
BLAKE2b-256 | 791b469d8df93d9bba3fdb70f10c7188acfe82b9f4cb824ddadac3ebdd1a4d31 |
File details
Details for the file dwcontents-1.0.0b5-py2.py3-none-any.whl
.
File metadata
- Download URL: dwcontents-1.0.0b5-py2.py3-none-any.whl
- Upload date:
- Size: 19.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f69b015c986ba30d5d5de3196f8584ea7d131b8ed1bd60eec13c609b5076b78b |
|
MD5 | 87148a917613c1840b8036f585077cdc |
|
BLAKE2b-256 | f9887ee92562b99ce38afb2b56b172ac361c9c0d6e63e828c7b8924aebe45ead |