https://github.com/diamondlightsource/aioca
Asynchronous Channel Access client for asyncio and Python using libca via ctypes
https://github.com/diamondlightsource/aioca
from-dls-controls
Last synced: 7 months ago
JSON representation
Asynchronous Channel Access client for asyncio and Python using libca via ctypes
- Host: GitHub
- URL: https://github.com/diamondlightsource/aioca
- Owner: DiamondLightSource
- License: apache-2.0
- Created: 2020-02-10T10:05:08.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2025-07-15T15:03:16.000Z (7 months ago)
- Last Synced: 2025-07-16T08:22:30.921Z (7 months ago)
- Topics: from-dls-controls
- Language: Python
- Size: 21.8 MB
- Stars: 8
- Watchers: 15
- Forks: 4
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.rst
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/DiamondLightSource/aioca/actions/workflows/ci.yml)
[](https://codecov.io/gh/DiamondLightSource/aioca)
[](https://pypi.org/project/aioca)
[](https://www.apache.org/licenses/LICENSE-2.0)
# aioca
aioca is an asynchronous EPICS Channel Access client for asyncio and Python
using libca via ctypes.
| Source | |
| :-----------: | :----------------------------------------------------: |
| PyPI | `pip install aioca` |
| Documentation | |
| Releases | |
It exposes a high level interface similar to the commandline tools::
caget(pvs, ...)
Returns a single snapshot of the current value of each PV.
caput(pvs, values, ...)
Writes values to one or more PVs.
camonitor(pvs, callback, ...)
Receive notification each time any of the listed PVs changes.
connect(pvs, ...)
Optionally can be used to establish PV connection before using the PV.
See https://DiamondLightSource.github.io/aioca for more detailed documentation.