Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jtpio/jupyterlab-python-file
JupyterLab extension to create Python files
https://github.com/jtpio/jupyterlab-python-file
jupyter jupyterlab jupyterlab-extension
Last synced: 2 months ago
JSON representation
JupyterLab extension to create Python files
- Host: GitHub
- URL: https://github.com/jtpio/jupyterlab-python-file
- Owner: jtpio
- License: bsd-3-clause
- Archived: true
- Created: 2018-10-17T22:21:21.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2021-08-27T11:18:53.000Z (over 3 years ago)
- Last Synced: 2024-07-17T20:55:37.966Z (6 months ago)
- Topics: jupyter, jupyterlab, jupyterlab-extension
- Language: Python
- Homepage:
- Size: 835 KB
- Stars: 52
- Watchers: 3
- Forks: 13
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-jupyter-resources - GitHub - 11% open · ⏱️ 27.08.2021): (JupyterLab扩展)
README
# jupyterlab-python-file
**Archived**
This project is archived. JupyterLab 3.1+ now supports creating new Python files:
![image](https://user-images.githubusercontent.com/591645/131118479-6587edbd-82d1-4fb4-a025-82ee7b9c62b2.png)
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/jtpio/jupyterlab-python-file/main?urlpath=lab)
[![PyPI](https://img.shields.io/pypi/v/jupyterlab-python-file.svg)](https://pypi.org/project/jupyterlab-python-file)
[![conda-forge](https://img.shields.io/conda/vn/conda-forge/jupyterlab-python-file.svg)](https://anaconda.org/conda-forge/jupyterlab-python-file)
[![npm](https://img.shields.io/npm/v/jupyterlab-python-file.svg)](https://www.npmjs.com/package/jupyterlab-python-file)Create Python Files from JupyterLab
![screenshot](./doc/screenshot.png)
![screenshot2](./doc/screenshot2.png)
## Prerequisites
- JupyterLab 1.0+
## Installation
For JupyterLab 3.x, the extension can be installed with `pip`:
```bash
pip install jupyterlab-python-file
```Or with `conda`:
```bash
conda install -c conda-forge jupyterlab-python-file# or with mamba
mamba install jupyterlab-python-file
```For JupyterLab 1.x and 2.x:
```bash
jupyter labextension install jupyterlab-python-file
```## Development
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-python-file directory# create a new environment
conda create -n jupyterlab-python-file -c conda-forge python nodejs -y
conda activate jupyterlab-python-file# install the JupyterLab pre-release
python -m pip install --pre jupyterlab# 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).