#<ImportSpecificModules>
from ShareYourSystem.Standards.Classors import Representer
from ShareYourSystem.Standards.Objects import Initiator
#</ImportSpecificModules>


#Print a version of the class
Representer._print(dict(Representer.RepresenterClass.__dict__.items()))

#Print a version of this object
Representer._print(Representer.RepresenterClass())

#Print a version of his __dict__
Representer._print(Representer.RepresenterClass().__dict__)

#Represent a dict
Dict={
	'ParentDict':
		{
		'ChildDict':
			{
				'MyInt':0
			},
		'MyStr':"hello"
		}
	}
print(Representer.getRepresentedStrWithDictatedVariable(Dict))

#Represent a TuplesList
TuplesList=[
				(
		def represent():
			return Representer.represent(self.FunctingFunction,**{'RepresentingAlineaIsBool':False})