plotly-stubs is a stub-only package containing static type annotations for plotly.
pip install plotly-stubsSee plotly-stubs's documentation.
Note: Only very basic documentation as per now.
This project uses uv as package manager.
If you haven't already, install uv, preferably using it's "Standalone installer" method:
..on Windows:
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"..on MacOS and Linux:
curl -LsSf https://astral.sh/uv/install.sh | sh(see docs.astral.sh/uv for all / alternative installation methods.)
Once installed, you can update uv to its latest version, anytime, by running:
uv self updateClone the plotly-stubs repository into your local development directory:
git clone https://github.com/ClaasRostock/plotly-stubs path/to/your/dev/plotly-stubsChange into the project directory after cloning:
cd plotly-stubsRun uv sync -U to create a virtual environment and install all project dependencies into it:
uv sync -UNote: Using
--no-devwill omit installing development dependencies.
Explanation: The
-Uoption stands for--update. It forcesuvto fetch and install the latest versions of all dependencies, ensuring that your environment is up-to-date.
Note:
uvwill create a new virtual environment called.venvin the project root directory when runninguv sync -Uthe first time. Optionally, you can create your own virtual environment using e.g.uv venv, before runninguv sync -U.
When using uv, there is in almost all cases no longer a need to manually activate the virtual environment.
uv will find the .venv virtual environment in the working directory or any parent directory, and activate it on the fly whenever you run a command via uv inside your project folder structure:
uv run <command>However, you still can manually activate the virtual environment if needed.
When developing in an IDE, for instance, this can in some cases be necessary depending on your IDE settings.
To manually activate the virtual environment, run one of the "known" legacy commands:
..on Windows:
.venv\Scripts\activate.bat..on Linux:
source .venv/bin/activateThe .pre-commit-config.yaml file in the project root directory contains a configuration for pre-commit hooks.
To install the pre-commit hooks defined therein in your local git repository, run:
uv run pre-commit installAll pre-commit hooks configured in .pre-commit-config.yaml will now run each time you commit changes.
pre-commit can also manually be invoked, at anytime, using:
uv run pre-commit run --all-filesTo skip the pre-commit validation on commits (e.g. when intentionally committing broken code), run:
uv run git commit -m <MSG> --no-verifyTo update the hooks configured in .pre-commit-config.yaml to their newest versions, run:
uv run pre-commit autoupdateTo test that the installation works, run pytest in the project root folder:
uv run pytestCopyright (c) 2026 Claas Rostock. All rights reserved.
Claas Rostock - @LinkedIn - claas.rostock@dnv.com
Distributed under the MIT license. See LICENSE for more information.
https://github.com/ClaasRostock/plotly-stubs
- Fork it (https://github.com/ClaasRostock/plotly-stubs/fork)
- Create an issue in your GitHub repo
- Create your branch based on the issue number and type (
git checkout -b issue-name) - Evaluate and stage the changes you want to commit (
git add -i) - Commit your changes (
git commit -am 'place a descriptive commit message here') - Push to the branch (
git push origin issue-name) - Create a new Pull Request in GitHub