pvaPy icon indicating copy to clipboard operation
pvaPy copied to clipboard

pvaPy provides Python bindings for EPICS pvAccess

Results 11 pvaPy issues
Sort by recently updated
recently updated
newest added

Hi there, I am unsure which of the two libraries is best to post this in as it could be a pvapy or a p4p issue but I thought I...

Installing the pvapy package on an Apple MacBook Pro (M series, ARM) fails in a conda environment as shown below: ``` Channels: - defaults - epics Platform: osx-arm64 Collecting package...

Changes made to open and publish all frames from mutli-frame input files, instead of just the first frame.

We're in the process of writing Ophyd.v2: https://github.com/bluesky/ophyd/pull/1078 The main aims are: - Write Devices using asyncio logic - Allow use of both CA and PVA in the same process...

Hello, In our group we are using pvapy for a number of applications but primarily to host a number of PvaServers. We then have a separate application that connects to...

Hello, I've written a small Python module https://github.com/ajgdls/EPICSPyClientPerformance to compare the performance of 6 Python based EPICS clients. I have attempted to test each in a consistent way, and the...

Problem: PV servers has difficultly keeping up reading PV objects with very large struct arrays. The same issue appears with both mirror server and p2p. Steps to reproduce: 1. IOC...

epics-base 7.0.3.1 is now available on conda-forge. I think it'd make sense to have pvaPy there as well. It would ensure it's built with compatible versions of numpy and boost....

Trying to configure pvaPy with INSTALL_LOCATION given ```sh tar -xaf EPICS-CPP-4.6.0.tar.gz cd EPICS-CPP-4.6.0/ make -j4 EPICS_BASE=/home/mdavidsaver/work/epics/base-git INSTALL_LOCATION=$PWD/root make -j4 EPICS_BASE=/home/mdavidsaver/work/epics/base-git INSTALL_LOCATION=$PWD/root config.pvaPy make -j4 EPICS_BASE=/home/mdavidsaver/work/epics/base-git INSTALL_LOCATION=$PWD/root pvaPy ``` ```sh checking...

I am having an intermittent issue with reconnection. Here is my order of operations: 1. Start consumer process: ```python EPICS_PVA_SERVER_PORT=11111 pvapy-hpc-consumer --input-channel pvapy:image --output-channel pvapy:image1 --processor-file /path/to/hpcDataProcessorExample.py --processor-class HpcDataProcessor --report-period...