File: __init__.py

package info (click to toggle)
python-pyepics 3.5.7%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,336 kB
  • sloc: python: 10,539; makefile: 112; javascript: 104; sh: 53
file content (16 lines) | stat: -rw-r--r-- 536 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""
This module provides simple save/restore functionality for PVs, similar to
the autosave module in synApps for IOCs but (obviously) via Channel Access.

Request & Save file formats are designed to be compatible with synApps autosave.

Use of this module requires the pyparsing parser framework. 
The Debian/Ubuntu package is "python-pyparsing"
The web site is http://pyparsing.wikispaces.com/

"""
from . import save_restore

AutoSaver = save_restore.AutoSaver
restore_pvs = save_restore.restore_pvs
save_pvs = save_restore.save_pvs