Jupyterlab extension for JupySQL
Project description
jupysql-plugin
Install
pip install jupysql-plugin
Contributing
Development install
conda create --name jupysql-plugin python=3.11 --channel conda-forge --yes
conda activate jupysql-plugin
conda install nodejs --channel conda-forge --yes
pip install -r requirements.txt
pip install -r requirements.dev.txt
jlpm install
Note: pkgmt format
can be used to format and lint before committing code.
# Note: this command will take some time the first time as it has to install
# and compile the frontend code
pip install -e "."
# upon installation, both the frontend and backend extensions must be activated
# automatically, you can verify it by ensuring jupysql-plugin appears here:
jupyter labextension list # frontend extension
jupyter server extension list # backend extension
# if they don't appear, you can activate them manually, but this means that
# the setup is incorrect! see pyproject.toml, under
# tool.hatch.build.targets.wheel.shared-data, and fix any issues
# activate manually
jupyter server extension enable jupysql_plugin
jupyter labextension enable jupysql_plugin
jupyter labextension develop . --overwrite
# NOTE: the two previous commands will fail if there are missing dependencies
# rebuild extension Typescript
# important: we had to set skipLibCheck: true
# https://discourse.jupyter.org/t/struggling-with-extensions-and-dependencies-versions/19550
jlpm build
To watch for changes and reload:
# in one terminal
jlpm watch
# another terminal
jupyter lab
Refresh JupyterLab to load the change in your browser.
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:
jupyter lab build --minimize=False
adding dependencies
jlpm add PACKAGE
# example
jlpm add @jupyter-widgets/base
Development uninstall
pip uninstall jupysql-plugin
In development mode, you will also need to remove the symlink created by jupyter labextension develop
command. To find its location, you can run jupyter labextension list
to figure out where the labextensions
folder is located. Then you can remove the symlink named jupysql-plugin
within that folder.
Testing the extension
This extension is using Jest for JavaScript code testing.
This extension uses Playwright for the integration tests (aka user level tests). More precisely, the JupyterLab helper Galata is used to handle testing the extension in JupyterLab. More information are provided within the ui-tests README.
To run the tests:
pip install nox pyyaml
# note that this will also create a venv
nox --session test
# to only run the python unit tests
pytest tests
Releasing the extension
See RELEASE
Configuration
The package.json
file contains a jupyterlab
extension. More information about
this section is here (you might need to switch the git branch dependin on which version JupyterLab version you're building for). The schema is here.
Ploomber Cloud API Endpoint
You can set the PLOOMBER_CLOUD_HOST
variable to switch the API endpoint (by default, it's set to our production API endpoint).
export PLOOMBER_CLOUD_HOST=https://cloudapi-dev.ploomber.io
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for jupysql_plugin-0.2.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | fc553a0267f9eb64a72d7a187977e40d18a49548b26ba0761d5c1b933039c59f |
|
MD5 | 0c0c2864e73f6735825284ab32320048 |
|
BLAKE2b-256 | 8d23005473708375e9e17c5913c6a6a1208bd4d2f20e4dccc98093fb8ec124d6 |