Python interface to Archiver Appliance
Project description
PyArchAppl
Python client for Archiver Appliance.
Installation
pip install pyarchappl [--upgrade]
User Guide
Command line tool pyarchappl-get
is the best tool that could be used for
data retrieval, read the usage help message by -h
option.
Development
[Optional] Set up Archiver Appliance testing environment
Data Retrieval Client
from archappl.client import ArchiverDataClient import matplotlib.pyplot as plt plt.style.use('ggplot') client = ArchiverDataClient() client.url = 'http://127.0.0.1:17665' # default url, optional. pv = 'TST:gaussianNoise' data = client.get_data(pv) data.plot() plt.show()
Data (PV) Management Client
from archappl.client import ArchiverMgmtClient client = ArchiverMgmtClient() client.url = 'http://127.0.0.1:17665' all_pvs = client.get_all_pvs() print(all_pvs) # [u'TST:fakeGaussianNoise', u'TST:gaussianNoise', u'TST:uniformNoise']
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.
Built Distribution
Close
Hashes for pyarchappl-0.10.3.post1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f542ff3592833399e0fe8122c278d3a2eb73e5bb2f1f0707128d4ddbc5b2f03 |
|
MD5 | d5976c01c4d6ef0032ab20b4dedf22b4 |
|
BLAKE2-256 | 6ab8c9bbd33857d7949d7c5ee41c34f4768996ea567c4621bbc04c9bc98e2a86 |