Name | jupyterlab-quickopen JSON |
Version |
2.0.2
JSON |
| download |
home_page | None |
Summary | Quickly open a file in JupyterLab by part of its name |
upload_time | 2024-10-21 07:29:54 |
maintainer | None |
docs_url | None |
author | JupyterLab Contrib Team |
requires_python | >=3.8 |
license | Copyright (c) 2018, 2020 Peter Parente Copyright (c) JupyterLab Contrib Team 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-quickopen
[![Extension status](https://img.shields.io/badge/status-ready-success 'ready to be used')](https://jupyterlab-contrib.github.io/)
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/jupyterlab-contrib/jupyterlab-quickopen/main?urlpath=lab%2Ftree%2Fbinder%2Ftutorial.ipynb)
Quickly open a file in JupyterLab by typing part of its name
https://github.com/user-attachments/assets/77567c89-ad52-4be8-b0e4-612700353242
## Compatibility
- Python >=3.8.x
- [JupyterLab](https://github.com/jupyterlab/jupyterlab) >=3.2
- [Jupyter Server](https://github.com/jupyter/jupyter_server) >=2.4
- Configurations where notebook documents and other files reside on a filesystem local to the
Jupyter Server (which is the the default), not remote storage (e.g., S3)
## Usage
After installing the extension, you can open the quick open panel by pressing `Ctrl Shift P` (or `Cmd P` on macOS). Start typing the name of the file you want to open, and the quick open panel will show a list of files that match the text you've typed.
https://github.com/user-attachments/assets/77567c89-ad52-4be8-b0e4-612700353242
The extension also works in Jupyter Notebook 7:
https://github.com/user-attachments/assets/49147847-2b98-4016-8a11-5d0e8d9749e1
## Install
To install the extension with `pip`:
```bash
pip install jupyterlab-quickopen
```
With `conda` / `mamba`:
```bash
conda install -c conda-forge jupyterlab-quickopen
```
## Configure
### Using a custom Keyboard Shortcut
The default keyboard shortcut for opening the quickopen panel is `Accel Ctrl P`.
You can assign your own keyboard shortcut to show the quickopen panel at any time. Open the keyboard editor
by clicking _Settings → Advanced Settings Editor → Keyboard Shortcuts_. Then enter JSON in
the _User Overrides_ text area like the following, adjusting the `keys` value to assign the shortcut
of your choosing:
```json
{
"shortcuts": [
{
"command": "quickopen:activate",
"keys": ["Accel Ctrl P"],
"selector": "body",
"title": "Activate Quick Open",
"category": "Main Area"
}
]
}
```
### Patterns to Exclude
You can control which files to exclude from the quick open list using the Jupyter Server settings,
JupyterLab settings, or both.
On the server side, use the `ContentsManager.allow_hidden` and/or `ContentsManager.hide_globs`
settings. See the
[documentation about Jupyter Server options](https://jupyter-server.readthedocs.io/en/latest/operators/configuring-extensions.html)
for details.
In the JupyterLab web app, open the _Settings_ menu, click the _Advanced Settings Editor_ option,
select the _Quick Open_ item in the _Raw View_ sidebar, and enter JSON in the _User Overrides_ text
area to override the default values.
![Screenshot of the quick open settings editor](./doc/settings.png)
### 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_quickopen 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_quickopen
# 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
```
### Releasing
See [RELEASE](RELEASE.md)
### Acknowledgements
This extension was originally created by [Peter Parente](https://github.com/parente) and was
later moved to the `jupyterlab-contrib` GitHub organization.
Raw data
{
"_id": null,
"home_page": null,
"name": "jupyterlab-quickopen",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "jupyter, jupyterlab, jupyterlab-extension",
"author": "JupyterLab Contrib Team",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/27/ac/d3787b743a0cdba56eae5b115e89c5fc88175124e5d9121d42ef12f567af/jupyterlab_quickopen-2.0.2.tar.gz",
"platform": null,
"description": "# jupyterlab-quickopen\n\n[![Extension status](https://img.shields.io/badge/status-ready-success 'ready to be used')](https://jupyterlab-contrib.github.io/)\n[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/jupyterlab-contrib/jupyterlab-quickopen/main?urlpath=lab%2Ftree%2Fbinder%2Ftutorial.ipynb)\n\nQuickly open a file in JupyterLab by typing part of its name\n\nhttps://github.com/user-attachments/assets/77567c89-ad52-4be8-b0e4-612700353242\n\n## Compatibility\n\n- Python >=3.8.x\n- [JupyterLab](https://github.com/jupyterlab/jupyterlab) >=3.2\n- [Jupyter Server](https://github.com/jupyter/jupyter_server) >=2.4\n- Configurations where notebook documents and other files reside on a filesystem local to the\n Jupyter Server (which is the the default), not remote storage (e.g., S3)\n\n## Usage\n\nAfter installing the extension, you can open the quick open panel by pressing `Ctrl Shift P` (or `Cmd P` on macOS). Start typing the name of the file you want to open, and the quick open panel will show a list of files that match the text you've typed.\n\nhttps://github.com/user-attachments/assets/77567c89-ad52-4be8-b0e4-612700353242\n\nThe extension also works in Jupyter Notebook 7:\n\nhttps://github.com/user-attachments/assets/49147847-2b98-4016-8a11-5d0e8d9749e1\n\n## Install\n\nTo install the extension with `pip`:\n\n```bash\npip install jupyterlab-quickopen\n```\n\nWith `conda` / `mamba`:\n\n```bash\nconda install -c conda-forge jupyterlab-quickopen\n```\n\n## Configure\n\n### Using a custom Keyboard Shortcut\n\nThe default keyboard shortcut for opening the quickopen panel is `Accel Ctrl P`.\n\nYou can assign your own keyboard shortcut to show the quickopen panel at any time. Open the keyboard editor\nby clicking _Settings → Advanced Settings Editor → Keyboard Shortcuts_. Then enter JSON in\nthe _User Overrides_ text area like the following, adjusting the `keys` value to assign the shortcut\nof your choosing:\n\n```json\n{\n \"shortcuts\": [\n {\n \"command\": \"quickopen:activate\",\n \"keys\": [\"Accel Ctrl P\"],\n \"selector\": \"body\",\n \"title\": \"Activate Quick Open\",\n \"category\": \"Main Area\"\n }\n ]\n}\n```\n\n### Patterns to Exclude\n\nYou can control which files to exclude from the quick open list using the Jupyter Server settings,\nJupyterLab settings, or both.\n\nOn the server side, use the `ContentsManager.allow_hidden` and/or `ContentsManager.hide_globs`\nsettings. See the\n[documentation about Jupyter Server options](https://jupyter-server.readthedocs.io/en/latest/operators/configuring-extensions.html)\nfor details.\n\nIn the JupyterLab web app, open the _Settings_ menu, click the _Advanced Settings Editor_ option,\nselect the _Quick Open_ item in the _Raw View_ sidebar, and enter JSON in the _User Overrides_ text\narea to override the default values.\n\n![Screenshot of the quick open settings editor](./doc/settings.png)\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_quickopen 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_quickopen\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### Releasing\n\nSee [RELEASE](RELEASE.md)\n\n### Acknowledgements\n\nThis extension was originally created by [Peter Parente](https://github.com/parente) and was\nlater moved to the `jupyterlab-contrib` GitHub organization.\n",
"bugtrack_url": null,
"license": "Copyright (c) 2018, 2020 Peter Parente Copyright (c) JupyterLab Contrib Team 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.",
"summary": "Quickly open a file in JupyterLab by part of its name",
"version": "2.0.2",
"project_urls": {
"Bug Tracker": "https://github.com/jupyterlab-contrib/jupyterlab-quickopen/issues",
"Homepage": "https://github.com/jupyterlab-contrib/jupyterlab-quickopen",
"Repository": "https://github.com/jupyterlab-contrib/jupyterlab-quickopen.git"
},
"split_keywords": [
"jupyter",
" jupyterlab",
" jupyterlab-extension"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "53af7106886bef754d4c88daf99e62792c6c94709aa61d624b7f43d953acfbc7",
"md5": "ae7a4bffaea6ce5f513f699c5b909a35",
"sha256": "7a48d5638452229c0d93149d1225f4c7ee66432aac2c1378131cc2cf58d45855"
},
"downloads": -1,
"filename": "jupyterlab_quickopen-2.0.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "ae7a4bffaea6ce5f513f699c5b909a35",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 22575,
"upload_time": "2024-10-21T07:29:51",
"upload_time_iso_8601": "2024-10-21T07:29:51.869391Z",
"url": "https://files.pythonhosted.org/packages/53/af/7106886bef754d4c88daf99e62792c6c94709aa61d624b7f43d953acfbc7/jupyterlab_quickopen-2.0.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "27acd3787b743a0cdba56eae5b115e89c5fc88175124e5d9121d42ef12f567af",
"md5": "7d6aa7aa335e20c5a8ec60a04bde40a1",
"sha256": "b365aebaa4e06c717c15505d57ce05f754c9f870606e30f2427f60c4d6cb7c75"
},
"downloads": -1,
"filename": "jupyterlab_quickopen-2.0.2.tar.gz",
"has_sig": false,
"md5_digest": "7d6aa7aa335e20c5a8ec60a04bde40a1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 207871,
"upload_time": "2024-10-21T07:29:54",
"upload_time_iso_8601": "2024-10-21T07:29:54.162828Z",
"url": "https://files.pythonhosted.org/packages/27/ac/d3787b743a0cdba56eae5b115e89c5fc88175124e5d9121d42ef12f567af/jupyterlab_quickopen-2.0.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-21 07:29:54",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "jupyterlab-contrib",
"github_project": "jupyterlab-quickopen",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "jupyterlab-quickopen"
}