Initiator

@Date : Fri Nov 14 13:20:38 2014

@Author : Erwan Ledoux

The Initiator is a trivial module... It just helps for defining directly in the dict of an instance of the InitiatorClass some attributes given by the items setted in the _KwargVariablesDict from the init method.

View the Initiator sources on Github

Example

"""
FrozenIsBool True
"""

#ImportModules
import ShareYourSystem as SYS
from ShareYourSystem.Standards.Objects import Initiator

#Definition of an Initiator instance
MyInitiator=Initiator.InitiatorClass()
MyInitiator.GettingInt=1

#Definition the AttestedStr
SYS._attest(
    [
        'MyInitiator is '+SYS._str(MyInitiator)
    ]
) 

#Print
>>>


*****Start of the Attest *****

MyInitiator is <ShareYourSystem.Standards.Objects.Initiator.InitiatorClass object at 0x10f8ff090>

*****End of the Attest *****