# jupyterlab_crosscompute
[![Github Actions Status](https://github.com/crosscompute/jupyterlab-crosscompute/workflows/Build/badge.svg)](https://github.com/crosscompute/jupyterlab-crosscompute/actions/workflows/build.yml)
CrossCompute Extensions for JupyterLab
This extension is composed of a Python package named `jupyterlab_crosscompute`
for the server extension and a NPM package named `jupyterlab-crosscompute`
for the frontend extension.
## Requirements
* JupyterLab >= 3.0
## Install
To install the extension, execute:
```bash
pip install jupyterlab-crosscompute
```
## Uninstall
To remove the extension, execute:
```bash
pip uninstall jupyterlab_crosscompute
```
## 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 jupyterlab_crosscompute 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 jupyterlab_crosscompute
# Rebuild extension Typescript source after making changes
jlpm run 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 run 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 run 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 jupyterlab_crosscompute
pip uninstall jupyterlab_crosscompute
```
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 `jupyterlab-crosscompute` within that folder.
### Packaging the extension
See [RELEASE](RELEASE.md)
## Acknowledgments
Thank you to [Salah Ahmed](https://github.com/salah93) for working on our first Jupyter Notebook extension and integration with the CrossCompute framework and platform.
Thank you to [Rodrigo Guarachi](https://github.com/rmguarachi) for working on our first JupyterLab extension and integration with the CrossCompute framework and platform.
Thank you to [Kashfi Fahim](https://github.com/kashfifahim), [Noé Domínguez Porras](https://github.com/poguez), [Miguel Angel Gordián](https://github.com/zoek1), [Olga Ryabtseva](https://www.linkedin.com/in/olga-creutzburg) for testing our JupyterLab extension in different environments.
Thank you to Mary Rodriguez Gort of the Tampa Bay Innovation Center; Ji Yoon Lee, Tyler Doyle, Alex Hofmann of the American Public Power Association; Shaky Sherpa, Rhonda Jordan-Antoine of the World Bank; Ying Zhou of the Tech Incubator at Queens College for making this work possible.
Raw data
{
"_id": null,
"home_page": "https://github.com/crosscompute/jupyterlab-crosscompute",
"name": "jupyterlab-crosscompute",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": null,
"keywords": "Jupyter, JupyterLab, JupyterLab3",
"author": "CrossCompute Inc.",
"author_email": "support@crosscompute.com",
"download_url": "https://files.pythonhosted.org/packages/cd/8c/69fd39e890dc9ffbcbc824fc0f051fe756f0d6dd856e34c58acf1cb233bb/jupyterlab_crosscompute-0.2.4.1.tar.gz",
"platform": "Linux",
"description": "# jupyterlab_crosscompute\n\n[![Github Actions Status](https://github.com/crosscompute/jupyterlab-crosscompute/workflows/Build/badge.svg)](https://github.com/crosscompute/jupyterlab-crosscompute/actions/workflows/build.yml)\n\nCrossCompute Extensions for JupyterLab\n\n\nThis extension is composed of a Python package named `jupyterlab_crosscompute`\nfor the server extension and a NPM package named `jupyterlab-crosscompute`\nfor the frontend extension.\n\n\n## Requirements\n\n* JupyterLab >= 3.0\n\n## Install\n\nTo install the extension, execute:\n\n```bash\npip install jupyterlab-crosscompute\n```\n\n## Uninstall\n\nTo remove the extension, execute:\n\n```bash\npip uninstall jupyterlab_crosscompute\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\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 jupyterlab_crosscompute 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 jupyterlab_crosscompute\n# Rebuild extension Typescript source after making changes\njlpm run 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 run 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 run 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 jupyterlab_crosscompute\npip uninstall jupyterlab_crosscompute\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 `jupyterlab-crosscompute` within that folder.\n\n### Packaging the extension\n\nSee [RELEASE](RELEASE.md)\n\n## Acknowledgments\n\nThank you to [Salah Ahmed](https://github.com/salah93) for working on our first Jupyter Notebook extension and integration with the CrossCompute framework and platform.\n\nThank you to [Rodrigo Guarachi](https://github.com/rmguarachi) for working on our first JupyterLab extension and integration with the CrossCompute framework and platform.\n\nThank you to [Kashfi Fahim](https://github.com/kashfifahim), [No\u00e9 Dom\u00ednguez Porras](https://github.com/poguez), [Miguel Angel Gordi\u00e1n](https://github.com/zoek1), [Olga Ryabtseva](https://www.linkedin.com/in/olga-creutzburg) for testing our JupyterLab extension in different environments.\n\nThank you to Mary Rodriguez Gort of the Tampa Bay Innovation Center; Ji Yoon Lee, Tyler Doyle, Alex Hofmann of the American Public Power Association; Shaky Sherpa, Rhonda Jordan-Antoine of the World Bank; Ying Zhou of the Tech Incubator at Queens College for making this work possible.\n",
"bugtrack_url": null,
"license": "BSD-3-Clause",
"summary": "CrossCompute Extensions for JupyterLab",
"version": "0.2.4.1",
"project_urls": {
"Homepage": "https://github.com/crosscompute/jupyterlab-crosscompute"
},
"split_keywords": [
"jupyter",
" jupyterlab",
" jupyterlab3"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "ffc910bb5bfcc2800ce63b1ec1a8f732be6555ebde764753ed69854c21a087bf",
"md5": "62aabd34e12379142ea1a648aabfb684",
"sha256": "c45f2361abfead266322612bb31146d42558998557cbc233599c1bec954429f2"
},
"downloads": -1,
"filename": "jupyterlab_crosscompute-0.2.4.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "62aabd34e12379142ea1a648aabfb684",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.7",
"size": 39803,
"upload_time": "2024-05-29T18:30:01",
"upload_time_iso_8601": "2024-05-29T18:30:01.778265Z",
"url": "https://files.pythonhosted.org/packages/ff/c9/10bb5bfcc2800ce63b1ec1a8f732be6555ebde764753ed69854c21a087bf/jupyterlab_crosscompute-0.2.4.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cd8c69fd39e890dc9ffbcbc824fc0f051fe756f0d6dd856e34c58acf1cb233bb",
"md5": "c4dbbcc9f84bbd80d4f0cca50b442883",
"sha256": "b99ca70a018aa69fa41b662ca6ee032f1737ca3d3f06cab65eda68ff6b28f0bf"
},
"downloads": -1,
"filename": "jupyterlab_crosscompute-0.2.4.1.tar.gz",
"has_sig": false,
"md5_digest": "c4dbbcc9f84bbd80d4f0cca50b442883",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 114110,
"upload_time": "2024-05-29T18:30:03",
"upload_time_iso_8601": "2024-05-29T18:30:03.975653Z",
"url": "https://files.pythonhosted.org/packages/cd/8c/69fd39e890dc9ffbcbc824fc0f051fe756f0d6dd856e34c58acf1cb233bb/jupyterlab_crosscompute-0.2.4.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-05-29 18:30:03",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "crosscompute",
"github_project": "jupyterlab-crosscompute",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "jupyterlab-crosscompute"
}