jupyterlab-limit-output


Namejupyterlab-limit-output JSON
Version 2.0.0 PyPI version JSON
download
home_pagehttps://github.com/deshaw/jupyterlab-limit-output
SummaryLimit output text mime-renders
upload_time2023-05-19 13:15:01
maintainer
docs_urlNone
authorMarc Udoff
requires_python>=3.7
licenseBSD-3-Clause
keywords jupyter jupyterlab jupyterlab4
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # jupyterlab-limit-output

[![PyPI version][pypi-image]][pypi-url] [![PyPI DM][pypi-dm-image]][pypi-url]
[![Github Actions Status][github-status-image]][github-status-url] [![Binder][binder-image]][binder-url]

Limit long text output for a single mime render.

![Limit OutputScreenshot](https://github.com/deshaw/jupyterlab-limit-output/blob/main/docs/limit-output.png?raw=true)

This is inspired by the notebook version [here](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/blob/master/src/jupyter_contrib_nbextensions/nbextensions/limit_output).

## Settings

Use `Settings->Advanced User Settings->Limit Output` to set head and/or tail limits. You can also limit by characters instead of lines.
This extension can also be enabled/disabled to allow for site-wide installations.

Note: This works on a per mime render basis. For example, imagine cell that outputs a large number alternating lines of stdout and stderr.
This extension won't help because each line would be it's own mime renderer (lab itself will help by limiting the number of renders shown).

## Requirements

- JupyterLab >= 3.0

## Install

To install this package with [`pip`](https://pip.pypa.io/en/stable/) run

```bash
pip install jupyterlab_limit_output
```

To install this package with [`conda`](https://docs.conda.io/en/latest/) run

```bash
conda install -c conda-forge jupyterlab_limit_output
```

## 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_limit_output directory
# Install package in development mode
pip install -e .
# Link your development version of the extension with JupyterLab
jupyter labextension develop . --overwrite
# 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
```

#### Publishing

Before starting, you'll need to have run: `pip install twine jupyter_packaging`

1. Update the version in `package.json` and update the release date in `CHANGELOG.md`
2. Commit the change in step 1, tag it, then push it

```
git commit -am <msg>
git tag vX.Z.Y
git push && git push --tags
```

3. Create the artifacts

```
rm -rf dist jupyterlab_limit_output/labextension
jlpm run build
python setup.py sdist bdist_wheel
```

4. Test this against the test pypi. You can then install from here to test as well:

```
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
# In a new venv
pip install --index-url https://test.pypi.org/simple/ jupyterlab_limit_output
```

5. Upload this to pypi:

```
twine upload dist/*
```

### Uninstall

```bash
pip uninstall jupyterlab_limit_output
```

## History

This plugin was contributed back to the community by the [D. E. Shaw group](https://www.deshaw.com/).

<p align="center">
    <a href="https://www.deshaw.com">
       <img src="https://www.deshaw.com/assets/logos/blue_logo_417x125.png" alt="D. E. Shaw Logo" height="75" >
    </a>
</p>

## License

This project is released under a [BSD-3-Clause license](https://github.com/deshaw/jupyterlab-limit-output/blob/main/LICENSE.txt).

We love contributions! Before you can contribute, please sign and submit this [Contributor License Agreement (CLA)](https://www.deshaw.com/oss/cla).
This CLA is in place to protect all users of this project.

"Jupyter" is a trademark of the NumFOCUS foundation, of which Project Jupyter is a part.

[pypi-url]: https://pypi.org/project/jupyterlab-limit-output
[pypi-image]: https://img.shields.io/pypi/v/jupyterlab-limit-output
[pypi-dm-image]: https://img.shields.io/pypi/dm/jupyterlab-limit-output
[github-status-image]: https://github.com/deshaw/jupyterlab-limit-output/workflows/Build/badge.svg
[github-status-url]: https://github.com/deshaw/jupyterlab-limit-output/actions?query=workflow%3ABuild
[binder-image]: https://mybinder.org/badge_logo.svg
[binder-url]: https://mybinder.org/v2/gh/deshaw/jupyterlab-limit-output.git/main?urlpath=lab%2Ftree%2Fnotebooks%2Findex.ipynb

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/deshaw/jupyterlab-limit-output",
    "name": "jupyterlab-limit-output",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "Jupyter,JupyterLab,JupyterLab4",
    "author": "Marc Udoff",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/b7/d5/b9ce957a97f4d9bd8670bf83a149cd60c49f3fac2b5693f3e592c02ccfc6/jupyterlab_limit_output-2.0.0.tar.gz",
    "platform": "Linux",
    "description": "# jupyterlab-limit-output\n\n[![PyPI version][pypi-image]][pypi-url] [![PyPI DM][pypi-dm-image]][pypi-url]\n[![Github Actions Status][github-status-image]][github-status-url] [![Binder][binder-image]][binder-url]\n\nLimit long text output for a single mime render.\n\n![Limit OutputScreenshot](https://github.com/deshaw/jupyterlab-limit-output/blob/main/docs/limit-output.png?raw=true)\n\nThis is inspired by the notebook version [here](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/blob/master/src/jupyter_contrib_nbextensions/nbextensions/limit_output).\n\n## Settings\n\nUse `Settings->Advanced User Settings->Limit Output` to set head and/or tail limits. You can also limit by characters instead of lines.\nThis extension can also be enabled/disabled to allow for site-wide installations.\n\nNote: This works on a per mime render basis. For example, imagine cell that outputs a large number alternating lines of stdout and stderr.\nThis extension won't help because each line would be it's own mime renderer (lab itself will help by limiting the number of renders shown).\n\n## Requirements\n\n- JupyterLab >= 3.0\n\n## Install\n\nTo install this package with [`pip`](https://pip.pypa.io/en/stable/) run\n\n```bash\npip install jupyterlab_limit_output\n```\n\nTo install this package with [`conda`](https://docs.conda.io/en/latest/) run\n\n```bash\nconda install -c conda-forge jupyterlab_limit_output\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_limit_output 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# 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#### Publishing\n\nBefore starting, you'll need to have run: `pip install twine jupyter_packaging`\n\n1. Update the version in `package.json` and update the release date in `CHANGELOG.md`\n2. Commit the change in step 1, tag it, then push it\n\n```\ngit commit -am <msg>\ngit tag vX.Z.Y\ngit push && git push --tags\n```\n\n3. Create the artifacts\n\n```\nrm -rf dist jupyterlab_limit_output/labextension\njlpm run build\npython setup.py sdist bdist_wheel\n```\n\n4. Test this against the test pypi. You can then install from here to test as well:\n\n```\ntwine upload --repository-url https://test.pypi.org/legacy/ dist/*\n# In a new venv\npip install --index-url https://test.pypi.org/simple/ jupyterlab_limit_output\n```\n\n5. Upload this to pypi:\n\n```\ntwine upload dist/*\n```\n\n### Uninstall\n\n```bash\npip uninstall jupyterlab_limit_output\n```\n\n## History\n\nThis plugin was contributed back to the community by the [D. E. Shaw group](https://www.deshaw.com/).\n\n<p align=\"center\">\n    <a href=\"https://www.deshaw.com\">\n       <img src=\"https://www.deshaw.com/assets/logos/blue_logo_417x125.png\" alt=\"D. E. Shaw Logo\" height=\"75\" >\n    </a>\n</p>\n\n## License\n\nThis project is released under a [BSD-3-Clause license](https://github.com/deshaw/jupyterlab-limit-output/blob/main/LICENSE.txt).\n\nWe love contributions! Before you can contribute, please sign and submit this [Contributor License Agreement (CLA)](https://www.deshaw.com/oss/cla).\nThis CLA is in place to protect all users of this project.\n\n\"Jupyter\" is a trademark of the NumFOCUS foundation, of which Project Jupyter is a part.\n\n[pypi-url]: https://pypi.org/project/jupyterlab-limit-output\n[pypi-image]: https://img.shields.io/pypi/v/jupyterlab-limit-output\n[pypi-dm-image]: https://img.shields.io/pypi/dm/jupyterlab-limit-output\n[github-status-image]: https://github.com/deshaw/jupyterlab-limit-output/workflows/Build/badge.svg\n[github-status-url]: https://github.com/deshaw/jupyterlab-limit-output/actions?query=workflow%3ABuild\n[binder-image]: https://mybinder.org/badge_logo.svg\n[binder-url]: https://mybinder.org/v2/gh/deshaw/jupyterlab-limit-output.git/main?urlpath=lab%2Ftree%2Fnotebooks%2Findex.ipynb\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "Limit output text mime-renders",
    "version": "2.0.0",
    "project_urls": {
        "Homepage": "https://github.com/deshaw/jupyterlab-limit-output"
    },
    "split_keywords": [
        "jupyter",
        "jupyterlab",
        "jupyterlab4"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f6c6b81b9c72a440a3f9f2fd057876ea5cb781e13c9d894fb3b4fe441a9852c",
                "md5": "8fc2f851fd4632bfed70d19e4f03dfc3",
                "sha256": "3614bee39ba65abbc778ea9de02d9a54953c21d02daed4156b46259698ac494e"
            },
            "downloads": -1,
            "filename": "jupyterlab_limit_output-2.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "8fc2f851fd4632bfed70d19e4f03dfc3",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 504814,
            "upload_time": "2023-05-19T13:14:59",
            "upload_time_iso_8601": "2023-05-19T13:14:59.386425Z",
            "url": "https://files.pythonhosted.org/packages/0f/6c/6b81b9c72a440a3f9f2fd057876ea5cb781e13c9d894fb3b4fe441a9852c/jupyterlab_limit_output-2.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b7d5b9ce957a97f4d9bd8670bf83a149cd60c49f3fac2b5693f3e592c02ccfc6",
                "md5": "c35a29f676bac43816945bc8c43fa39e",
                "sha256": "8742a6c9d8823b037d3cdd4d644373a00ff35babc3718a0d6bb35521f9f5f638"
            },
            "downloads": -1,
            "filename": "jupyterlab_limit_output-2.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "c35a29f676bac43816945bc8c43fa39e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 111722,
            "upload_time": "2023-05-19T13:15:01",
            "upload_time_iso_8601": "2023-05-19T13:15:01.829695Z",
            "url": "https://files.pythonhosted.org/packages/b7/d5/b9ce957a97f4d9bd8670bf83a149cd60c49f3fac2b5693f3e592c02ccfc6/jupyterlab_limit_output-2.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-19 13:15:01",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "deshaw",
    "github_project": "jupyterlab-limit-output",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "jupyterlab-limit-output"
}
        
Elapsed time: 0.06721s