| Name | jupyterlab-deepnote JSON |
| Version |
0.2.0
JSON |
| download |
| home_page | None |
| Summary | A third-party Deepnote extension for JupyterLab |
| upload_time | 2025-10-29 09:18:36 |
| maintainer | None |
| docs_url | None |
| author | None |
| requires_python | >=3.9 |
| license | BSD 3-Clause License
Copyright (c) 2025, Andy Jakubowski
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| keywords |
jupyter
jupyterlab
jupyterlab-extension
|
| VCS |
 |
| bugtrack_url |
|
| requirements |
No requirements were recorded.
|
| Travis-CI |
No Travis.
|
| coveralls test coverage |
No coveralls.
|
# jupyterlab_deepnote
[](https://github.com/deepnote/jupyterlab-deepnote/actions/workflows/ci.yml)
[](https://codecov.io/gh/deepnote/jupyterlab-deepnote)
A third-party Deepnote extension for JupyterLab that provides a read‑only viewer for Deepnote `.deepnote` files.
> **Note:** This is an unofficial, community-developed extension and is not affiliated with or endorsed by Project Jupyter. JupyterLab is a trademark of LF Charities, Inc.
## Requirements
- Python 3.9 or higher
- JupyterLab >= 4.4.0, < 5.0.0
## Install
Install the extension using pip:
```bash
pip install jupyterlab_deepnote
```
## Usage
After installation you can:
- Open Deepnote files (`.deepnote`) containing Deepnote projects in JupyterLab
- Switch between notebooks inside a `.deepnote` file
- View content in **read‑only** mode (no editing or saving back to the `.deepnote` file)
## Troubleshooting
If you encounter issues with the extension, verify that both the server and frontend extensions are properly installed and enabled.
Check server extensions:
```bash
jupyter server extension list
```
Check frontend extensions:
```bash
jupyter labextension list
```
## Uninstall
To remove the extension, run:
```bash
pip uninstall jupyterlab_deepnote
```
## Compatibility
### JupyterLab Version Support
This extension is compatible with **JupyterLab 4.4.0 or higher**. It requires the content provider registry API introduced in JupyterLab 4.4.
**Upper bound:** The extension sets an upper bound of `< 5.0.0` to prevent automatic installation with potentially incompatible future major versions of JupyterLab.
### Maintenance Policy
Following [JupyterLab's extension development guidelines](https://jupyterlab.readthedocs.io/en/stable/extension/extension_dev.html#overview-of-extensions), we adhere to semantic versioning principles:
- **Major releases** (e.g., 1.0.0 → 2.0.0): May introduce breaking changes and require user action
- **Minor releases** (e.g., 1.0.0 → 1.1.0): Add new features while maintaining backwards compatibility
- **Patch releases** (e.g., 1.0.0 → 1.0.1): Bug fixes and minor improvements only
When JupyterLab 5.x is released, we will:
1. Evaluate the changes and update the extension as needed
2. Release a new major or minor version with explicit JupyterLab 5.x support
3. Clearly document any breaking changes in the changelog
### Backwards Compatibility
This extension follows semantic versioning for its own API:
- **Current version (0.x.x)**: Pre-release phase. APIs may change without prior notice.
- **Version 1.0.0 onwards**: We will maintain backwards compatibility within major versions and clearly document breaking changes between major versions.
Note: This extension does **not** support JupyterLab 3.x or earlier versions.
## Contributing
Contributions are welcome! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines on how to contribute to this project.
Raw data
{
"_id": null,
"home_page": null,
"name": "jupyterlab-deepnote",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "jupyter, jupyterlab, jupyterlab-extension",
"author": null,
"author_email": "Andy Jakubowski <andy@deepnote.com>",
"download_url": "https://files.pythonhosted.org/packages/58/fd/6282d54a652e75b25d79b8e30fc2bf6f3909c73a525fcfa5cfd1b0e48978/jupyterlab_deepnote-0.2.0.tar.gz",
"platform": null,
"description": "# jupyterlab_deepnote\n\n[](https://github.com/deepnote/jupyterlab-deepnote/actions/workflows/ci.yml)\n[](https://codecov.io/gh/deepnote/jupyterlab-deepnote)\n\nA third-party Deepnote extension for JupyterLab that provides a read\u2011only viewer for Deepnote `.deepnote` files.\n\n> **Note:** This is an unofficial, community-developed extension and is not affiliated with or endorsed by Project Jupyter. JupyterLab is a trademark of LF Charities, Inc.\n\n## Requirements\n\n- Python 3.9 or higher\n- JupyterLab >= 4.4.0, < 5.0.0\n\n## Install\n\nInstall the extension using pip:\n\n```bash\npip install jupyterlab_deepnote\n```\n\n## Usage\n\nAfter installation you can:\n\n- Open Deepnote files (`.deepnote`) containing Deepnote projects in JupyterLab\n- Switch between notebooks inside a `.deepnote` file\n- View content in **read\u2011only** mode (no editing or saving back to the `.deepnote` file)\n\n## Troubleshooting\n\nIf you encounter issues with the extension, verify that both the server and frontend extensions are properly installed and enabled.\n\nCheck server extensions:\n\n```bash\njupyter server extension list\n```\n\nCheck frontend extensions:\n\n```bash\njupyter labextension list\n```\n\n## Uninstall\n\nTo remove the extension, run:\n\n```bash\npip uninstall jupyterlab_deepnote\n```\n\n## Compatibility\n\n### JupyterLab Version Support\n\nThis extension is compatible with **JupyterLab 4.4.0 or higher**. It requires the content provider registry API introduced in JupyterLab 4.4.\n\n**Upper bound:** The extension sets an upper bound of `< 5.0.0` to prevent automatic installation with potentially incompatible future major versions of JupyterLab.\n\n### Maintenance Policy\n\nFollowing [JupyterLab's extension development guidelines](https://jupyterlab.readthedocs.io/en/stable/extension/extension_dev.html#overview-of-extensions), we adhere to semantic versioning principles:\n\n- **Major releases** (e.g., 1.0.0 \u2192 2.0.0): May introduce breaking changes and require user action\n- **Minor releases** (e.g., 1.0.0 \u2192 1.1.0): Add new features while maintaining backwards compatibility\n- **Patch releases** (e.g., 1.0.0 \u2192 1.0.1): Bug fixes and minor improvements only\n\nWhen JupyterLab 5.x is released, we will:\n\n1. Evaluate the changes and update the extension as needed\n2. Release a new major or minor version with explicit JupyterLab 5.x support\n3. Clearly document any breaking changes in the changelog\n\n### Backwards Compatibility\n\nThis extension follows semantic versioning for its own API:\n\n- **Current version (0.x.x)**: Pre-release phase. APIs may change without prior notice.\n- **Version 1.0.0 onwards**: We will maintain backwards compatibility within major versions and clearly document breaking changes between major versions.\n\nNote: This extension does **not** support JupyterLab 3.x or earlier versions.\n\n## Contributing\n\nContributions are welcome! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines on how to contribute to this project.\n",
"bugtrack_url": null,
"license": "BSD 3-Clause License\n \n Copyright (c) 2025, Andy Jakubowski\n All rights reserved.\n \n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n \n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n \n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n \n 3. Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n \n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.",
"summary": "A third-party Deepnote extension for JupyterLab",
"version": "0.2.0",
"project_urls": {
"Bug Tracker": "https://github.com/deepnote/jupyterlab-deepnote/issues",
"Homepage": "https://github.com/deepnote/jupyterlab-deepnote",
"Repository": "https://github.com/deepnote/jupyterlab-deepnote.git"
},
"split_keywords": [
"jupyter",
" jupyterlab",
" jupyterlab-extension"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "1de5cbf993965d41917468fbcb32fdab7b988f06987f17dcee5bddbd69f981b0",
"md5": "ca9c50cfcf54255f125e74671467388e",
"sha256": "c7288104ee8bdc939c5f7c0f930a7011e5fb3a8be4ca3a8086d34afccc40ff91"
},
"downloads": -1,
"filename": "jupyterlab_deepnote-0.2.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "ca9c50cfcf54255f125e74671467388e",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 170805,
"upload_time": "2025-10-29T09:18:34",
"upload_time_iso_8601": "2025-10-29T09:18:34.546533Z",
"url": "https://files.pythonhosted.org/packages/1d/e5/cbf993965d41917468fbcb32fdab7b988f06987f17dcee5bddbd69f981b0/jupyterlab_deepnote-0.2.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "58fd6282d54a652e75b25d79b8e30fc2bf6f3909c73a525fcfa5cfd1b0e48978",
"md5": "aabb4c25bebeeea240c548a4375c50ad",
"sha256": "5958792c358dc7e9b77c0f7a834e1c6106dd42e9954720682deb3a6335775c33"
},
"downloads": -1,
"filename": "jupyterlab_deepnote-0.2.0.tar.gz",
"has_sig": false,
"md5_digest": "aabb4c25bebeeea240c548a4375c50ad",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 381301,
"upload_time": "2025-10-29T09:18:36",
"upload_time_iso_8601": "2025-10-29T09:18:36.080578Z",
"url": "https://files.pythonhosted.org/packages/58/fd/6282d54a652e75b25d79b8e30fc2bf6f3909c73a525fcfa5cfd1b0e48978/jupyterlab_deepnote-0.2.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-10-29 09:18:36",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "deepnote",
"github_project": "jupyterlab-deepnote",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "jupyterlab-deepnote"
}