Skip to main content

SCPI Instrument Control

CI PyPI version Python Version codecov Docs License: MIT

Drive your whole bench from Python. Oscilloscopes, function generators, power supplies, and DAQ units — one API, over LAN, USB, GPIB, or serial.

Point it at an IP address and it identifies the instrument, picks the right SCPI dialect, and gets out of your way. Or point it at nothing at all: the built-in mock synthesizes real waveforms so you can write and test the entire acquisition pipeline with an empty bench.

A terminal session capturing a 1 kHz square wave from the built-in mock scope with no instrument attached

Try it with no instrument on your desk

pip install SCPI-Instrument-Control
from scpi_control.connection import MockConnection
from scpi_control.oscilloscope import Oscilloscope
from scpi_control.signal_synth import SignalSpec

# A virtual SDS1104X-E probing a 3.3 V, 1 kHz logic clock.
scope = Oscilloscope("mock", connection=MockConnection(
    "mock",
    channel_states={1: True},
    signals={1: SignalSpec(kind="square", frequency=1000.0, amplitude=1.65, offset=1.65)},
    sample_rate=20e6,
    timebase=500e-6,
))
scope.connect()

wf = scope.get_waveform(channel=1)
print(f"{len(wf.time)} samples")
print(f"Vpp  {wf.voltage.max() - wf.voltage.min():.3f} V")
print(f"Freq {scope.measurement.measure_frequency(1):.2f} Hz")
14000 samples
Vpp  3.280 V
Freq 1000.00 Hz

Those are the same 3.28 V rails as the real SDS824X HD calibration square wave further down this page — captured with nothing plugged in. The mock is not a stub replaying a canned buffer: every sample is computed from the scope's current timebase, volts/division, offset, and trigger state, so the capture window follows the timebase, the code grid quantizes the way an 8-bit digitizer does, and free-running acquisitions drift in phase like a real one. Your CI can exercise the full stack with nothing plugged in.

What you get

One API, many vendors Siglent, Tektronix, and LeCroy scopes auto-detected from *IDN?, plus AWGs, PSUs, and DAQ units. Unknown models fall back to a conservative per-vendor profile instead of being rejected.
Capture with provenance Every saved waveform records the instrument, settings, and timestamp that produced it. Read any of it back with load_waveform() or the scpi-extract CLI.
Analysis built in FFT, SNR, THD, jitter, rise/fall, and 25+ statistics — no separate toolchain.
A real desktop GUI PyQt6 + PyQtGraph live view with draggable measurement markers.
A browser lab gateway Share an instrument with the bench next door over HTTP/WebSocket.
Publication-ready reports Automated PDF/Markdown test reports, optionally analyzed by a local LLM.

Honest about limits

This project would rather raise than invent a number. Setting a trigger type a scope's dialect cannot express raises FeatureNotSupportedError instead of silently leaving the instrument as it was; a PSU without a documented protection subsystem refuses ovp_level rather than sending a command the firmware discards. Tektronix and LeCroy command tables were verified line-by-line against the vendor programming manuals and exercised against a dialect-aware mock, but have not yet been run against physical Tektronix or LeCroy hardware — the Siglent path has.

Install

pip install SCPI-Instrument-Control          # core: capture + analysis
pip install "SCPI-Instrument-Control[all]"   # everything below
Extra Adds
[gui] PyQt6 desktop application, live view, visual measurements
[web] scpi-web browser lab gateway (FastAPI)
[report-generator] PDF/Markdown test reports, local-LLM analysis
[usb] USB-TMC, GPIB, and serial instruments via PyVISA
[hdf5] .h5 waveform export
[fun] Vector graphics / XY-mode drawing

Requires Python 3.9+. The core install needs only NumPy, SciPy, and Matplotlib.

Then point it at real hardware

Live screen capture pulled over LAN from a Siglent SDS824X HD oscilloscope
Not a mockup — a live screen grab pulled over LAN from a Siglent SDS824X HD with scope.screen_capture.get_screenshot_pil().

from scpi_control import Oscilloscope

scope = Oscilloscope("192.168.1.100")   # dialect auto-detected from *IDN?
scope.connect()

scope.channel1.enable()
scope.channel1.voltage_scale = 1.0      # V/div
scope.channel1.coupling = "DC"

scope.trigger.set_edge_trigger(source="C1", slope="POS")
scope.trigger.level = 1.0

wf = scope.get_waveform(channel=1)
scope.waveform.save_waveform(wf, "capture.npz")   # provenance travels with it

scope.disconnect()

Ask the instrument what it can actually do before you ask it to do something:

caps = scope.capabilities
print(caps.trigger_types, caps.channel_couplings)

Batch sweeps, continuous logging, and trigger-driven capture live in scpi_control.automation — see the automation guide.

The desktop GUI

pip install "SCPI-Instrument-Control[gui]"
siglent-gui

The PyQt6 desktop application showing two live channels — a 1 kHz square wave and a noisy sine
Two channels live. This one is the mock again — the desktop app runs hardware-free too.

FFT tab showing the odd-harmonic comb of a square wave with the first three peaks marked
FFT of that square wave — the odd-harmonic comb, peaks picked out at 1, 3, and 5 kHz.

A live view that holds 5–20 fps on four channels, measurement markers you drag directly onto the trace, cursors, FFT, math channels, reference-waveform overlays, and a raw SCPI terminal for when you need to talk to the instrument yourself. Dedicated tabs connect to a power supply or a DAQ / data logger alongside the scope.

Software protocol decoding covers I2C, SPI, and UART.

Full GUI guide

The browser lab gateway

pip install "SCPI-Instrument-Control[web]"
scpi-web                    # prints its URL on every start
scpi-web invite alice       # a 10-minute link + code for a colleague

Run one gateway on the bench machine and reach your instruments from any browser on the LAN — live traces, screenshots, measurements, server-side FFT and filters, and ~1 Hz measurement logging with CSV export. GET /api/discover sweeps the subnet for instruments when DHCP moves them.

Every request needs a token, each session has an owner (owner writes, everyone else watches), and outbound connection targets are validated. The admin panel binds loopback only. It does not terminate TLS — keep it on a trusted network or behind a reverse proxy.

Gateway guide · Security model

Automated test reports

pip install "SCPI-Instrument-Control[report-generator]"

Turn captures into PDF or Markdown reports with plots, signal classification, 25+ statistics, pass/fail criteria, and a SHA-256 manifest of the raw data. Comparison and batch modes handle before/after runs and multi-DUT yield tables. Analysis text can be generated by a local LLM through Ollama — on your machine, no cloud provider, no API key.

See example_reports/ for generated samples, including one with LLM analysis.

Report generator guide

Supported instruments

Class Models
Siglent scopes (hardware-tested) SDS800X HD (SDS804X/824X HD) · SDS1000X-E (1102X-E/1104X-E/1202X-E/1204X-E) · SDS2000X Plus (2104X+/2204X+/2354X+) · SDS5000X (5034X/5054X/5104X)
Tektronix scopes (manual-verified) TBS1000C (TBS1102C) · 2 Series MSO (MSO24) · 4 Series (MSO44/46) · 5 Series (MSO54/56/58/58LP) · 6 Series (MSO64)
LeCroy scopes (manual-verified) WaveSurfer 3000z (3024z) · WaveRunner 8000 (8104)
Function generators Siglent SDG1000X (1032X/1025/1020) · SDG2000X (2122X/2082X/2042X)
Power supplies Siglent SPD3303X / SPD3303X-E · SPD1305X / SPD1168X
DAQ / data loggers Keysight 34970A / 34972A · DAQ970A / DAQ973A · generic SCPI-99

Other SCPI instruments generally work: model-specific behavior comes from the ModelCapability registry, and unrecognized models fall back to a conservative profile for their vendor with a logged warning.

SCPI dialects and per-vendor gaps

Command-line tools

Command Does
siglent-gui Launch the desktop application
scpi-web Serve the browser lab gateway
scpi-extract Inspect or export a saved waveform file
siglent-report-generator Launch the standalone report generator

Documentation

Upgrading? import siglent became import scpi_control in v1.0.0 and the compatibility shim was removed in v2.0.0; the API is otherwise identical. Pin SCPI-Instrument-Control<2.0 if you cannot migrate yet. The v4.x → 5.0 gateway now requires a token — see the security guide.

Contributing

Issues and pull requests are welcome — see the Contributing Guide.

git clone https://github.com/little-did-I-know/SCPI-Instrument-Control.git
cd SCPI-Instrument-Control
make dev-setup
make check

License

MIT — see LICENSE.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

scpi_instrument_control-7.0.1.tar.gz (11.4 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

scpi_instrument_control-7.0.1-py3-none-any.whl (766.5 kB view details)

Uploaded Python 3

File details

Details for the file scpi_instrument_control-7.0.1.tar.gz.

File metadata

  • Download URL: scpi_instrument_control-7.0.1.tar.gz
  • Upload date:
  • Size: 11.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scpi_instrument_control-7.0.1.tar.gz
Algorithm Hash digest
SHA256 8e6518e4394f7dba76d7aeac15d43628a9d66ade57636d5e4c6ef44dfbfe50af
MD5 c956fa8c567734af8961f27293607b1f
BLAKE2b-256 b1ada0b9625a4e043f1e12f3cb2585e5bc5a61f6657879a2c6438b08d96f5b64

See more details on using hashes here.

Provenance

The following attestation bundles were made for scpi_instrument_control-7.0.1.tar.gz:

Publisher: publish.yml on little-did-I-know/SCPI-Instrument-Control

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scpi_instrument_control-7.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for scpi_instrument_control-7.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 f8531715f8c64da5d976ff53140303e031802999297251cfd86c6df28ad7da8d
MD5 53c34fc8609556917f38878c22498d9e
BLAKE2b-256 a48a4c02b2564e9d1e95e178b777a3e4859fa6a4aedd0ee563ece7ad988b3ddb

See more details on using hashes here.

Provenance

The following attestation bundles were made for scpi_instrument_control-7.0.1-py3-none-any.whl:

Publisher: publish.yml on little-did-I-know/SCPI-Instrument-Control

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

7.1.0

2 files

This release

7.0.1 This release

2 files

7.0.0

2 files

6.0.0

2 files

5.8.0

2 files

5.7.1

2 files

5.7.0

2 files

5.6.0

2 files

5.5.0

2 files

5.4.0

2 files

5.3.0

2 files

5.2.0

2 files

5.1.0

2 files

5.0.0

2 files

4.1.1

2 files

4.1.0

2 files

4.0.0

2 files

3.3.1

2 files

3.3.0

2 files

3.2.0

2 files

3.1.0

2 files

3.0.0

2 files

2.0.0

2 files

1.1.0

2 files

1.0.1

2 files

1.0.0

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page