ophyd-async 0.5.0__py3-none-any.whl → 0.5.2__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 +2 -2
- ophyd_async/core/__init__.py +6 -3
- ophyd_async/core/_detector.py +38 -28
- ophyd_async/core/_hdf_dataset.py +1 -5
- ophyd_async/core/_mock_signal_utils.py +4 -3
- ophyd_async/core/_providers.py +30 -39
- ophyd_async/core/_signal.py +73 -28
- ophyd_async/core/_status.py +17 -1
- ophyd_async/epics/adaravis/_aravis.py +1 -1
- ophyd_async/epics/adcore/__init__.py +16 -5
- ophyd_async/epics/adcore/_core_io.py +29 -5
- ophyd_async/epics/adcore/_core_logic.py +7 -4
- ophyd_async/epics/adcore/_hdf_writer.py +51 -33
- ophyd_async/epics/adcore/_utils.py +69 -70
- ophyd_async/epics/adkinetix/_kinetix.py +1 -1
- ophyd_async/epics/adkinetix/_kinetix_io.py +4 -1
- ophyd_async/epics/adpilatus/_pilatus.py +1 -1
- ophyd_async/epics/adpilatus/_pilatus_controller.py +1 -1
- ophyd_async/epics/adpilatus/_pilatus_io.py +1 -1
- ophyd_async/epics/adsimdetector/_sim.py +1 -1
- ophyd_async/epics/advimba/_vimba.py +1 -1
- ophyd_async/epics/advimba/_vimba_controller.py +3 -3
- ophyd_async/epics/advimba/_vimba_io.py +6 -4
- ophyd_async/epics/eiger/__init__.py +5 -0
- ophyd_async/epics/eiger/_eiger.py +43 -0
- ophyd_async/epics/eiger/_eiger_controller.py +66 -0
- ophyd_async/epics/eiger/_eiger_io.py +42 -0
- ophyd_async/epics/eiger/_odin_io.py +125 -0
- ophyd_async/epics/motor.py +16 -3
- ophyd_async/epics/signal/_aioca.py +12 -5
- ophyd_async/epics/signal/_common.py +1 -1
- ophyd_async/epics/signal/_p4p.py +14 -11
- ophyd_async/fastcs/panda/__init__.py +3 -3
- ophyd_async/fastcs/panda/{_common_blocks.py → _block.py} +2 -0
- ophyd_async/fastcs/panda/{_panda_controller.py → _control.py} +1 -1
- ophyd_async/fastcs/panda/_hdf_panda.py +4 -4
- ophyd_async/fastcs/panda/_trigger.py +1 -1
- ophyd_async/fastcs/panda/{_hdf_writer.py → _writer.py} +29 -22
- ophyd_async/plan_stubs/__init__.py +3 -0
- ophyd_async/plan_stubs/_nd_attributes.py +63 -0
- ophyd_async/sim/demo/_pattern_detector/_pattern_detector_controller.py +5 -2
- ophyd_async/sim/demo/_pattern_detector/_pattern_generator.py +1 -3
- {ophyd_async-0.5.0.dist-info → ophyd_async-0.5.2.dist-info}/METADATA +46 -44
- {ophyd_async-0.5.0.dist-info → ophyd_async-0.5.2.dist-info}/RECORD +48 -42
- {ophyd_async-0.5.0.dist-info → ophyd_async-0.5.2.dist-info}/WHEEL +1 -1
- {ophyd_async-0.5.0.dist-info → ophyd_async-0.5.2.dist-info}/LICENSE +0 -0
- {ophyd_async-0.5.0.dist-info → ophyd_async-0.5.2.dist-info}/entry_points.txt +0 -0
- {ophyd_async-0.5.0.dist-info → ophyd_async-0.5.2.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ophyd-async
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.2
|
|
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,59 +40,61 @@ 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
|
|
44
|
-
Requires-Dist: numpy
|
|
43
|
+
Requires-Dist: networkx>=2.0
|
|
44
|
+
Requires-Dist: numpy<2.0.0
|
|
45
45
|
Requires-Dist: packaging
|
|
46
46
|
Requires-Dist: pint
|
|
47
|
-
Requires-Dist: bluesky
|
|
47
|
+
Requires-Dist: bluesky>=1.13.0a3
|
|
48
48
|
Requires-Dist: event-model
|
|
49
49
|
Requires-Dist: p4p
|
|
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
|
|
55
|
+
Requires-Dist: aioca>=1.6; extra == "ca"
|
|
56
56
|
Provides-Extra: dev
|
|
57
|
-
Requires-Dist: ophyd-async[pva]
|
|
58
|
-
Requires-Dist: ophyd-async[
|
|
59
|
-
Requires-Dist:
|
|
60
|
-
Requires-Dist:
|
|
61
|
-
Requires-Dist: flake8
|
|
62
|
-
Requires-Dist:
|
|
63
|
-
Requires-Dist:
|
|
64
|
-
Requires-Dist: inflection
|
|
65
|
-
Requires-Dist: ipython
|
|
66
|
-
Requires-Dist: ipywidgets
|
|
67
|
-
Requires-Dist: matplotlib
|
|
68
|
-
Requires-Dist: myst-parser
|
|
69
|
-
Requires-Dist: numpydoc
|
|
70
|
-
Requires-Dist: ophyd
|
|
71
|
-
Requires-Dist: pickleshare
|
|
72
|
-
Requires-Dist: pipdeptree
|
|
73
|
-
Requires-Dist: pre-commit
|
|
74
|
-
Requires-Dist: pydata-sphinx-theme
|
|
75
|
-
Requires-Dist: pyepics
|
|
76
|
-
Requires-Dist: pyside6
|
|
77
|
-
Requires-Dist: pytest
|
|
78
|
-
Requires-Dist: pytest-asyncio
|
|
79
|
-
Requires-Dist: pytest-cov
|
|
80
|
-
Requires-Dist: pytest-faulthandler
|
|
81
|
-
Requires-Dist: pytest-rerunfailures
|
|
82
|
-
Requires-Dist: pytest-timeout
|
|
83
|
-
Requires-Dist: ruff
|
|
84
|
-
Requires-Dist: sphinx
|
|
85
|
-
Requires-Dist: sphinx-autobuild
|
|
86
|
-
Requires-Dist: autodoc-pydantic
|
|
87
|
-
Requires-Dist: sphinxcontrib-mermaid
|
|
88
|
-
Requires-Dist: sphinx-copybutton
|
|
89
|
-
Requires-Dist: sphinx-design
|
|
90
|
-
Requires-Dist: super-state-machine
|
|
91
|
-
Requires-Dist: tox-direct
|
|
92
|
-
Requires-Dist: types-mock
|
|
93
|
-
Requires-Dist: types-pyyaml
|
|
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: black; extra == "dev"
|
|
61
|
+
Requires-Dist: flake8; extra == "dev"
|
|
62
|
+
Requires-Dist: flake8-isort; extra == "dev"
|
|
63
|
+
Requires-Dist: Flake8-pyproject; extra == "dev"
|
|
64
|
+
Requires-Dist: inflection; extra == "dev"
|
|
65
|
+
Requires-Dist: ipython; extra == "dev"
|
|
66
|
+
Requires-Dist: ipywidgets; extra == "dev"
|
|
67
|
+
Requires-Dist: matplotlib; extra == "dev"
|
|
68
|
+
Requires-Dist: myst-parser; extra == "dev"
|
|
69
|
+
Requires-Dist: numpydoc; extra == "dev"
|
|
70
|
+
Requires-Dist: ophyd; extra == "dev"
|
|
71
|
+
Requires-Dist: pickleshare; extra == "dev"
|
|
72
|
+
Requires-Dist: pipdeptree; extra == "dev"
|
|
73
|
+
Requires-Dist: pre-commit; extra == "dev"
|
|
74
|
+
Requires-Dist: pydata-sphinx-theme>=0.12; extra == "dev"
|
|
75
|
+
Requires-Dist: pyepics>=3.4.2; extra == "dev"
|
|
76
|
+
Requires-Dist: pyside6==6.7.0; extra == "dev"
|
|
77
|
+
Requires-Dist: pytest; extra == "dev"
|
|
78
|
+
Requires-Dist: pytest-asyncio; extra == "dev"
|
|
79
|
+
Requires-Dist: pytest-cov; extra == "dev"
|
|
80
|
+
Requires-Dist: pytest-faulthandler; extra == "dev"
|
|
81
|
+
Requires-Dist: pytest-rerunfailures; extra == "dev"
|
|
82
|
+
Requires-Dist: pytest-timeout; extra == "dev"
|
|
83
|
+
Requires-Dist: ruff; extra == "dev"
|
|
84
|
+
Requires-Dist: sphinx<7.4.0; extra == "dev"
|
|
85
|
+
Requires-Dist: sphinx-autobuild; extra == "dev"
|
|
86
|
+
Requires-Dist: autodoc-pydantic; extra == "dev"
|
|
87
|
+
Requires-Dist: sphinxcontrib-mermaid; extra == "dev"
|
|
88
|
+
Requires-Dist: sphinx-copybutton; extra == "dev"
|
|
89
|
+
Requires-Dist: sphinx-design; extra == "dev"
|
|
90
|
+
Requires-Dist: super-state-machine; extra == "dev"
|
|
91
|
+
Requires-Dist: tox-direct; extra == "dev"
|
|
92
|
+
Requires-Dist: types-mock; extra == "dev"
|
|
93
|
+
Requires-Dist: types-pyyaml; extra == "dev"
|
|
94
94
|
Provides-Extra: pva
|
|
95
|
-
Requires-Dist: p4p
|
|
95
|
+
Requires-Dist: p4p; extra == "pva"
|
|
96
|
+
Provides-Extra: sim
|
|
97
|
+
Requires-Dist: h5py; extra == "sim"
|
|
96
98
|
|
|
97
99
|
[](https://github.com/bluesky/ophyd-async/actions/workflows/ci.yml)
|
|
98
100
|
[](https://codecov.io/gh/bluesky/ophyd-async)
|
|
@@ -1,89 +1,95 @@
|
|
|
1
1
|
ophyd_async/__init__.py,sha256=v-rRiDOgZ3sQSMQKq0vgUQZvpeOkoHFXissAx6Ktg84,61
|
|
2
2
|
ophyd_async/__main__.py,sha256=G-Zcv_G9zK7Nhx6o5L5w-wyhMxdl_WgyMELu8IMFqAE,328
|
|
3
|
-
ophyd_async/_version.py,sha256=
|
|
4
|
-
ophyd_async/core/__init__.py,sha256=
|
|
5
|
-
ophyd_async/core/_detector.py,sha256=
|
|
3
|
+
ophyd_async/_version.py,sha256=9wH2PDsTkkxdqSU9YziEjDTHYLEcKPSYr6RofNSEaJk,411
|
|
4
|
+
ophyd_async/core/__init__.py,sha256=Ci9J1fxdaUHT45gRQNxzNEqEdbI6xBseSUrFcOIhhlg,3793
|
|
5
|
+
ophyd_async/core/_detector.py,sha256=n5MKTVAzTHVUWH5ZMxcSq7u4qP2nAGemaPyGrPAZQq4,11811
|
|
6
6
|
ophyd_async/core/_device.py,sha256=DDdRujYLCDSuGDB0gqElkzI0qEGb3sMlFP6FgmH2u3A,7554
|
|
7
7
|
ophyd_async/core/_device_save_loader.py,sha256=pTom5EOFa9_5Z3bV37zOnbGx2ujWIOl_D9PVYhpY1FY,8232
|
|
8
8
|
ophyd_async/core/_flyer.py,sha256=8_N9u6s2P9qPZmNtHFfdmFv8FD7sKrKb9-IuvNUVHPw,2267
|
|
9
|
-
ophyd_async/core/_hdf_dataset.py,sha256=
|
|
9
|
+
ophyd_async/core/_hdf_dataset.py,sha256=H3fFzsnLc7BwPgmDP7P9emQ5u6f0GFQ16Myj6qWxQq0,2430
|
|
10
10
|
ophyd_async/core/_log.py,sha256=Hsk2Iwx81n3HpxNR30xGTnLJh_lPGd_CGy2MI3OGpWs,3588
|
|
11
11
|
ophyd_async/core/_mock_signal_backend.py,sha256=M_I2LxxJrJmBAbmILjVoAR6E2U8K2UswvHGiHluMqHc,2799
|
|
12
|
-
ophyd_async/core/_mock_signal_utils.py,sha256=
|
|
12
|
+
ophyd_async/core/_mock_signal_utils.py,sha256=LTrmjQTqvP4yY2bsaOmfLNJAegD850_BNZ6Y8uY5XPQ,4717
|
|
13
13
|
ophyd_async/core/_protocol.py,sha256=aRoqet0ThyVK_wrULh4k_StnpeHnNhXc0YffWdRJNZw,3391
|
|
14
|
-
ophyd_async/core/_providers.py,sha256
|
|
14
|
+
ophyd_async/core/_providers.py,sha256=unFdSAm5Hz4B6s3WSSGRCZo0l9FYMbJwI7DOBIAI_n4,7148
|
|
15
15
|
ophyd_async/core/_readable.py,sha256=WayM35JOJj732-YgvGsjUSlCZwZ_zq1zbAmk-1U0uwU,8998
|
|
16
|
-
ophyd_async/core/_signal.py,sha256=
|
|
16
|
+
ophyd_async/core/_signal.py,sha256=MzB2KGHogo2mKeSHRkqyAiELv22xnnkPuroXU-RuMWI,19609
|
|
17
17
|
ophyd_async/core/_signal_backend.py,sha256=-Vze8-57W0jpcC4gq4P4rZpXXJvi2qrbu0A8AjqA594,2638
|
|
18
18
|
ophyd_async/core/_soft_signal_backend.py,sha256=Z4LiADd9xKrxhhPOx8q5xq4yrJRdJbfuKeB0o2wBjCk,6653
|
|
19
|
-
ophyd_async/core/_status.py,sha256=
|
|
19
|
+
ophyd_async/core/_status.py,sha256=lnhy-gt2XV8ZE0EuzrDddHCEYuoquBI5ovTOJxwtSYk,4526
|
|
20
20
|
ophyd_async/core/_utils.py,sha256=3oZcXNqAUHX4ZWMBH5gSuK6cFWEhSkZ9GSDYv0pf8jc,5783
|
|
21
21
|
ophyd_async/epics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
|
-
ophyd_async/epics/motor.py,sha256=
|
|
22
|
+
ophyd_async/epics/motor.py,sha256=x9ysc5tLqJiVYYqyhEd5ornEYQ5aQamg7pB4e5ygwR4,8776
|
|
23
23
|
ophyd_async/epics/adaravis/__init__.py,sha256=u979_9nQTYB0TvDOTXFN4qMrbDP8-xQFfXYMGzLVBo4,207
|
|
24
|
-
ophyd_async/epics/adaravis/_aravis.py,sha256=
|
|
24
|
+
ophyd_async/epics/adaravis/_aravis.py,sha256=XBuLQBZYj2tptY39bVzXjl6t-ZpPwqrUOwpR54l-hSo,1952
|
|
25
25
|
ophyd_async/epics/adaravis/_aravis_controller.py,sha256=SzyajBNoqvBOUVtNE0t8ghffY2pYP8U99XgQ-4u2pVI,2635
|
|
26
26
|
ophyd_async/epics/adaravis/_aravis_io.py,sha256=GY2thPUJ-6821GvfZTBLoX8g9d-U1YgyoXe3wYRVw-g,1554
|
|
27
|
-
ophyd_async/epics/adcore/__init__.py,sha256=
|
|
28
|
-
ophyd_async/epics/adcore/_core_io.py,sha256=
|
|
29
|
-
ophyd_async/epics/adcore/_core_logic.py,sha256=
|
|
30
|
-
ophyd_async/epics/adcore/_hdf_writer.py,sha256=
|
|
27
|
+
ophyd_async/epics/adcore/__init__.py,sha256=3wMOyFGaq1X61LqK4iY4pq-m_BjhOgYZD2-mNCAjpzk,1086
|
|
28
|
+
ophyd_async/epics/adcore/_core_io.py,sha256=F4TlnWW0ntAekZlr8qxCpKhFyEThSgjYQCOoKOg4DN8,5918
|
|
29
|
+
ophyd_async/epics/adcore/_core_logic.py,sha256=2iAF64HLRGxg_By-7feGP8eUtujsXYzOhysP0_SuMTM,3577
|
|
30
|
+
ophyd_async/epics/adcore/_hdf_writer.py,sha256=fUvduWqw9aNNwroH5Wutq_8Q8c0Aqb0vMIs2r5ouYjM,6697
|
|
31
31
|
ophyd_async/epics/adcore/_single_trigger.py,sha256=LGhAZV0GoRwRTNFQmgLpkfq73HsiMCu20JKYGOzxt0I,1159
|
|
32
|
-
ophyd_async/epics/adcore/_utils.py,sha256=
|
|
32
|
+
ophyd_async/epics/adcore/_utils.py,sha256=A5AUQIfdbzLgF7A4V-1TSoPD6Kvgs4sbZBGOV7zb8SY,3909
|
|
33
33
|
ophyd_async/epics/adkinetix/__init__.py,sha256=QEft12PURied6LRzjw-NhUmngjAm1XNA3k-5o5aMXDQ,216
|
|
34
|
-
ophyd_async/epics/adkinetix/_kinetix.py,sha256=
|
|
34
|
+
ophyd_async/epics/adkinetix/_kinetix.py,sha256=JsQVc4d7lRCnVObJlM775hHLfp3rYRSRgOoIyRvrSek,1184
|
|
35
35
|
ophyd_async/epics/adkinetix/_kinetix_controller.py,sha256=jHe6MSfqCOdzw0jQ5L6cYq55I0TD5Bso2ZGOZmv1j3Q,1504
|
|
36
|
-
ophyd_async/epics/adkinetix/_kinetix_io.py,sha256=
|
|
36
|
+
ophyd_async/epics/adkinetix/_kinetix_io.py,sha256=AbCoYliAobU3I6z3NaswQnExwGTgV458zF3uwkBEQPc,893
|
|
37
37
|
ophyd_async/epics/adpilatus/__init__.py,sha256=daimScOCCMHR2eb8VbezHOcGOkd6uIRZQiyeTQsaAx4,308
|
|
38
|
-
ophyd_async/epics/adpilatus/_pilatus.py,sha256=
|
|
39
|
-
ophyd_async/epics/adpilatus/_pilatus_controller.py,sha256=
|
|
40
|
-
ophyd_async/epics/adpilatus/_pilatus_io.py,sha256=
|
|
38
|
+
ophyd_async/epics/adpilatus/_pilatus.py,sha256=AbWfxEds8ESB73kRXz56FzRPYqy67Ue0m11HRaNUqZY,1751
|
|
39
|
+
ophyd_async/epics/adpilatus/_pilatus_controller.py,sha256=1GfzcnhwLam8fAhf889lPz2rrn9mWDaGO3BIELP3R50,2450
|
|
40
|
+
ophyd_async/epics/adpilatus/_pilatus_io.py,sha256=WB_N2RRpcFCFI6i57PRqjIdpK6hzLpWxn71cWUHUZnc,722
|
|
41
41
|
ophyd_async/epics/adsimdetector/__init__.py,sha256=t3crUgTEvVJGI8o6FsfN42k0A-l4v9ZBwXIYtixoE-M,128
|
|
42
|
-
ophyd_async/epics/adsimdetector/_sim.py,sha256=
|
|
42
|
+
ophyd_async/epics/adsimdetector/_sim.py,sha256=ijN7K-5prJuzFD3DoNtQ8JujnvCG8_UMwYxMCGSOHCE,866
|
|
43
43
|
ophyd_async/epics/adsimdetector/_sim_controller.py,sha256=v0GrMXg7U1PUvLKW8zmx8zrunk_MfFt7GbckbVlnUys,1494
|
|
44
44
|
ophyd_async/epics/advimba/__init__.py,sha256=GSnFWGPNJsCJZ-Tgyv-L38Smwzp2bWC64U_4uD2TLvs,198
|
|
45
|
-
ophyd_async/epics/advimba/_vimba.py,sha256=
|
|
46
|
-
ophyd_async/epics/advimba/_vimba_controller.py,sha256=
|
|
47
|
-
ophyd_async/epics/advimba/_vimba_io.py,sha256=
|
|
45
|
+
ophyd_async/epics/advimba/_vimba.py,sha256=E_RJ0uJQt-RWAY7uFTNkHaOdGYS5sa7ZbRgAe6ngXTA,1125
|
|
46
|
+
ophyd_async/epics/advimba/_vimba_controller.py,sha256=JvQ4M2IdixDI6TXNHSqUs0sX3ncgosecuLmT8bYhU9w,2003
|
|
47
|
+
ophyd_async/epics/advimba/_vimba_io.py,sha256=nf1BdIWey4RR7KuqyZhH6X5yB8Msg0oOtkVLOuwn6Uc,1843
|
|
48
48
|
ophyd_async/epics/demo/__init__.py,sha256=wCrgemEo-zR4TTvaqCKnQ-AIUHorotV5jhftbq1tXz0,1368
|
|
49
49
|
ophyd_async/epics/demo/_mover.py,sha256=7GEmF-mgN0qxiHUE3Tgboh0p9S5AuPBYR-pFeg5QFTk,3520
|
|
50
50
|
ophyd_async/epics/demo/_sensor.py,sha256=8OyFAsB3EXMzrQreOIg_TGHrseUtI5rxXpfwwUaC76I,1165
|
|
51
51
|
ophyd_async/epics/demo/mover.db,sha256=RFz0rxZue689Wh1sWTZwWeFMUrH04ttPq2u5xJH_Fp4,998
|
|
52
52
|
ophyd_async/epics/demo/sensor.db,sha256=AVtiydrdtwAz2EFurO2Ult9SSRtre3r0akOBbL98LT0,554
|
|
53
|
+
ophyd_async/epics/eiger/__init__.py,sha256=b3Tt4pVLk23Giyj50R4e94d2MxWDDmNHWhWwNq2jlaw,221
|
|
54
|
+
ophyd_async/epics/eiger/_eiger.py,sha256=8sTPz_pBpDyJI_VUGxVb8WtfoTYvsAi3stofaPbcgt4,1155
|
|
55
|
+
ophyd_async/epics/eiger/_eiger_controller.py,sha256=B4CpwWXde71C3BWcSBwlZbt3Fnk9yAT9BZj4J4DeDoU,2139
|
|
56
|
+
ophyd_async/epics/eiger/_eiger_io.py,sha256=MlvLWEZ-n-Lf7y9e_WVoPFdw5YoHVWw_8LxSLajnkk8,1818
|
|
57
|
+
ophyd_async/epics/eiger/_odin_io.py,sha256=NY1O38yIYU0M6hPt1yXqDHxvpnc7PKDpqZasjc7bM_s,4163
|
|
53
58
|
ophyd_async/epics/pvi/__init__.py,sha256=ZvJO69ApL7N9rWT9-hD-JZMC_KsHxgeEqxe-01jNUVw,137
|
|
54
59
|
ophyd_async/epics/pvi/_pvi.py,sha256=PUst4KhX8emkbRunLrJeqTruaOMF3mm1s7YJsBB7HpQ,12099
|
|
55
60
|
ophyd_async/epics/signal/__init__.py,sha256=cJGvTnJxHNzpWyWIYXU4UGMoz3uqZ88UVXNvG-TGngo,441
|
|
56
|
-
ophyd_async/epics/signal/_aioca.py,sha256=
|
|
57
|
-
ophyd_async/epics/signal/_common.py,sha256=
|
|
61
|
+
ophyd_async/epics/signal/_aioca.py,sha256=8I3CFNtHWsxDe1DC95VGAITR6hKaW03L_8pBnvdF4-A,11764
|
|
62
|
+
ophyd_async/epics/signal/_common.py,sha256=v8nHeAZcdrAtqwzHDOia03HAhPL0zEP-4qhg4DwK8vY,1867
|
|
58
63
|
ophyd_async/epics/signal/_epics_transport.py,sha256=MnkhnbpYSxrS7Wo8jDJ1YGnkrvjfYEt1oOe-uxjGCPU,839
|
|
59
|
-
ophyd_async/epics/signal/_p4p.py,sha256=
|
|
64
|
+
ophyd_async/epics/signal/_p4p.py,sha256=cvzj6VD3mK-tns1nH8ZukgpvHo1ULMbUc8Qg-B6drBQ,15981
|
|
60
65
|
ophyd_async/epics/signal/_signal.py,sha256=i5q7zTv5y3HFQRI1JrwWT-gN6bViPWNuks14le2pTFI,3252
|
|
61
66
|
ophyd_async/fastcs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
67
|
ophyd_async/fastcs/odin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
63
|
-
ophyd_async/fastcs/panda/__init__.py,sha256=
|
|
64
|
-
ophyd_async/fastcs/panda/
|
|
65
|
-
ophyd_async/fastcs/panda/
|
|
66
|
-
ophyd_async/fastcs/panda/
|
|
67
|
-
ophyd_async/fastcs/panda/_panda_controller.py,sha256=ltetcf_OSQMtLVSh1uKW7Nyu5XDbb-W9iuw767cP66E,1237
|
|
68
|
+
ophyd_async/fastcs/panda/__init__.py,sha256=IHVn0wHsCuvQLdgKTRyr1F8-Ol81ImuEx_JJZpfPUv0,1166
|
|
69
|
+
ophyd_async/fastcs/panda/_block.py,sha256=ElnwPg0HEx7gToB6l_0o-Pf2foIQaCdVi69VFYxr-RA,1614
|
|
70
|
+
ophyd_async/fastcs/panda/_control.py,sha256=Xwes9eRlR4WgTEtQy9LmnQjk596qxAdw33AFxMDF9Rg,1229
|
|
71
|
+
ophyd_async/fastcs/panda/_hdf_panda.py,sha256=ty-mc5c8z-OcX0zXt5ymlCeqE1G5_UYAEhOmNUv0f_M,1309
|
|
68
72
|
ophyd_async/fastcs/panda/_table.py,sha256=atd9wiam0XQH89doqzn0U6J42CFQBKDs9K1_q5GcJR8,6093
|
|
69
|
-
ophyd_async/fastcs/panda/_trigger.py,sha256=
|
|
73
|
+
ophyd_async/fastcs/panda/_trigger.py,sha256=f7VqYCdXYoT2JyPovXdeYUC0SdWFFcSnVVdUHRd0OO0,3054
|
|
70
74
|
ophyd_async/fastcs/panda/_utils.py,sha256=VHW5kPVISyEkmse_qQcyisBkkEwMO6GG2Ago-CH1AFA,487
|
|
71
|
-
ophyd_async/
|
|
75
|
+
ophyd_async/fastcs/panda/_writer.py,sha256=1WSoxUPfMIprcShccjZtsnSVLJwKOCcxsBw8FIemlBk,5326
|
|
76
|
+
ophyd_async/plan_stubs/__init__.py,sha256=wjpEj_BoBZJ9x2fhUPY6BzWMqyYH96JrBlJvV7frdN4,524
|
|
72
77
|
ophyd_async/plan_stubs/_ensure_connected.py,sha256=6Q7_UWQ-UQ0awe6mnN4PdNCAOGRm4GZR9X2M-ghQCeI,711
|
|
73
78
|
ophyd_async/plan_stubs/_fly.py,sha256=PWT7cbnVUDBFtjKkMQ7Lr960M9d0JcUBseXFYhzBc8I,6299
|
|
79
|
+
ophyd_async/plan_stubs/_nd_attributes.py,sha256=r7Ly2fPIklOJGIHw0uoWl4gOsIfP5Df6dg_tU__hUSE,1986
|
|
74
80
|
ophyd_async/sim/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
75
81
|
ophyd_async/sim/demo/__init__.py,sha256=JKWFnHqmFuRRMvvU0aBuclke3OdF0iq89yvHEd4J7Bg,371
|
|
76
82
|
ophyd_async/sim/demo/_sim_motor.py,sha256=Dfc-1faeqbVLsCLuM2FFJ2F20Ib0UsS2vsHdqgVt2Zk,3601
|
|
77
83
|
ophyd_async/sim/demo/_pattern_detector/__init__.py,sha256=o_dSZDIl_CyS3YPSNKpGiQiR9UaC4cNzZ8_ByEN9dIk,402
|
|
78
84
|
ophyd_async/sim/demo/_pattern_detector/_pattern_detector.py,sha256=5PH9vZ0vLhhvzN1H-7HUcaNUOQ---9i0GEBKY_luRTI,1278
|
|
79
|
-
ophyd_async/sim/demo/_pattern_detector/_pattern_detector_controller.py,sha256=
|
|
85
|
+
ophyd_async/sim/demo/_pattern_detector/_pattern_detector_controller.py,sha256=JjgCiX1CO284ykwzutdp0whqehHPqi83akiAyL7CqmY,1800
|
|
80
86
|
ophyd_async/sim/demo/_pattern_detector/_pattern_detector_writer.py,sha256=ayJJ2Y0rqM7gIEtxhH4-iRnYi0RQTaEWFIHUJd2W27Y,1280
|
|
81
|
-
ophyd_async/sim/demo/_pattern_detector/_pattern_generator.py,sha256=
|
|
87
|
+
ophyd_async/sim/demo/_pattern_detector/_pattern_generator.py,sha256=KRB8y3rwoaemeQx4ewoFO7CCTHtvokWe4zTE0Rg3K0Q,7176
|
|
82
88
|
ophyd_async/sim/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
83
89
|
ophyd_async/tango/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
84
|
-
ophyd_async-0.5.
|
|
85
|
-
ophyd_async-0.5.
|
|
86
|
-
ophyd_async-0.5.
|
|
87
|
-
ophyd_async-0.5.
|
|
88
|
-
ophyd_async-0.5.
|
|
89
|
-
ophyd_async-0.5.
|
|
90
|
+
ophyd_async-0.5.2.dist-info/LICENSE,sha256=pU5shZcsvWgz701EbT7yjFZ8rMvZcWgRH54CRt8ld_c,1517
|
|
91
|
+
ophyd_async-0.5.2.dist-info/METADATA,sha256=WT4LFUgG_L4M56zH19WNULHbqAdJg2_D9AAYGEXTWB8,6511
|
|
92
|
+
ophyd_async-0.5.2.dist-info/WHEEL,sha256=uCRv0ZEik_232NlR4YDw4Pv3Ajt5bKvMH13NUU7hFuI,91
|
|
93
|
+
ophyd_async-0.5.2.dist-info/entry_points.txt,sha256=O0YNJTEufO0w9BozXi-JurTy2U1_o0ypeCgJLQ727Jk,58
|
|
94
|
+
ophyd_async-0.5.2.dist-info/top_level.txt,sha256=-hjorMsv5Rmjo3qrgqhjpal1N6kW5vMxZO3lD4iEaXs,12
|
|
95
|
+
ophyd_async-0.5.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|