@Date : Fri Nov 14 13:20:38 2014
@Author : Erwan Ledoux
The Notebooker takes piece of .md,.py,.tex files for putting them in a IPython Notebook
View the Concluder sources on Github
In [2]:
#ImportModules
import ShareYourSystem as SYS
from ShareYourSystem.Standards.Objects import Concluder
import operator
#Definition of an instance Concluder and make it print hello
MyConcluder=Concluder.ConcluderClass().conclude(
{'MyColorStr':'Black','MySuperInt':6},
[
('MyColorStr',operator.eq,"Black"),
('MySuperInt',operator.gt,3),
(1,operator.eq,1)
]
)
#Definition the AttestedStr
SYS._attest(
[
'MyConcluder is '+SYS._str(
MyConcluder,
**{
'RepresentingBaseKeyStrsListBool':False,
'RepresentingAlineaIsBool':False
}
),
]
)
#Print