Python-based data acquisition
Project description
pyacquisition is a powerful Python package designed to simplify the process of recording scientific data and controlling laboratory instruments. It abstracts away the complexities of instrument communication, task scheduling (both concurrent and sequential), data recording, and logging, allowing you to focus on the science. Whether you're managing a single instrument or orchestrating a complex experimental workflow, pyacquisition provides a framework that simplifies the process dramatically.
Check out the installation and getting started pages to get going.
Objectives
Be an 'all-python' solution for interfacing with instruments and automating experimental procedures. Python has become the first choice of many for data analysis and scripting. We don't want to have to learn a second language just for interfacing with hardware or generating a GUI. You need only use python (and possibly a .toml config file).
Be up and running in minutes, not hours. pyacquisition is designed to be simple and 'batteries-included'. We want to absolutely minimize your development time in all major use-cases.
Be 'one-size-fits-most'. There will inevitably be cases that are not well suited to the workflow offered by pyacquisition, but it is hoped that we can help in the majority of instances. We've tried to design for maximum flexibility whilst keeping the API reasonably simple.
Forget the GUI. User interfaces are difficult and time consuming. Writing a robust GUI in Qt may well take longer than writing the rest of your experiment and analysis code combined. pyacquisition generates the entire UI programmatically.
Offer minimal barrier to entry for those who are not advanced python users. Whilst it will be helpful to understand the basics of object oriented and asynchronous programming, getting going with pyacquisition is as simple as composing a .toml configuration file and running a two-line script. Adding custom functionality can mostly be accomplished by following some worked examples in most cases.
A Short Example
A short configuration file interfacing with a Stanford Research Instruments SR 830 lock-in amplifier:
[experiment]
root_path = "C://data"
[data]
path = "my_data_folder"
[instruments]
clock = {instrument = "Clock"}
lockin = {instrument = "SR_830", adapter = "pyvisa", resource = "GPIB0:7:INSTR"}
[measurements]
time = {instrument = "clock", method = "timestamp_ms"}
voltage = {instrument = "lockin", method = "get_x"}
A short script running the experiment from the configuration file:
from pyacquisition import Experiment
my_experiment = Experiment.from_config('my_configuration_file.toml')
my_experiment.run()
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyacquisition-0.1.4.tar.gz.
File metadata
- Download URL: pyacquisition-0.1.4.tar.gz
- Upload date:
- Size: 242.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71a8e4efdd6e7294cb9ddfb58ba9ecc8425a0c6d491ff520688e2b271e4f891c
|
|
| MD5 |
49453cc5e2ab2dd45fa6eedac3894f33
|
|
| BLAKE2b-256 |
e06a9518569183582c2017b4b0ec619687cc9ca7cdb0d16d8be0030fa4ee161c
|
File details
Details for the file pyacquisition-0.1.4-py3-none-any.whl.
File metadata
- Download URL: pyacquisition-0.1.4-py3-none-any.whl
- Upload date:
- Size: 62.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
503faec5a72f5b2ac9c217111cbf0e564040bd482ce834764e7d115363ba465c
|
|
| MD5 |
9fb0b8270501bb9073961665e274a2e5
|
|
| BLAKE2b-256 |
8467295bf200d8be06093b6eea8b03681910837ec55ebdf690ad70edd976863c
|