Skip to main content

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dwcontents-1.0.0b5.tar.gz (12.9 kB view details)

Uploaded Source

Built Distribution

dwcontents-1.0.0b5-py2.py3-none-any.whl (19.0 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file dwcontents-1.0.0b5.tar.gz.

File metadata

File hashes

Hashes for dwcontents-1.0.0b5.tar.gz
Algorithm Hash digest
SHA256 78a79929dbf316eefa7cd36413aa364211ca80199b627e0f89903de24e997f80
MD5 1050f5ac83064e38f445194c57c4abb2
BLAKE2b-256 791b469d8df93d9bba3fdb70f10c7188acfe82b9f4cb824ddadac3ebdd1a4d31

See more details on using hashes here.

File details

Details for the file dwcontents-1.0.0b5-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for dwcontents-1.0.0b5-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 f69b015c986ba30d5d5de3196f8584ea7d131b8ed1bd60eec13c609b5076b78b
MD5 87148a917613c1840b8036f585077cdc
BLAKE2b-256 f9887ee92562b99ce38afb2b56b172ac361c9c0d6e63e828c7b8924aebe45ead

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page