A GUI for the Keithley 2600 series
Project description
Warning: Keithleygui v1.1.4 is the last release that is developed and tested for Python 2.7. Newer releases require Python 3.6 or higher.
keithleygui
A high-level user interface for Keithley 2600 series instruments which allows the user to configure, record and save voltage sweeps such as transfer and output measurements. Since there typically is no need to provide a live stream of readings from the Keithley, the data from an IV-curve is buffered locally on the instrument and only transferred to CustomXepr after completion of a measurement.
keithleygui
build on the Python driver provided by
keithley2600.
Installation
Install the stable version from PyPI by running
$ pip install keithleygui
Or install the latest development version from GitHub:
$ pip install git+https://github.com/OE-FET/keithleygui
Usage
In the terminal, run keithleygui
to start the user interface. If your provide the
--verbose
option, log output showing the communication with the Keithley will be
printed to the console.
To start the user interface in a running Python terminal:
from PyQt5 import QtWidgets
from keithleygui import KeithleyGuiApp
app = QtWidgets.QApplication([])
keithley_gui = KeithleyGuiApp()
keithley_gui.show()
app.exec()
You can optionally provide an existing Keithley2600
instance to be used by the GUI:
from PyQt5 import QtWidgets
from keithley2600 import Keithley2600
from keithleygui import KeithleyGuiApp
app = QtWidgets.QApplication([])
keithley = Keithley2600('visa_address')
keithley_gui = KeithleyGuiApp(keithley)
keithley_gui.show()
app.exec()
System requirements
- Linux or macOS
- Python 3.6 or higher
Acknowledgements
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
File details
Details for the file keithleygui-1.2.1.tar.gz
.
File metadata
- Download URL: keithleygui-1.2.1.tar.gz
- Upload date:
- Size: 42.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | af659f1ccf4da26c6aedd9aca65039db3704e2d5e9d0621647fb55e8525e4b9c |
|
MD5 | 09820d97465b16cb392c513e58a3dfdf |
|
BLAKE2b-256 | a54f08fc2a812c1bad8a8e465aa22bd26b763c0ad8a4b0efe257212cd321d6ac |
File details
Details for the file keithleygui-1.2.1-py3-none-any.whl
.
File metadata
- Download URL: keithleygui-1.2.1-py3-none-any.whl
- Upload date:
- Size: 50.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 33874d2cb24ac453e5883ca07afb6487210ad3f9c12dac40fdf2f8f59371d2ac |
|
MD5 | f5c2c0a389fae51f269678f6d1f875bd |
|
BLAKE2b-256 | 80f66de18e3ec31e836bfc47064f5ccabc3b27642bf03273c2fe7508f45d9561 |