All documentation
Reference

Python Install Verification Example

A simple Python package verification doc showing how to test install, import, and expected results.

Python

Overview

This page is a simple installation verification page for the PulseGrid Python package. Use it when you want to confirm: - the package installed correctly - import works - the installed version is visible - your environment is pointing to the expected package

Setup

1. Install pulsegrid from PyPI. 2. Run a simple import test. 3. Check package details with pip show. 4. Optionally print the package version from Python.

Code example

Python Install Verification Example
# install
pip install pulsegrid

# show package details
pip show pulsegrid

# import test
python -c "from pulsegrid import create_pulsegrid, PulseGridClient; print('import ok from pypi')"

# optional version check
python -c "import pulsegrid; print(getattr(pulsegrid, '__version__', 'unknown'))"

Notes

Expected result examples: Import test: import ok from pypi Version check: 0.1.0 pip show pulsegrid may include: Name: pulsegrid Version: 0.1.0