Property Object
- class activelogic.PropertyObject
Object representing a PropertyObject.
>>> po = rs.add(PropertyObject('PropertyObject', items=[('Filename', '/index.html'), ('Filename', '/index2.html')])) >>> po = rs.add(PropertyObject('PropertyObject', items=[PropertyObjectItem('Filename', '/index.html')]))
- class activelogic.PropertyObjectItem
Object representing an item of a PropertyObject.
- Parameters:
prop (str) – Property name
value (str) – Value of the property
Wildcards are allowed in value:
*
matches anything?
matches one arbitrary character
Wildcard-characters can be escaped using
\
to match the literal character.>>> PropertyObjectItem('Filename', '/index.html')