jupyterfair


Namejupyterfair JSON
Version 0.2.0b0 PyPI version JSON
download
home_pagehttps://github.com/ITC-CRIB/JupyterFAIR
Summarya tool for seamless integration of Jupyter-based research environments and research data repositories.
upload_time2023-01-31 12:47:06
maintainer
docs_urlNone
authorJupyterFAIR Team
requires_python>=3.7
licenseMIT
keywords jupyter jupyterlab jupyterlab3
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # jupyterfair

[![Github Actions Status](https://github.com/ITC-CRIB/JupyterFAIR/workflows/Build/badge.svg)](https://github.com/ITC-CRIB/JupyterFAIR/actions/workflows/build.yml)[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/ITC-CRIB/JupyterFAIR/main?urlpath=lab)
a tool for seamless integration of Jupyter-based research environments and research data repositories.

This extension is composed of a Python package named `jupyterfair`
for the server extension and a NPM package named `jupyterfair`
for the frontend extension.

## Requirements

- JupyterLab >= 3.0

## Install

To install the extension, execute:

```bash
pip install jupyterfair
```

## Uninstall

To remove the extension, execute:

```bash
pip uninstall jupyterfair
```

## Troubleshoot

If you are seeing the frontend extension, but it is not working, check
that the server extension is enabled:

```bash
jupyter server extension list
```

If the server extension is installed and enabled, but you are not seeing
the frontend extension, check the frontend extension is installed:

```bash
jupyter labextension list
```

## Contributing

### Development install

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

The `jlpm` command is JupyterLab's pinned version of
[yarn](https://yarnpkg.com/) that is installed with JupyterLab. You may use
`yarn` or `npm` in lieu of `jlpm` below.

```bash
# Clone the repo to your local environment
# Change directory to the jupyterfair directory
# Install package in development mode
pip install -e .
# Link your development version of the extension with JupyterLab
jupyter labextension develop . --overwrite
# Server extension must be manually installed in develop mode
jupyter server extension enable jupyterfair
# Rebuild extension Typescript source after making changes
jlpm 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.

```bash
# Watch the source directory in one terminal, automatically rebuilding when needed
jlpm 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 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:

```bash
jupyter lab build --minimize=False
```

### Development uninstall

```bash
# Server extension must be manually disabled in develop mode
jupyter server extension disable jupyterfair
pip uninstall jupyterfair
```

In development mode, you will also need to remove the symlink created by `jupyter labextension develop`
command. To find its location, you can run `jupyter labextension list` to figure out where the `labextensions`
folder is located. Then you can remove the symlink named `jupyterfair` within that folder.

### Packaging the extension

See [RELEASE](RELEASE.md)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/ITC-CRIB/JupyterFAIR",
    "name": "jupyterfair",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "Jupyter,JupyterLab,JupyterLab3",
    "author": "JupyterFAIR Team",
    "author_email": "m.g.garciaalvarez@tudelft.nl",
    "download_url": "https://files.pythonhosted.org/packages/05/7e/70fe1b978c0313fb030fb8520247d87c59aaae7bfefe279008abbdb08f22/jupyterfair-0.2.0b0.tar.gz",
    "platform": "Linux",
    "description": "# jupyterfair\n\n[![Github Actions Status](https://github.com/ITC-CRIB/JupyterFAIR/workflows/Build/badge.svg)](https://github.com/ITC-CRIB/JupyterFAIR/actions/workflows/build.yml)[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/ITC-CRIB/JupyterFAIR/main?urlpath=lab)\na tool for seamless integration of Jupyter-based research environments and research data repositories.\n\nThis extension is composed of a Python package named `jupyterfair`\nfor the server extension and a NPM package named `jupyterfair`\nfor the frontend extension.\n\n## Requirements\n\n- JupyterLab >= 3.0\n\n## Install\n\nTo install the extension, execute:\n\n```bash\npip install jupyterfair\n```\n\n## Uninstall\n\nTo remove the extension, execute:\n\n```bash\npip uninstall jupyterfair\n```\n\n## Troubleshoot\n\nIf you are seeing the frontend extension, but it is not working, check\nthat the server extension is enabled:\n\n```bash\njupyter server extension list\n```\n\nIf the server extension is installed and enabled, but you are not seeing\nthe frontend extension, check the frontend extension is installed:\n\n```bash\njupyter labextension list\n```\n\n## Contributing\n\n### Development install\n\nNote: You will need NodeJS to build the extension package.\n\nThe `jlpm` command is JupyterLab's pinned version of\n[yarn](https://yarnpkg.com/) that is installed with JupyterLab. You may use\n`yarn` or `npm` in lieu of `jlpm` below.\n\n```bash\n# Clone the repo to your local environment\n# Change directory to the jupyterfair directory\n# Install package in development mode\npip install -e .\n# Link your development version of the extension with JupyterLab\njupyter labextension develop . --overwrite\n# Server extension must be manually installed in develop mode\njupyter server extension enable jupyterfair\n# Rebuild extension Typescript source after making changes\njlpm build\n```\n\nYou 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.\n\n```bash\n# Watch the source directory in one terminal, automatically rebuilding when needed\njlpm watch\n# Run JupyterLab in another terminal\njupyter lab\n```\n\nWith 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).\n\nBy default, the `jlpm 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:\n\n```bash\njupyter lab build --minimize=False\n```\n\n### Development uninstall\n\n```bash\n# Server extension must be manually disabled in develop mode\njupyter server extension disable jupyterfair\npip uninstall jupyterfair\n```\n\nIn development mode, you will also need to remove the symlink created by `jupyter labextension develop`\ncommand. To find its location, you can run `jupyter labextension list` to figure out where the `labextensions`\nfolder is located. Then you can remove the symlink named `jupyterfair` within that folder.\n\n### Packaging the extension\n\nSee [RELEASE](RELEASE.md)\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "a tool for seamless integration of Jupyter-based research environments and research data repositories.",
    "version": "0.2.0b0",
    "split_keywords": [
        "jupyter",
        "jupyterlab",
        "jupyterlab3"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "222246b6ebf416b318a3b976b0347ffc79db41893616b6061e4b9f1675a6539e",
                "md5": "b1ad851435aeb8a0e72bdaf3f4b08dcc",
                "sha256": "ab8383288ff6c80906cde1f3bd1c1381c9d5c055c229bb5295dbecff57eb8bdd"
            },
            "downloads": -1,
            "filename": "jupyterfair-0.2.0b0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b1ad851435aeb8a0e72bdaf3f4b08dcc",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 38468,
            "upload_time": "2023-01-31T12:47:04",
            "upload_time_iso_8601": "2023-01-31T12:47:04.588977Z",
            "url": "https://files.pythonhosted.org/packages/22/22/46b6ebf416b318a3b976b0347ffc79db41893616b6061e4b9f1675a6539e/jupyterfair-0.2.0b0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "057e70fe1b978c0313fb030fb8520247d87c59aaae7bfefe279008abbdb08f22",
                "md5": "b9f80f6c73f4db8ac46a03520bfa3dd8",
                "sha256": "5e5c0bc33205e5b07e794342065afb9b82565afbb283126eb7013b540f19c71f"
            },
            "downloads": -1,
            "filename": "jupyterfair-0.2.0b0.tar.gz",
            "has_sig": false,
            "md5_digest": "b9f80f6c73f4db8ac46a03520bfa3dd8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 137159,
            "upload_time": "2023-01-31T12:47:06",
            "upload_time_iso_8601": "2023-01-31T12:47:06.517261Z",
            "url": "https://files.pythonhosted.org/packages/05/7e/70fe1b978c0313fb030fb8520247d87c59aaae7bfefe279008abbdb08f22/jupyterfair-0.2.0b0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-01-31 12:47:06",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "ITC-CRIB",
    "github_project": "JupyterFAIR",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "jupyterfair"
}
        
Elapsed time: 0.07550s