ophyd-async 0.8.0a4__py3-none-any.whl → 0.8.0a6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ophyd_async/_version.py +1 -1
- ophyd_async/core/__init__.py +2 -0
- ophyd_async/core/_device.py +9 -2
- ophyd_async/core/_signal.py +86 -16
- ophyd_async/core/_soft_signal_backend.py +6 -2
- ophyd_async/core/_table.py +9 -4
- ophyd_async/core/_utils.py +24 -19
- ophyd_async/epics/adcore/_core_logic.py +3 -1
- ophyd_async/epics/core/_aioca.py +1 -1
- ophyd_async/epics/core/_p4p.py +1 -0
- ophyd_async/epics/eiger/_eiger_controller.py +6 -1
- ophyd_async/epics/testing/__init__.py +24 -0
- ophyd_async/epics/testing/_example_ioc.py +105 -0
- ophyd_async/epics/testing/_utils.py +78 -0
- ophyd_async/epics/testing/test_records.db +152 -0
- ophyd_async/epics/testing/test_records_pva.db +177 -0
- ophyd_async/fastcs/panda/_table.py +1 -1
- ophyd_async/plan_stubs/_ensure_connected.py +18 -11
- ophyd_async/tango/__init__.py +0 -43
- ophyd_async/tango/{signal → core}/__init__.py +7 -2
- ophyd_async/tango/{base_devices → core}/_base_device.py +38 -64
- ophyd_async/tango/{signal → core}/_signal.py +13 -3
- ophyd_async/tango/{base_devices → core}/_tango_readable.py +3 -4
- ophyd_async/tango/demo/_counter.py +6 -7
- ophyd_async/tango/demo/_mover.py +8 -7
- {ophyd_async-0.8.0a4.dist-info → ophyd_async-0.8.0a6.dist-info}/METADATA +47 -47
- {ophyd_async-0.8.0a4.dist-info → ophyd_async-0.8.0a6.dist-info}/RECORD +32 -28
- {ophyd_async-0.8.0a4.dist-info → ophyd_async-0.8.0a6.dist-info}/WHEEL +1 -1
- ophyd_async/tango/base_devices/__init__.py +0 -4
- /ophyd_async/tango/{signal → core}/_tango_transport.py +0 -0
- {ophyd_async-0.8.0a4.dist-info → ophyd_async-0.8.0a6.dist-info}/LICENSE +0 -0
- {ophyd_async-0.8.0a4.dist-info → ophyd_async-0.8.0a6.dist-info}/entry_points.txt +0 -0
- {ophyd_async-0.8.0a4.dist-info → ophyd_async-0.8.0a6.dist-info}/top_level.txt +0 -0
ophyd_async/tango/demo/_mover.py
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import asyncio
|
|
2
|
+
from typing import Annotated as A
|
|
2
3
|
|
|
3
4
|
from bluesky.protocols import Movable, Stoppable
|
|
4
5
|
|
|
@@ -16,18 +17,18 @@ from ophyd_async.core import (
|
|
|
16
17
|
wait_for_value,
|
|
17
18
|
)
|
|
18
19
|
from ophyd_async.core import StandardReadableFormat as Format
|
|
19
|
-
from ophyd_async.tango import
|
|
20
|
+
from ophyd_async.tango.core import TangoPolling, TangoReadable
|
|
20
21
|
from tango import DevState
|
|
21
22
|
|
|
22
23
|
|
|
23
|
-
# Enable device level polling, useful for servers that do not support events
|
|
24
|
-
@tango_polling((0.1, 0.1, 0.1))
|
|
25
24
|
class TangoMover(TangoReadable, Movable, Stoppable):
|
|
26
25
|
# Enter the name and type of the signals you want to use
|
|
27
|
-
# If
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
26
|
+
# If the server doesn't support events, the TangoPolling annotation gives
|
|
27
|
+
# the parameters for ophyd to poll instead
|
|
28
|
+
position: A[SignalRW[float], TangoPolling(0.1, 0.1, 0.1)]
|
|
29
|
+
velocity: A[SignalRW[float], TangoPolling(0.1, 0.1, 0.1)]
|
|
30
|
+
state: A[SignalR[DevState], TangoPolling(0.1)]
|
|
31
|
+
# If a tango name clashes with a bluesky verb, add a trailing underscore
|
|
31
32
|
stop_: SignalX
|
|
32
33
|
|
|
33
34
|
def __init__(self, trl: str | None = "", name=""):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ophyd-async
|
|
3
|
-
Version: 0.8.
|
|
3
|
+
Version: 0.8.0a6
|
|
4
4
|
Summary: Asynchronous Bluesky hardware abstraction code, compatible with control systems like EPICS and Tango
|
|
5
5
|
Author-email: Tom Cobb <tom.cobb@diamond.ac.uk>
|
|
6
6
|
License: BSD 3-Clause License
|
|
@@ -40,62 +40,62 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
40
40
|
Requires-Python: >=3.10
|
|
41
41
|
Description-Content-Type: text/markdown
|
|
42
42
|
License-File: LICENSE
|
|
43
|
-
Requires-Dist: networkx
|
|
43
|
+
Requires-Dist: networkx>=2.0
|
|
44
44
|
Requires-Dist: numpy
|
|
45
45
|
Requires-Dist: packaging
|
|
46
46
|
Requires-Dist: pint
|
|
47
|
-
Requires-Dist: bluesky
|
|
48
|
-
Requires-Dist: event-model
|
|
49
|
-
Requires-Dist: p4p
|
|
47
|
+
Requires-Dist: bluesky>=1.13
|
|
48
|
+
Requires-Dist: event-model>=1.22.1
|
|
49
|
+
Requires-Dist: p4p>=4.2.0a3
|
|
50
50
|
Requires-Dist: pyyaml
|
|
51
51
|
Requires-Dist: colorlog
|
|
52
|
-
Requires-Dist: pydantic
|
|
52
|
+
Requires-Dist: pydantic>=2.0
|
|
53
53
|
Requires-Dist: pydantic-numpy
|
|
54
54
|
Provides-Extra: ca
|
|
55
|
-
Requires-Dist: aioca
|
|
56
|
-
Provides-Extra: dev
|
|
57
|
-
Requires-Dist: ophyd-async[pva] ; extra == 'dev'
|
|
58
|
-
Requires-Dist: ophyd-async[sim] ; extra == 'dev'
|
|
59
|
-
Requires-Dist: ophyd-async[ca] ; extra == 'dev'
|
|
60
|
-
Requires-Dist: ophyd-async[tango] ; extra == 'dev'
|
|
61
|
-
Requires-Dist: inflection ; extra == 'dev'
|
|
62
|
-
Requires-Dist: ipython ; extra == 'dev'
|
|
63
|
-
Requires-Dist: ipywidgets ; extra == 'dev'
|
|
64
|
-
Requires-Dist: matplotlib ; extra == 'dev'
|
|
65
|
-
Requires-Dist: myst-parser ; extra == 'dev'
|
|
66
|
-
Requires-Dist: numpydoc ; extra == 'dev'
|
|
67
|
-
Requires-Dist: ophyd ; extra == 'dev'
|
|
68
|
-
Requires-Dist: pickleshare ; extra == 'dev'
|
|
69
|
-
Requires-Dist: pipdeptree ; extra == 'dev'
|
|
70
|
-
Requires-Dist: pre-commit ; extra == 'dev'
|
|
71
|
-
Requires-Dist: pydata-sphinx-theme >=0.12 ; extra == 'dev'
|
|
72
|
-
Requires-Dist: pyepics >=3.4.2 ; extra == 'dev'
|
|
73
|
-
Requires-Dist: pyright ; extra == 'dev'
|
|
74
|
-
Requires-Dist: pyside6 ==6.7.0 ; extra == 'dev'
|
|
75
|
-
Requires-Dist: pytest ; extra == 'dev'
|
|
76
|
-
Requires-Dist: pytest-asyncio ; extra == 'dev'
|
|
77
|
-
Requires-Dist: pytest-cov ; extra == 'dev'
|
|
78
|
-
Requires-Dist: pytest-faulthandler ; extra == 'dev'
|
|
79
|
-
Requires-Dist: pytest-forked ; extra == 'dev'
|
|
80
|
-
Requires-Dist: pytest-rerunfailures ; extra == 'dev'
|
|
81
|
-
Requires-Dist: pytest-timeout ; extra == 'dev'
|
|
82
|
-
Requires-Dist: ruff ; extra == 'dev'
|
|
83
|
-
Requires-Dist: sphinx <7.4.0 ; extra == 'dev'
|
|
84
|
-
Requires-Dist: sphinx-autobuild ; extra == 'dev'
|
|
85
|
-
Requires-Dist: autodoc-pydantic ; extra == 'dev'
|
|
86
|
-
Requires-Dist: sphinxcontrib-mermaid ; extra == 'dev'
|
|
87
|
-
Requires-Dist: sphinx-copybutton ; extra == 'dev'
|
|
88
|
-
Requires-Dist: sphinx-design ; extra == 'dev'
|
|
89
|
-
Requires-Dist: super-state-machine ; extra == 'dev'
|
|
90
|
-
Requires-Dist: tox-direct ; extra == 'dev'
|
|
91
|
-
Requires-Dist: types-mock ; extra == 'dev'
|
|
92
|
-
Requires-Dist: types-pyyaml ; extra == 'dev'
|
|
55
|
+
Requires-Dist: aioca>=1.6; extra == "ca"
|
|
93
56
|
Provides-Extra: pva
|
|
94
|
-
Requires-Dist: p4p
|
|
57
|
+
Requires-Dist: p4p; extra == "pva"
|
|
95
58
|
Provides-Extra: sim
|
|
96
|
-
Requires-Dist: h5py
|
|
59
|
+
Requires-Dist: h5py; extra == "sim"
|
|
97
60
|
Provides-Extra: tango
|
|
98
|
-
Requires-Dist: pytango
|
|
61
|
+
Requires-Dist: pytango>=10.0.0; extra == "tango"
|
|
62
|
+
Provides-Extra: dev
|
|
63
|
+
Requires-Dist: ophyd_async[pva]; extra == "dev"
|
|
64
|
+
Requires-Dist: ophyd_async[sim]; extra == "dev"
|
|
65
|
+
Requires-Dist: ophyd_async[ca]; extra == "dev"
|
|
66
|
+
Requires-Dist: ophyd_async[tango]; extra == "dev"
|
|
67
|
+
Requires-Dist: inflection; extra == "dev"
|
|
68
|
+
Requires-Dist: ipython; extra == "dev"
|
|
69
|
+
Requires-Dist: ipywidgets; extra == "dev"
|
|
70
|
+
Requires-Dist: matplotlib; extra == "dev"
|
|
71
|
+
Requires-Dist: myst-parser; extra == "dev"
|
|
72
|
+
Requires-Dist: numpydoc; extra == "dev"
|
|
73
|
+
Requires-Dist: ophyd; extra == "dev"
|
|
74
|
+
Requires-Dist: pickleshare; extra == "dev"
|
|
75
|
+
Requires-Dist: pipdeptree; extra == "dev"
|
|
76
|
+
Requires-Dist: pre-commit; extra == "dev"
|
|
77
|
+
Requires-Dist: pydata-sphinx-theme>=0.12; extra == "dev"
|
|
78
|
+
Requires-Dist: pyepics>=3.4.2; extra == "dev"
|
|
79
|
+
Requires-Dist: pyright; extra == "dev"
|
|
80
|
+
Requires-Dist: pyside6==6.7.0; extra == "dev"
|
|
81
|
+
Requires-Dist: pytest; extra == "dev"
|
|
82
|
+
Requires-Dist: pytest-asyncio; extra == "dev"
|
|
83
|
+
Requires-Dist: pytest-cov; extra == "dev"
|
|
84
|
+
Requires-Dist: pytest-faulthandler; extra == "dev"
|
|
85
|
+
Requires-Dist: pytest-forked; extra == "dev"
|
|
86
|
+
Requires-Dist: pytest-rerunfailures; extra == "dev"
|
|
87
|
+
Requires-Dist: pytest-timeout; extra == "dev"
|
|
88
|
+
Requires-Dist: ruff; extra == "dev"
|
|
89
|
+
Requires-Dist: sphinx<7.4.0; extra == "dev"
|
|
90
|
+
Requires-Dist: sphinx-autobuild; extra == "dev"
|
|
91
|
+
Requires-Dist: autodoc-pydantic; extra == "dev"
|
|
92
|
+
Requires-Dist: sphinxcontrib-mermaid; extra == "dev"
|
|
93
|
+
Requires-Dist: sphinx-copybutton; extra == "dev"
|
|
94
|
+
Requires-Dist: sphinx-design; extra == "dev"
|
|
95
|
+
Requires-Dist: super_state_machine; extra == "dev"
|
|
96
|
+
Requires-Dist: tox-direct; extra == "dev"
|
|
97
|
+
Requires-Dist: types-mock; extra == "dev"
|
|
98
|
+
Requires-Dist: types-pyyaml; extra == "dev"
|
|
99
99
|
|
|
100
100
|
[](https://github.com/bluesky/ophyd-async/actions/workflows/ci.yml)
|
|
101
101
|
[](https://codecov.io/gh/bluesky/ophyd-async)
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
ophyd_async/__init__.py,sha256=tEfgj45lRItQ-_u8SRFPM-mpBh3gWvHXr3emhiJJG_M,225
|
|
2
2
|
ophyd_async/__main__.py,sha256=n_U4O9bgm97OuboUB_9eK7eFiwy8BZSgXJ0OzbE0DqU,481
|
|
3
|
-
ophyd_async/_version.py,sha256=
|
|
3
|
+
ophyd_async/_version.py,sha256=ZD22enHN3Ksu7M8yQMQARN-EdJEmdiwqlIccg7HRQDs,413
|
|
4
4
|
ophyd_async/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
-
ophyd_async/core/__init__.py,sha256=
|
|
5
|
+
ophyd_async/core/__init__.py,sha256=aJP0ZNIVvfbodCpUQUHXidz18W02hI2nvYhFS4Ubq1g,4339
|
|
6
6
|
ophyd_async/core/_detector.py,sha256=bKLekM2J3GzLXsKwe8qXQjNP_sAVsa8EtwFEWD-8MeA,14307
|
|
7
|
-
ophyd_async/core/_device.py,sha256=
|
|
7
|
+
ophyd_async/core/_device.py,sha256=ygXxDKiTO43qDnLeLzrKKyABwlrfGvSVii7PHyCIjHg,12074
|
|
8
8
|
ophyd_async/core/_device_filler.py,sha256=Nw-DUyuXYpvt4mmCAQaNVA0LFBBaPK84ubZo3bR39Ak,11407
|
|
9
9
|
ophyd_async/core/_device_save_loader.py,sha256=OViN9_LWNOLuajzrHDKYEqd5I47u5npQACdGceKcIGY,8375
|
|
10
10
|
ophyd_async/core/_flyer.py,sha256=us5z6MNGCvIfgPDTmFTxNERSP37g0WVRkRD0Z2JiMgM,1701
|
|
@@ -15,12 +15,12 @@ ophyd_async/core/_mock_signal_utils.py,sha256=YeKjStClwp1etlmHMx1tb_VV1GjeFPg83H
|
|
|
15
15
|
ophyd_async/core/_protocol.py,sha256=MuYRqSfakdry9RllX7G9UTzp4lw3eDjtkdGPpnbNb34,4040
|
|
16
16
|
ophyd_async/core/_providers.py,sha256=ff9ZT5-PZ6rhTTdE-q8w9l_k9DuZqLWLebsKZLeJ0Ds,7112
|
|
17
17
|
ophyd_async/core/_readable.py,sha256=7FxqxhAT1wBQqOEivgnY731zA9QoK1Tt-ZGcH7GBOXM,10623
|
|
18
|
-
ophyd_async/core/_signal.py,sha256=
|
|
18
|
+
ophyd_async/core/_signal.py,sha256=Mp8hmod7nBzWsf9N-Q4fWexRGF7hKtyQUAJlgAYUKKY,22358
|
|
19
19
|
ophyd_async/core/_signal_backend.py,sha256=YWPgLSPbfPnWIUDHvP1ArCVK8zKXJxzzbloqQe_ucCI,5040
|
|
20
|
-
ophyd_async/core/_soft_signal_backend.py,sha256=
|
|
20
|
+
ophyd_async/core/_soft_signal_backend.py,sha256=w9zzD4eoD9SsJpORXNSaFOLJrD6biYBbCSVAybLa_7k,5926
|
|
21
21
|
ophyd_async/core/_status.py,sha256=OUKhblRQ4KU5PDsWbpvYduM7G60JMk1NqeV4eqyPtKc,5131
|
|
22
|
-
ophyd_async/core/_table.py,sha256=
|
|
23
|
-
ophyd_async/core/_utils.py,sha256=
|
|
22
|
+
ophyd_async/core/_table.py,sha256=tNu396gDGjpX1xUBQXgKI7aiDugaBl2McH_kVZPn_kQ,5535
|
|
23
|
+
ophyd_async/core/_utils.py,sha256=wzzGL7yPAMuPueGOG1cpTgh0vho5YxI86m8SSX7Z9hw,9494
|
|
24
24
|
ophyd_async/epics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
25
|
ophyd_async/epics/motor.py,sha256=pujJXV_vslvo3AxsVySTAEoFuduuv5Hp6sz8aRvIbeQ,8792
|
|
26
26
|
ophyd_async/epics/signal.py,sha256=hJCGIIWjRVhjEHkeL1I_oPEaaN7dDFKmm7G7ZmgoTYQ,219
|
|
@@ -30,7 +30,7 @@ ophyd_async/epics/adaravis/_aravis_controller.py,sha256=t4vuMsQ_67tNsAYPFFtBKq3Y
|
|
|
30
30
|
ophyd_async/epics/adaravis/_aravis_io.py,sha256=KCfylSNGN7rC6W4uJDCVtaQ4-o5_FR_bTyTDXnhmMt4,1603
|
|
31
31
|
ophyd_async/epics/adcore/__init__.py,sha256=3wMOyFGaq1X61LqK4iY4pq-m_BjhOgYZD2-mNCAjpzk,1086
|
|
32
32
|
ophyd_async/epics/adcore/_core_io.py,sha256=ZQjRLdpFMVS9kwEm5LAh60pxiy7XWyYtc2TzEvCEVYM,6076
|
|
33
|
-
ophyd_async/epics/adcore/_core_logic.py,sha256=
|
|
33
|
+
ophyd_async/epics/adcore/_core_logic.py,sha256=_RJELnIeoAceqVoLolCnhBH0XAbTKxuCzH9QJ1gqOs0,3606
|
|
34
34
|
ophyd_async/epics/adcore/_hdf_writer.py,sha256=eWT9SH7uegf9rpCWRmVCZTsOxF1drPaOAMmoXm99mVk,7215
|
|
35
35
|
ophyd_async/epics/adcore/_single_trigger.py,sha256=7SzmadatWk4zXIweRIhVX5odc__ZZKuGicL7vlW0JbY,1208
|
|
36
36
|
ophyd_async/epics/adcore/_utils.py,sha256=MZBKeSPIRzyo6f84MpzPp28KwOLa9qgrkMIFc618wOE,3932
|
|
@@ -50,10 +50,10 @@ ophyd_async/epics/advimba/_vimba.py,sha256=E_RJ0uJQt-RWAY7uFTNkHaOdGYS5sa7ZbRgAe
|
|
|
50
50
|
ophyd_async/epics/advimba/_vimba_controller.py,sha256=Ej7irxTab9cfjmqz4G4Zxv3CjhJw_eRmIb3E62YWh6g,2226
|
|
51
51
|
ophyd_async/epics/advimba/_vimba_io.py,sha256=F3KUzMN-GMe637za-iRVGGTt8v9F1a79fRcl3MCkfXA,1864
|
|
52
52
|
ophyd_async/epics/core/__init__.py,sha256=8NoQxEEc2Ny_L9nrD2fnGSf_2gJr1wCR1LwUeLNcIJo,588
|
|
53
|
-
ophyd_async/epics/core/_aioca.py,sha256=
|
|
53
|
+
ophyd_async/epics/core/_aioca.py,sha256=iQWiHWYbMJLa7qeBrCz4_e16Y8A-NYYi6oYNi8oOFVY,11617
|
|
54
54
|
ophyd_async/epics/core/_epics_connector.py,sha256=n1FlQYui8HdobPxaX3VAflrzi2UT7QCe3cFasssmVLw,1789
|
|
55
55
|
ophyd_async/epics/core/_epics_device.py,sha256=kshNiKQhevsL2OZXa-r093L_sQGvGK_0J4PWVLg3Eqw,437
|
|
56
|
-
ophyd_async/epics/core/_p4p.py,sha256=
|
|
56
|
+
ophyd_async/epics/core/_p4p.py,sha256=S6zXXApRF0454aOcxUI_cd7Y7tXiOnss_ODhjjk0PMo,14691
|
|
57
57
|
ophyd_async/epics/core/_pvi_connector.py,sha256=Rjc8g3Rdny_O-4JxhoCpD4L7XWIRq-lnGHXKpsIUrSU,3621
|
|
58
58
|
ophyd_async/epics/core/_signal.py,sha256=jHdMXV1-0bd7PC8XV32Sso1xgubZVDhWFNsWV-UuamQ,4642
|
|
59
59
|
ophyd_async/epics/core/_util.py,sha256=6CCWDfp54WeBIJdGjg_YBVZTKoNjponWyykMmLPrj7U,1820
|
|
@@ -64,9 +64,14 @@ ophyd_async/epics/demo/mover.db,sha256=RFz0rxZue689Wh1sWTZwWeFMUrH04ttPq2u5xJH_F
|
|
|
64
64
|
ophyd_async/epics/demo/sensor.db,sha256=AstyG9E0R4KZBz2FZQSrV_QlrfLoU6M2cvYc15Lf548,553
|
|
65
65
|
ophyd_async/epics/eiger/__init__.py,sha256=b3Tt4pVLk23Giyj50R4e94d2MxWDDmNHWhWwNq2jlaw,221
|
|
66
66
|
ophyd_async/epics/eiger/_eiger.py,sha256=hkMsjVwrzDcE1u5BRIQtn8RSR2e0b1JMpDvuIONoNaI,1133
|
|
67
|
-
ophyd_async/epics/eiger/_eiger_controller.py,sha256=
|
|
67
|
+
ophyd_async/epics/eiger/_eiger_controller.py,sha256=u7T5--97VLm3pbz3E3Lxumb7hzKLzUN18wDtRj_AVZA,2343
|
|
68
68
|
ophyd_async/epics/eiger/_eiger_io.py,sha256=0iimpsa8TI2mJ8hTolQByIhdeKltUGcg6aEkY5GwIyQ,1806
|
|
69
69
|
ophyd_async/epics/eiger/_odin_io.py,sha256=3E33ysvMlf8t0bbSVPnzUrvPgUwA7491uoViWpivpf8,4153
|
|
70
|
+
ophyd_async/epics/testing/__init__.py,sha256=terWt7TtNaxk4dCdAGQs-7HM2Z7Vcy34eX6kcngDbi8,498
|
|
71
|
+
ophyd_async/epics/testing/_example_ioc.py,sha256=C0fDqsjpCbD_XaqZ6ti_t-SJTr2vsjt356PJqK1WC4Y,3377
|
|
72
|
+
ophyd_async/epics/testing/_utils.py,sha256=-D6aKJydhM-n6290DyyKlnwCHFkbQ-j4tu5AD2JjWZ0,2443
|
|
73
|
+
ophyd_async/epics/testing/test_records.db,sha256=zbucdyUKYOTQAkF-u8dei08VCrrX7LlDyQd1zKTLQ-w,3078
|
|
74
|
+
ophyd_async/epics/testing/test_records_pva.db,sha256=NyceNGaCZXNYaXjH2VLhvKl8Z-L6dwfE_kYZKqdIcTU,4054
|
|
70
75
|
ophyd_async/fastcs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
71
76
|
ophyd_async/fastcs/core.py,sha256=kykwmblZfj9xfakL8FTAqmPmPA8qRbQ90OS3d8WLyto,342
|
|
72
77
|
ophyd_async/fastcs/odin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -74,12 +79,12 @@ ophyd_async/fastcs/panda/__init__.py,sha256=_o7n7ckoTM6hTRHpLphpL7r_9sADE59MRNM0
|
|
|
74
79
|
ophyd_async/fastcs/panda/_block.py,sha256=STQo6NJAqIVfxyMf-2pxINPyr9_nKtXSdicp92a25xo,1709
|
|
75
80
|
ophyd_async/fastcs/panda/_control.py,sha256=61vcJMjYQiUGAM5J0SfkfthFs7U28m9Pe9mgmGGf0-w,1021
|
|
76
81
|
ophyd_async/fastcs/panda/_hdf_panda.py,sha256=WdgWgdrU2yT4keH70VG-ZBVOmT-IpKVyukEuKk7QnJs,1049
|
|
77
|
-
ophyd_async/fastcs/panda/_table.py,sha256=
|
|
82
|
+
ophyd_async/fastcs/panda/_table.py,sha256=5YyAfsl3H7kxH3bDjUKHuH9DyrWQmAn9dv-v0NYzFNo,2289
|
|
78
83
|
ophyd_async/fastcs/panda/_trigger.py,sha256=forImtdnDnaZ0KKhqSxCqwHWXq13SJ4mn9wdM4yqNLY,3056
|
|
79
84
|
ophyd_async/fastcs/panda/_utils.py,sha256=NdvzdKy0SOG1eCVMQo_nwRXpBo0wyi6lM5Xw3HvssOw,508
|
|
80
85
|
ophyd_async/fastcs/panda/_writer.py,sha256=wDN6uWX1ENofmI3JBXJ7_CGooI7WsZP-JJQrRiSc6sM,6000
|
|
81
86
|
ophyd_async/plan_stubs/__init__.py,sha256=wjpEj_BoBZJ9x2fhUPY6BzWMqyYH96JrBlJvV7frdN4,524
|
|
82
|
-
ophyd_async/plan_stubs/_ensure_connected.py,sha256=
|
|
87
|
+
ophyd_async/plan_stubs/_ensure_connected.py,sha256=uoqfAzghjifdfD_JM860TvMvj9T2Y12nKPvtI5l6zZc,1021
|
|
83
88
|
ophyd_async/plan_stubs/_fly.py,sha256=WxghBAHsF-8xFrILCm44jeHIu9udLhm-tj4JXd9kZjY,6208
|
|
84
89
|
ophyd_async/plan_stubs/_nd_attributes.py,sha256=TVfy3bhnrLFBXZ6b2bREBj0LzEviEGzuGvgWK3I7tII,2198
|
|
85
90
|
ophyd_async/sim/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -91,22 +96,21 @@ ophyd_async/sim/demo/_pattern_detector/_pattern_detector_controller.py,sha256=Hq
|
|
|
91
96
|
ophyd_async/sim/demo/_pattern_detector/_pattern_detector_writer.py,sha256=nQOks4EK1Ax0Ib1pkCrmJPF8Jqr7tPusMnby-HGUnP0,1370
|
|
92
97
|
ophyd_async/sim/demo/_pattern_detector/_pattern_generator.py,sha256=gP0Q1-1p_3KOH7mWZc5m-8OUEx_jb7SAdRXcpleRqX4,7096
|
|
93
98
|
ophyd_async/sim/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
94
|
-
ophyd_async/tango/__init__.py,sha256=
|
|
95
|
-
ophyd_async/tango/
|
|
96
|
-
ophyd_async/tango/
|
|
97
|
-
ophyd_async/tango/
|
|
99
|
+
ophyd_async/tango/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
100
|
+
ophyd_async/tango/core/__init__.py,sha256=pBslTNkIt22-g-CDbG9N7pKLQVJqFe6DYXHFFYJZIo8,905
|
|
101
|
+
ophyd_async/tango/core/_base_device.py,sha256=IN1HF1DOf9W9_FhVlzWyuU58gBFu86rYOD1vDZ_a7Wc,4717
|
|
102
|
+
ophyd_async/tango/core/_signal.py,sha256=5ks0dyzCX66cV9R_CnmM949H1RzNQH3Q1XIUhHQCOaI,6421
|
|
103
|
+
ophyd_async/tango/core/_tango_readable.py,sha256=c6xVH56oBp5o3C3y3PuHA5MftvmjKm20BBvrgsTO260,913
|
|
104
|
+
ophyd_async/tango/core/_tango_transport.py,sha256=DVTdLu8C19k-QzYaKUzFK2WMbaSd6dIO77k99ugD8U4,28990
|
|
98
105
|
ophyd_async/tango/demo/__init__.py,sha256=_j-UicTnckuIBp8PnieFMOMnLFGivnaKdmo9o0hYtzc,256
|
|
99
|
-
ophyd_async/tango/demo/_counter.py,sha256=
|
|
106
|
+
ophyd_async/tango/demo/_counter.py,sha256=efBqrFj6ejzDh1aggtPXpn1iub1zB4XocRvHqBEiwcs,1105
|
|
100
107
|
ophyd_async/tango/demo/_detector.py,sha256=0wwk7Y-Dl9QF1YsCIU_BxqI6-PQ40qN_0gknrYBkxsY,1292
|
|
101
|
-
ophyd_async/tango/demo/_mover.py,sha256=
|
|
108
|
+
ophyd_async/tango/demo/_mover.py,sha256=c5whb380th1eCThs35ftW1bfNRyYRmcofg7xUp6zvV8,2837
|
|
102
109
|
ophyd_async/tango/demo/_tango/__init__.py,sha256=FfONT7vM49nNo3a1Lv-LcMZO9EHv6bv91yY-RnxIib4,85
|
|
103
110
|
ophyd_async/tango/demo/_tango/_servers.py,sha256=MwkkoZWJQm_cgafCBBXeQfwyAiOgU8cE90_uNfcdcGA,2916
|
|
104
|
-
ophyd_async/
|
|
105
|
-
ophyd_async/
|
|
106
|
-
ophyd_async/
|
|
107
|
-
ophyd_async-0.8.
|
|
108
|
-
ophyd_async-0.8.
|
|
109
|
-
ophyd_async-0.8.
|
|
110
|
-
ophyd_async-0.8.0a4.dist-info/entry_points.txt,sha256=O0YNJTEufO0w9BozXi-JurTy2U1_o0ypeCgJLQ727Jk,58
|
|
111
|
-
ophyd_async-0.8.0a4.dist-info/top_level.txt,sha256=-hjorMsv5Rmjo3qrgqhjpal1N6kW5vMxZO3lD4iEaXs,12
|
|
112
|
-
ophyd_async-0.8.0a4.dist-info/RECORD,,
|
|
111
|
+
ophyd_async-0.8.0a6.dist-info/LICENSE,sha256=pU5shZcsvWgz701EbT7yjFZ8rMvZcWgRH54CRt8ld_c,1517
|
|
112
|
+
ophyd_async-0.8.0a6.dist-info/METADATA,sha256=s3TuMMjVrTqzvsxEL-YjmsaSA41eN1hqy16TDEPMPCM,6657
|
|
113
|
+
ophyd_async-0.8.0a6.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
114
|
+
ophyd_async-0.8.0a6.dist-info/entry_points.txt,sha256=O0YNJTEufO0w9BozXi-JurTy2U1_o0ypeCgJLQ727Jk,58
|
|
115
|
+
ophyd_async-0.8.0a6.dist-info/top_level.txt,sha256=-hjorMsv5Rmjo3qrgqhjpal1N6kW5vMxZO3lD4iEaXs,12
|
|
116
|
+
ophyd_async-0.8.0a6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|