maap-jupyter-server-extension


Namemaap-jupyter-server-extension JSON
Version 1.3.0 PyPI version JSON
download
home_pagehttps://github.com/MAAP-Project/jupyter-server-extension
SummaryA JupyterLab extension.
upload_time2024-03-18 18:11:11
maintainer
docs_urlNone
authorMarjorie Lucas
requires_python>=3.7
licenseApache 2.0
keywords jupyter jupyterlab jupyterlab3
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Jupyter Server Extension

This is the JupyterLab server-side extension for the custom MAAP JupyterLab frontend extensions. It provides RESTful endpoints to the MAAP API and other services.

This extension is composed of a Python package named `jupyter_server_extension`
for the server extension and a NPM package named `jupyter-server-extension`
for the frontend extension.  
 
## Requirements

- JupyterLab >= 3.4  
 
## Install

To install the extension, execute:

```bash
pip install -i https://test.pypi.org/simple/ jupyter-server-extension

jupyter server extension enable jupyter_server_extension
```


 
## Uninstall

To remove the extension, execute:

```bash
pip uninstall -i https://test.pypi.org/simple/ jupyter-server-extension
```  
 
## Usage
RESTful endpoints are made available to the JupyterLab frontend. In the frontend extension code, users may build the request URL like so:
```bash
var requestUrl = new URL(HOST_NAME + 'jupyter-server-extension/listAlgorithms');
```

i.e. using localhost as an example: 
```bash
http://localhost:8888/jupyter-server-extension/listAlgorithms
```
  
 
## 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
```  
 
## 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 jupyter_server_extension 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 jupyter_server_extension
# 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 jupyter_server_extension
pip uninstall jupyter_server_extension
```

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 `jupyter-server-extension` within that folder.  
 
## Questions?
Refer to the [Q&A discussion board](https://github.com/MAAP-Project/jupyter-server-extension/discussions/categories/q-a).

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/MAAP-Project/jupyter-server-extension",
    "name": "maap-jupyter-server-extension",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "Jupyter,JupyterLab,JupyterLab3",
    "author": "Marjorie Lucas",
    "author_email": "marjorie.j.lucas@jpl.nasa.gov",
    "download_url": "https://files.pythonhosted.org/packages/77/03/3be67fd0d61fca4e832f19d0eb32e290bc8493c92a40d477a3515cd078c3/maap_jupyter_server_extension-1.3.0.tar.gz",
    "platform": "Linux",
    "description": "# Jupyter Server Extension\n\nThis is the JupyterLab server-side extension for the custom MAAP JupyterLab frontend extensions. It provides RESTful endpoints to the MAAP API and other services.\n\nThis extension is composed of a Python package named `jupyter_server_extension`\nfor the server extension and a NPM package named `jupyter-server-extension`\nfor the frontend extension.  \n \n## Requirements\n\n- JupyterLab >= 3.4  \n \n## Install\n\nTo install the extension, execute:\n\n```bash\npip install -i https://test.pypi.org/simple/ jupyter-server-extension\n\njupyter server extension enable jupyter_server_extension\n```\n\n\n \n## Uninstall\n\nTo remove the extension, execute:\n\n```bash\npip uninstall -i https://test.pypi.org/simple/ jupyter-server-extension\n```  \n \n## Usage\nRESTful endpoints are made available to the JupyterLab frontend. In the frontend extension code, users may build the request URL like so:\n```bash\nvar requestUrl = new URL(HOST_NAME + 'jupyter-server-extension/listAlgorithms');\n```\n\ni.e. using localhost as an example: \n```bash\nhttp://localhost:8888/jupyter-server-extension/listAlgorithms\n```\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## 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 jupyter_server_extension 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 jupyter_server_extension\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 jupyter_server_extension\npip uninstall jupyter_server_extension\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 `jupyter-server-extension` within that folder.  \n \n## Questions?\nRefer to the [Q&A discussion board](https://github.com/MAAP-Project/jupyter-server-extension/discussions/categories/q-a).\n",
    "bugtrack_url": null,
    "license": "Apache 2.0",
    "summary": "A JupyterLab extension.",
    "version": "1.3.0",
    "project_urls": {
        "Homepage": "https://github.com/MAAP-Project/jupyter-server-extension"
    },
    "split_keywords": [
        "jupyter",
        "jupyterlab",
        "jupyterlab3"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "084fe7dbb85ae9ef6a8f0791976eaf0c6932f00c34f8855bf77d623e548b16dc",
                "md5": "65e0ac27d80eba33f6c4d1aeb07789f0",
                "sha256": "2874af338ecea564b7d78448b2a3a8b94615ac14da626c44fa69a9f4eb895a23"
            },
            "downloads": -1,
            "filename": "maap_jupyter_server_extension-1.3.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "65e0ac27d80eba33f6c4d1aeb07789f0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 78593,
            "upload_time": "2024-03-18T18:11:10",
            "upload_time_iso_8601": "2024-03-18T18:11:10.201572Z",
            "url": "https://files.pythonhosted.org/packages/08/4f/e7dbb85ae9ef6a8f0791976eaf0c6932f00c34f8855bf77d623e548b16dc/maap_jupyter_server_extension-1.3.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77033be67fd0d61fca4e832f19d0eb32e290bc8493c92a40d477a3515cd078c3",
                "md5": "58fe56f351f853b4b3e8cdba230c92e1",
                "sha256": "f9a74237849d1d1a717a458a47a4aaa48ff816540842abb9a6d01455e8911d13"
            },
            "downloads": -1,
            "filename": "maap_jupyter_server_extension-1.3.0.tar.gz",
            "has_sig": false,
            "md5_digest": "58fe56f351f853b4b3e8cdba230c92e1",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 41124,
            "upload_time": "2024-03-18T18:11:11",
            "upload_time_iso_8601": "2024-03-18T18:11:11.755390Z",
            "url": "https://files.pythonhosted.org/packages/77/03/3be67fd0d61fca4e832f19d0eb32e290bc8493c92a40d477a3515cd078c3/maap_jupyter_server_extension-1.3.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-18 18:11:11",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "MAAP-Project",
    "github_project": "jupyter-server-extension",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "maap-jupyter-server-extension"
}
        
Elapsed time: 0.22357s