A Python client to control and data ports of the PandABlocks TCP server
Project description
pandablocks
A Python client to control and data ports of the PandABlocks TCP server
Source | https://github.com/PandABlocks/PandABlocks-client |
---|---|
PyPI | pip install pandablocks |
Docker | docker run ghcr.io/pandablocks/PandABlocks-client:latest |
Documentation | https://pandablocks.github.io/PandABlocks-client |
Releases | https://github.com/PandABlocks/PandABlocks-client/releases |
Command line tool features an interactive console, load/save control, and HDF5 writing:
$ pip install pandablocks
$ pandablocks control <panda-hostname>
< PCAP. # Hit TAB key...
PCAP.ACTIVE PCAP.BITS1 PCAP.BITS3 PCAP.GATE PCAP.SAMPLES PCAP.TRIG PCAP.TS_END PCAP.TS_TRIG
PCAP.BITS0 PCAP.BITS2 PCAP.ENABLE PCAP.HEALTH PCAP.SHIFT_SUM PCAP.TRIG_EDGE PCAP.TS_START
< PCAP.ACTIVE?
OK =1
$ pandablocks hdf <panda-hostname> /tmp/panda-%d.h5
INFO:Opened '/tmp/panda-1.h5' with 60 byte samples stored in 11 datasets
INFO:Closed '/tmp/panda-1.h5' after writing 50000000 samples. End reason is 'Disarmed'
Library features a Sans-IO core with both asyncio and blocking wrappers:
from pandablocks.blocking import BlockingClient
from pandablocks.commands import Get
with BlockingClient("hostname-or-ip") as client:
# Commands sent to Control port
idn = client.send(Get("*IDN"))
print(f"Hello {idn}")
for data in client.data():
# Data captured from Data port
print(f"I got some PCAP data {data}")
See https://pandablocks.github.io/PandABlocks-client for more detailed documentation.
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
pandablocks-0.10.3.tar.gz
(503.9 kB
view details)
Built Distribution
File details
Details for the file pandablocks-0.10.3.tar.gz
.
File metadata
- Download URL: pandablocks-0.10.3.tar.gz
- Upload date:
- Size: 503.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
82ac0f40e23f43f050475f8254960b9071e70469ae357947aac2a7aafa475248
|
|
MD5 |
ef4ac5b5743a2d44a94a14b349b6083f
|
|
BLAKE2b-256 |
fd49cd4aff7f5bb196afe9bbf1a8a824cd9ca02c6f6c8ff06b7b6e47054aac1d
|
File details
Details for the file pandablocks-0.10.3-py3-none-any.whl
.
File metadata
- Download URL: pandablocks-0.10.3-py3-none-any.whl
- Upload date:
- Size: 44.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
1ff79e185bcbb98694f683dc53897c3bdb9c1f57345de7e79a9fbf8e6f3161f3
|
|
MD5 |
b48d954e4e3fe9aeb1de525f19bb17c1
|
|
BLAKE2b-256 |
f01060dca4be87910f262fe3dd6b985260e1ae70dce78dd13ec5e51b30985c37
|