{"id":13608782,"url":"https://github.com/jupyterlab-contrib/jupyterlab-kernelspy","last_synced_at":"2025-06-28T07:35:33.867Z","repository":{"id":38316351,"uuid":"130385831","full_name":"jupyterlab-contrib/jupyterlab-kernelspy","owner":"jupyterlab-contrib","description":"A Jupyter Lab extension for inspecting messages to/from a kernel","archived":false,"fork":false,"pushed_at":"2025-02-20T07:11:04.000Z","size":1297,"stargazers_count":85,"open_issues_count":3,"forks_count":12,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-06-05T18:53:35.430Z","etag":null,"topics":["jupyterlab","jupyterlab-extension","kernel"],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jupyterlab-contrib.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2018-04-20T16:11:58.000Z","updated_at":"2025-02-20T21:08:42.000Z","dependencies_parsed_at":"2024-01-17T00:18:32.875Z","dependency_job_id":"edf265ad-f721-4e7e-ade7-3c325938f726","html_url":"https://github.com/jupyterlab-contrib/jupyterlab-kernelspy","commit_stats":{"total_commits":122,"total_committers":5,"mean_commits":24.4,"dds":0.5163934426229508,"last_synced_commit":"020d67a5e2226cac3ae00b4ace286ac0dbdcecaa"},"previous_names":[],"tags_count":22,"template":false,"template_full_name":null,"purl":"pkg:github/jupyterlab-contrib/jupyterlab-kernelspy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jupyterlab-contrib%2Fjupyterlab-kernelspy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jupyterlab-contrib%2Fjupyterlab-kernelspy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jupyterlab-contrib%2Fjupyterlab-kernelspy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jupyterlab-contrib%2Fjupyterlab-kernelspy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jupyterlab-contrib","download_url":"https://codeload.github.com/jupyterlab-contrib/jupyterlab-kernelspy/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jupyterlab-contrib%2Fjupyterlab-kernelspy/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261358537,"owners_count":23146660,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["jupyterlab","jupyterlab-extension","kernel"],"created_at":"2024-08-01T19:01:29.902Z","updated_at":"2025-06-28T07:35:33.843Z","avatar_url":"https://github.com/jupyterlab-contrib.png","language":"TypeScript","funding_links":[],"categories":["JupyterLab扩展","JupyterLab Extensions"],"sub_categories":[],"readme":"# jupyterlab-kernelspy\n\n[![Extension status](https://img.shields.io/badge/status-ready-success 'ready to be used')](https://jupyterlab-contrib.github.io/)\n[![Github Actions Status](https://github.com/jupyterlab-contrib/jupyterlab-kernelspy/workflows/Build/badge.svg)](https://github.com/jupyterlab-contrib/jupyterlab-kernelspy/actions?query=workflow%3ABuild)\n[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/jupyterlab-contrib/jupyterlab-kernelspy/master?urlpath=lab) [![PyPI](https://img.shields.io/pypi/v/jupyterlab-kernelspy)](https://pypi.org/project/jupyterlab-kernelspy)\n\nA Jupyter Lab extension for inspecting messages to/from a kernel.\n\n![screenshot](https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-kernelspy/master/screenshot.png)\n\n## Requirements\n\n- JupyterLab\n\n## Install\n\n```bash\npip install jupyterlab-kernelspy\n```\n\n## Update\n\nFrom JupyterLab 3.0 onwards, extensions are distributed as Python packages. Use the same Python\npackage manager you used to install the extension to update it.\n\nFor JupyterLab 0.34 - 2.2.x, you can update the extension to the latest compatible version with:\n\n```bash\njupyter labextension update jupyterlab-kernelspy\n```\n\n## Usage\n\nOnce the extension is installed, it should add a button to your notebook toolbar (a yellow `{:}` icon).\nClick this button to open a log view for that notebook.\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-kernelspy 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### Uninstall\n\n```bash\npip uninstall jupyterlab-kernelspy\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjupyterlab-contrib%2Fjupyterlab-kernelspy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjupyterlab-contrib%2Fjupyterlab-kernelspy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjupyterlab-contrib%2Fjupyterlab-kernelspy/lists"}