1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
|
PyEpics: Epics Channel Access for Python
================================
.. image:: https://github.com/pyepics/pyepics/actions/workflows/test-with-conda.yml/badge.svg
:target: https://github.com/pyepics/pyepics/actions/workflows/test-with-conda.yml/
.. image:: https://github.com/pyepics/pyepics/actions/workflows/test-python38.yml/badge.svg
:target: https://github.com/pyepics/pyepics/actions/workflows/test-python38.yml/
.. image:: https://codecov.io/gh/pyepics/pyepics/branch/master/graph/badge.svg
:target: https://codecov.io/gh/pyepics/pyepics
.. image:: https://img.shields.io/pypi/v/pyepics.svg
:target: https://pypi.org/project/pyepics
.. image:: https://img.shields.io/badge/docs-read-brightgreen
:target: https://pyepics.github.io/pyepics/
.. image:: https://zenodo.org/badge/4185/pyepics/pyepics.svg
:target: https://zenodo.org/badge/latestdoi/4185/pyepics/pyepics
PyEpics is a Python interface to the EPICS Channel Access (CA) library
for the EPICS control system.
The PyEpics module includes both low-level (C-like) and higher-level access
(with Python objects) to the EPICS Channnel Access (CA) protocol. Python's
ctypes library is used to wrap the basic CA functionality, with higher
level objects on top of that basic interface. This approach has several
advantages including no need for extension code written in C, better
thread-safety, and easier installation on multiple platforms.
Installation
===========
This package is supported and tested with Python 3.8 through 3.12. Shared
libraries needed for Epics Channel Access are provided for Windows, MacOS,
and Linux, and used by default. If you wish to use your own versions of the CA
shared libraries, that can be controlled with an environmental variable.
To install the package, use::
pip install pyepics
To install from source, download the source kit for the latest release from
PyPI (https://pypi.org/project/pyepics/) or Github
(https://github.com/pyepics/pyepics/releases), unpack that and use::
pip install .
For additional installation details, see the INSTALL file. Binary installers
for Windows are available.
License
----------
This code is distributed under the Epics Open License
Overview
=================
Pyepics provides two principle modules: ca, and pv, and functions
caget(), caput(), and cainfo() for the simplest of interaction with EPICS.
In addition, there are modules for Epics Motors and Alarms, autosave support
via CA, and special widget classes for using EPICS PVs with wxPython.
caget(), caput() and cainfo()
----------------------------
The simplest interface to EPICS Channel Access provides functions caget(),
caput(), and cainfo(), similar to the EZCA interface and to the
EPICS-supplied command line utilities. These all take the name of an Epics
Process Variable as the first argument::
~> python
>>> from epics import caget, caput, cainfo
>>> print(caget('XXX:m1.VAL'))
1.200
>>> caput('XXX:m1.VAL',2.30)
1
>>> cainfo('XXX.m1.VAL')
== XXX:m1.VAL (double) ==
value = 2.3
char_value = 2.3000
count = 1
units = mm
precision = 4
host = xxx.aps.anl.gov:5064
access = read/write
status = 1
severity = 0
timestamp = 1265996455.417 (2010-Feb-12 11:40:55.417)
upper_ctrl_limit = 200.0
lower_ctrl_limit = -200.0
upper_disp_limit = 200.0
lower_disp_limit = -200.0
upper_alarm_limit = 0.0
lower_alarm_limit = 0.0
upper_warning_limit = 0.0
lower_warning = 0.0
PV is monitored internally
no user callbacks defined.
=============================
PV: Object Oriented CA interface
-----------------------------------
The general concept is that an Epics Process Variable is implemented as a
Python PV object, which provides a natural way to interact with EPICS.
>>> import epics
>>> pv = epics.PV('PVName')
>>> pv.connected
True
>>> pv.get()
3.14
>>> pv.put(2.71)
Channel Access features that are included here:
* user callbacks - user-supplied Python function(s) that are run when a PV's
value, access rights, or connection status changes
* control values - a full Control DBR record can be requested
* enumeration strings - enum PV types have integer or string representation,
and you get access to both
* put with wait - The PV.put() method can optionally wait until the record is
done processing (with timeout)
Features that you won't have to worry about:
* connection management (unless you choose to worry about this)
* PV record types - this is handled automatically.
Matt Newville <newville@cars.uchicago.edu>
Last Update: 2024-June-20
|