jupyterlab-execute-time


Namejupyterlab-execute-time JSON
Version 3.1.2 PyPI version JSON
download
home_pagehttps://github.com/deshaw/jupyterlab-execute-time
SummaryDisplay cell timings in Jupyter Lab
upload_time2024-02-14 22:34: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-execute-time

[![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]

Display cell timings in Jupyter Lab

![Execute Time Screenshot](https://github.com/deshaw/jupyterlab-execute-time/blob/master/docs/execute-time-screenshot.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/execute_time).

## Requirements

- JupyterLab >= 3.0

## Install

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

```bash
pip install jupyterlab_execute_time
```

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

```bash
conda install -c conda-forge jupyterlab_execute_time
```

Note: By default, if this extension is enabled, it will automatically change your settings to record timing in the notebook metadata when it is loaded. If this fails, you can do this manually via Settings->Advanced Settings Editor->Notebook: `{"recordTiming": true}`. This is a notebook metadata setting and not a plugin setting. The plugin just displays this data.

## 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_execute_time 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 build jupyterlab_execute_time/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_execute_time
```

5. Upload this to pypi:

```
twine upload dist/*
```

### Uninstall

```bash
pip uninstall jupyterlab_execute_time
```

## 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-execute-time/blob/master/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-execute-time
[pypi-image]: https://img.shields.io/pypi/v/jupyterlab-execute-time
[pypi-dm-image]: https://img.shields.io/pypi/dm/jupyterlab-execute-time
[github-status-image]: https://github.com/deshaw/jupyterlab-execute-time/workflows/Build/badge.svg
[github-status-url]: https://github.com/deshaw/jupyterlab-execute-time/actions?query=workflow%3ABuild
[binder-image]: https://mybinder.org/badge_logo.svg
[binder-url]: https://mybinder.org/v2/gh/deshaw/jupyterlab-execute-time.git/master?urlpath=lab%2Ftree%2Fnotebooks%2Findex.ipynb

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/deshaw/jupyterlab-execute-time",
    "name": "jupyterlab-execute-time",
    "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/f8/ee/4924642f6d1477ba9fa4cbfa138c90f6af0918edc2f4d2f5446dcd1a94bb/jupyterlab_execute_time-3.1.2.tar.gz",
    "platform": "Linux",
    "description": "# jupyterlab-execute-time\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\nDisplay cell timings in Jupyter Lab\n\n![Execute Time Screenshot](https://github.com/deshaw/jupyterlab-execute-time/blob/master/docs/execute-time-screenshot.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/execute_time).\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_execute_time\n```\n\nTo install this package with [`conda`](https://docs.conda.io/en/latest/) run\n\n```bash\nconda install -c conda-forge jupyterlab_execute_time\n```\n\nNote: By default, if this extension is enabled, it will automatically change your settings to record timing in the notebook metadata when it is loaded. If this fails, you can do this manually via Settings->Advanced Settings Editor->Notebook: `{\"recordTiming\": true}`. This is a notebook metadata setting and not a plugin setting. The plugin just displays this data.\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_execute_time 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 build jupyterlab_execute_time/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_execute_time\n```\n\n5. Upload this to pypi:\n\n```\ntwine upload dist/*\n```\n\n### Uninstall\n\n```bash\npip uninstall jupyterlab_execute_time\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-execute-time/blob/master/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-execute-time\n[pypi-image]: https://img.shields.io/pypi/v/jupyterlab-execute-time\n[pypi-dm-image]: https://img.shields.io/pypi/dm/jupyterlab-execute-time\n[github-status-image]: https://github.com/deshaw/jupyterlab-execute-time/workflows/Build/badge.svg\n[github-status-url]: https://github.com/deshaw/jupyterlab-execute-time/actions?query=workflow%3ABuild\n[binder-image]: https://mybinder.org/badge_logo.svg\n[binder-url]: https://mybinder.org/v2/gh/deshaw/jupyterlab-execute-time.git/master?urlpath=lab%2Ftree%2Fnotebooks%2Findex.ipynb\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "Display cell timings in Jupyter Lab",
    "version": "3.1.2",
    "project_urls": {
        "Homepage": "https://github.com/deshaw/jupyterlab-execute-time"
    },
    "split_keywords": [
        "jupyter",
        "jupyterlab",
        "jupyterlab4"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "91f0ef2d353d7e44db6215fc18594b2d1da15c81d3d0c1ac0518e6f484f01595",
                "md5": "719b781c2c03f5e7a40cf964e52871bc",
                "sha256": "c185ccc97c8d1b1dbf369fd4ba3c01bbbe1f8d0f8762eeefdf3be32b6fb52dbe"
            },
            "downloads": -1,
            "filename": "jupyterlab_execute_time-3.1.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "719b781c2c03f5e7a40cf964e52871bc",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 526283,
            "upload_time": "2024-02-14T22:33:59",
            "upload_time_iso_8601": "2024-02-14T22:33:59.747400Z",
            "url": "https://files.pythonhosted.org/packages/91/f0/ef2d353d7e44db6215fc18594b2d1da15c81d3d0c1ac0518e6f484f01595/jupyterlab_execute_time-3.1.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f8ee4924642f6d1477ba9fa4cbfa138c90f6af0918edc2f4d2f5446dcd1a94bb",
                "md5": "daad99a396ee4de2d8f4d717d3b90b9f",
                "sha256": "0e2c86b283575e1fa278c7e94ab03a03fe5cd1fb4d57d620b3d4e5dbf54475b9"
            },
            "downloads": -1,
            "filename": "jupyterlab_execute_time-3.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "daad99a396ee4de2d8f4d717d3b90b9f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 339928,
            "upload_time": "2024-02-14T22:34:01",
            "upload_time_iso_8601": "2024-02-14T22:34:01.272840Z",
            "url": "https://files.pythonhosted.org/packages/f8/ee/4924642f6d1477ba9fa4cbfa138c90f6af0918edc2f4d2f5446dcd1a94bb/jupyterlab_execute_time-3.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-14 22:34:01",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "deshaw",
    "github_project": "jupyterlab-execute-time",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "jupyterlab-execute-time"
}
        
Elapsed time: 0.81996s