The ispy
package is a Python interface to IPC, the Information Service (IS)
and the Online Histogramming Service (OH).
It allows easy access from a scripting language to all the information in IS and OH.
ISInfoDynAny
class allows to read and publish
all objects without restrictions (including nested objects). ISObject
has been re-implemented on top of it in a backward compatible way.
The ispy.IS
module allows to create an object of any type whose metadata
is available:
from ipc import IPCPartition from ispy import IS p = IPCPartition('ATLAS') x = IS.DFM(p, 'DF.DFM-1') x.checkout() print xSee the
doc/Documentation.txt
file for full documentation.