Пример #1
0
#ImportSpecificModules>
from ShareYourSystem.Standards.Classors.Representer import _print
from ShareYourSystem.Standards.Objects import Noder

#Print a version of the class
_print(dict(Noder.NoderClass.__dict__.items()))

#Print a version of this object
_print(Noder.NoderClass())

#Print a version of his __dict__
_print(Noder.NoderClass().__dict__)

#Test
print(Noder.attest_node())
Пример #2
0
# <ImportSpecificModules>
from ShareYourSystem.Standards.Classors.Representer import _print
from ShareYourSystem import Classors

# </ImportSpecificModules>

# Print a version of the class
_print(dict(Classors.ClassorsClass.__dict__.items()))

# Print a version of this object
_print(Classors.ClassorsClass())

# Print a version of his __dict__
_print(Classors.ClassorsClass().__dict__)
Пример #3
0
#<ImportSpecificModules>
from ShareYourSystem.Standards.Classors.Representer import _print
from ShareYourSystem.Standards.Objects import Applyier
#</ImportSpecificModules>

#Print a version of the class
_print(dict(Applyier.ApplyierClass.__dict__.items()))

#Print a version of this object
_print(Applyier.ApplyierClass())

#Print a version of his __dict__
_print(Applyier.ApplyierClass().__dict__)

#Test
_print(Applyier.attest_apply(),**{'RepresentingAlineaIsBool':False})
Пример #4
0
# <ImportSpecificModules>
from ShareYourSystem.Standards.Classors.Representer import _print
from ShareYourSystem.Standards.Objects import Setter

# </ImportSpecificModules>

# Print a version of the class
_print(dict(Setter.SetterClass.__dict__.items()))

# Print a version of this object
_print(Setter.SetterClass())

# Print a version of his __dict__
_print(Setter.SetterClass().__dict__)

# Test
print(Setter.attest_set())
Пример #5
0
#<ImportSpecificModules>
from ShareYourSystem.Standards.Classors.Representer import _print
from ShareYourSystem.Standards.Objects import Filer
#</ImportSpecificModules>

#Print a version of the class
_print(dict(Filer.FilerClass.__dict__.items()))

#Print a version of this object
_print(Filer.FilerClass())

#Print a version of his __dict__
_print(Filer.FilerClass().__dict__)
Пример #6
0
#ImportModules
from ShareYourSystem.Standards.Classors.Representer import _print
from ShareYourSystem.Standards.Objects import Recoverer

#Print a version of the class
_print(dict(Recoverer.RecovererClass.__dict__.items()))

#Print a version of this object
_print(Recoverer.RecovererClass())

#Print a version of his __dict__
_print(Recoverer.RecovererClass().__dict__)

#Test
print(Recoverer.attest_find())
Пример #7
0
#<ImportSpecificModules>
from ShareYourSystem.Standards.Classors.Representer import _print
from ShareYourSystem.Standards.Objects import Parenter
#</ImportSpecificModules>

#Print a version of the class
_print(dict(Parenter.ParenterClass.__dict__.items()))

#Print a version of this object
_print(Parenter.ParenterClass())

#Print a version of his __dict__
_print(Parenter.ParenterClass().__dict__)

#Test
_print(Parenter.attest_parent(),**{'RepresentingAlineaIsBool':False})
Пример #8
0
#ImportModules
from ShareYourSystem.Standards.Classors.Representer import _print
from ShareYourSystem.Standards.Objects import Rower

#Print a version of the class
_print(dict(Rower.RowerClass.__dict__.items()))

#Print a version of this object
_print(Rower.RowerClass())

#Print a version of his __dict__
_print(Rower.RowerClass().__dict__)

#Test
_print(Rower.attest_row())
Пример #9
0
#Import Modules
from ShareYourSystem.Standards.Classors import Representer,Doer
from ShareYourSystem.Standards.Classors.Representer import _print
from ShareYourSystem.Functers import Alerter
from ShareYourSystem.Standards.Objects import Debugger

#Print a version of the class
_print(dict(Alerter.AlerterClass.__dict__.items()))

#Print a version of this object
_print(Alerter.AlerterClass())

#Print a version of his __dict__
_print(Alerter.AlerterClass().__dict__)

#Definition a first Class
class FooerClass(Debugger.DebuggerClass):

	@Alerter.AlerterClass(**{'AlertingDebugBool':True})
	def foo(self,**_VariablesDict):
		self._print('First')

	@Alerter.AlerterClass(**{'AlertingDebugBool':True})
	def _foo(self,**_VariablesDict):
		self.foo()
		self._print('Second')

#Do just a test of the basic FirstClass method printSomething
FooerClass()._foo()

'''
Пример #10
0
	def printSomething(self,**_KwargVariablesDict):
		_print('Second')
Пример #11
0
	def printOtherthing(self,**_KwargVariablesDict):
		_print('Third')
Пример #12
0
	def printSomething(self,**_KwargVariablesDict):
		_print('First')
Пример #13
0
#Import Modules
from ShareYourSystem.Functers import Functer,Hooker
from ShareYourSystem.Standards.Classors import Representer
from ShareYourSystem.Standards.Classors.Representer import _print
from ShareYourSystem.Functers import Functer

#Print a version of the class
_print(dict(Functer.FuncterClass.__dict__.items()))

#Print a version of this object
_print(Functer.FuncterClass())

#Print a version of his __dict__
_print(Functer.FuncterClass().__dict__)

#Definition a first Class
class FirstClass(object):

	def printSomething(self,**_KwargVariablesDict):
		_print('First')

#Definition a derived second Class
class SecondClass(FirstClass):

	@Functer.FuncterClass()
	def printSomething(self,**_KwargVariablesDict):
		_print('Second')

	@Functer.FuncterClass()
	@Functer.FuncterClass()
	def printOtherthing(self,**_KwargVariablesDict):
Пример #14
0
#<ImportSpecificModules>
from ShareYourSystem.Standards.Classors.Representer import _print
from ShareYourSystem.Standards.Objects import Deleter
#</ImportSpecificModules>

#Print a version of the class
_print(dict(Deleter.DeleterClass.__dict__.items()))

#Print a version of this object
_print(Deleter.DeleterClass())

#Print a version of his __dict__
_print(Deleter.DeleterClass().__dict__)

#Test
print(Deleter.attest_delete())
Пример #15
0
#ImportModules
from ShareYourSystem.Standards.Classors.Representer import _print
from ShareYourSystem.Standards.Objects import Inserter

#Print a version of the class
_print(dict(Inserter.InserterClass.__dict__.items()))

#Print a version of this object
_print(Inserter.InserterClass())

#Print a version of his __dict__
_print(Inserter.InserterClass().__dict__)

#Test
_print(Inserter.attest_insert())
Пример #16
0
# <ImportSpecificModules>
from ShareYourSystem.Standards.Classors.Representer import _print
from ShareYourSystem.Standards.Classors import Tester

# </ImportSpecificModules>

# Print a version of the class
_print(dict(Tester.TesterClass.__dict__.items()))

# Print a version of this object
_print(Tester.TesterClass())

# Print a version of his __dict__
_print(Tester.TesterClass().__dict__)

# Definition a module like a class and an attest function
AttestingFunctionStrsList = ["attest_increment"]


def attest_increment():
    Incrementer = IncrementerClass()
    Incrementer.increment()
    return Incrementer.IncrementingInt


@Tester.TesterClass()
class IncrementerClass:
    def default_init(self):
        self.IncrementingInt = 0

    def increment(self):
Пример #17
0
#<ImportSpecificModules>
from ShareYourSystem.Standards.Classors.Representer import _print
from ShareYourSystem.Standards.Objects import Commander
#</ImportSpecificModules>

#Print a version of the class
_print(dict(Commander.CommanderClass.__dict__.items()))

#Print a version of this object
_print(Commander.CommanderClass())

#Print a version of his __dict__
_print(Commander.CommanderClass().__dict__)

#Test
_print(Commander.attest_commandAllSetsForEach(),**{'RepresentingAlineaIsBool':False})
_print(Commander.attest_commandEachSetForAll(),**{'RepresentingAlineaIsBool':False})
Пример #18
0
#<ImportSpecificModules>
from ShareYourSystem.Standards.Classors.Representer import _print
from ShareYourSystem.Standards.Objects import Gatherer
#</ImportSpecificModules>

#Print a version of the class
_print(dict(Gatherer.GathererClass.__dict__.items()))

#Print a version of this object
_print(Gatherer.GathererClass())

#Print a version of his __dict__
_print(Gatherer.GathererClass().__dict__)

#Test
print(Gatherer.attest_gather())
Пример #19
0
#<ImportSpecificModules>
from ShareYourSystem.Standards.Classors.Representer import _print
from ShareYourSystem.Standards.Objects import Markdowner
#</ImportSpecificModules>

#Print a version of the class
_print(dict(Markdowner.MarkdownerClass.__dict__.items()))

#Print a version of this object
_print(Markdowner.MarkdownerClass())

#Print a version of his __dict__
_print(Markdowner.MarkdownerClass().__dict__)

#Test
_print(Markdowner.attest_markdown(),**{'RepresentingAlineaIsBool':False})
Пример #20
0
#ImportModules
from ShareYourSystem.Standards.Classors.Representer import _print
from ShareYourSystem.Standards.Objects import Tabularer

#Print a version of the class
_print(dict(Tabularer.TabularerClass.__dict__.items()))

#Print a version of this object
_print(Tabularer.TabularerClass())

#Print a version of his __dict__
_print(Tabularer.TabularerClass().__dict__)

#Test
print(Tabularer.attest_tabular())
Пример #21
0
#<ImportSpecificModules>
from ShareYourSystem.Standards.Classors.Representer import _print
from ShareYourSystem.Standards.Objects import Hdformater
#</ImportSpecificModules>

#Print a version of the class
_print(dict(Hdformater.HdformaterClass.__dict__.items()))

#Print a version of this object
_print(Hdformater.HdformaterClass())

#Print a version of his __dict__
_print(Hdformater.HdformaterClass().__dict__)

#Test
_print(Hdformater.attest_hdformat(),**{'RepresentingAlineaIsBool':False})
Пример #22
0
import operator
from ShareYourSystem.Standards.Classors.Representer import _print
from ShareYourSystem.Standards.Classors import Watcher
from ShareYourSystem.Functers import Hooker,Triggerer
from ShareYourSystem.Standards.Objects import Setter
#</ImportSpecificModules>

#Print a version of the class
_print(dict(Watcher.WatcherClass.__dict__.items()))

#Print a version of this object
_print(Watcher.WatcherClass())

#Print a version of his __dict__
_print(Watcher.WatcherClass().__dict__)

#Test
@Watcher.WatcherClass()
class IncrementerClass(Setter.SetterClass):

	def default_init(self):
		self.Int=0
		Setter.SetterClass.__init__(self)

	def printIncrement(self):

		#Print finally
		self.debug(
					('self.',self,['Int'])
				)
Пример #23
0
#<ImportSpecificModules>
from ShareYourSystem.Standards.Classors.Representer import _print
from ShareYourSystem.Standards.Objects import Moduler
#</ImportSpecificModules>

#Print a version of the class
_print(dict(Moduler.ModulerClass.__dict__.items()))

#Print a version of this object
_print(Moduler.ModulerClass())

#Print a version of his __dict__
_print(Moduler.ModulerClass().__dict__)

#Get a module in the instance
print(Moduler.ModulerClass(**{"PackagingModuleVariableStr":"ShareYourSystem.Standards.Classors.Inspecter"}).module())


Пример #24
0
#<ImportSpecificModules>
from ShareYourSystem.Standards.Classors.Representer import _print
from ShareYourSystem.Standards.Objects import Pather
#</ImportSpecificModules>

#Print a version of the class
_print(dict(Pather.PatherClass.__dict__.items()))

#Print a version of this object
_print(Pather.PatherClass())

#Print a version of his __dict__
_print(Pather.PatherClass().__dict__)

#Test
print(Pather.attest_path())
Пример #25
0
#<ImportSpecificModules>
from ShareYourSystem.Standards.Classors.Representer import _print
from ShareYourSystem.Standards.Objects import Updater
#</ImportSpecificModules>

#Print a version of the class
_print(dict(Updater.UpdaterClass.__dict__.items()))

#Print a version of this object
_print(Updater.UpdaterClass())

#Print a version of his __dict__
_print(Updater.UpdaterClass().__dict__)

#Test
_print(Updater.attest_update(),**{'RepresentingAlineaIsBool':False})
Пример #26
0
#<ImportSpecificModules>
from ShareYourSystem.Standards.Classors.Representer import _print
from ShareYourSystem.Standards.Objects import Walker
#</ImportSpecificModules>

#Print a version of the class
_print(dict(Walker.WalkerClass.__dict__.items()))

#Print a version of this object
_print(Walker.WalkerClass())

#Print a version of his __dict__
_print(Walker.WalkerClass().__dict__)

#Test
_print(Walker.attest_walk(),**{'RepresentingAlineaIsBool':False})
Пример #27
0
# <ImportSpecificModules>
from ShareYourSystem.Standards.Classors.Representer import _print
from ShareYourSystem.Standards.Objects import Loader

# </ImportSpecificModules>

# Print a version of the class
_print(dict(Loader.LoaderClass.__dict__.items()))

# Print a version of this object
_print(Loader.LoaderClass())

# Print a version of his __dict__
_print(Loader.LoaderClass().__dict__)
Пример #28
0
#<ImportSpecificModules>
from ShareYourSystem.Standards.Classors.Representer import _print
from ShareYourSystem.Standards.Objects import Grouper
#</ImportSpecificModules>

#Print a version of the class
_print(dict(Grouper.GrouperClass.__dict__.items()))

#Print a version of this object
_print(Grouper.GrouperClass())

#Print a version of his __dict__
_print(Grouper.GrouperClass().__dict__)

#Test
_print(Grouper.attest_group(),**{'RepresentingAlineaIsBool':False})
Пример #29
0
#<ImportSpecificModules>
from ShareYourSystem.Standards.Classors.Representer import _print
from ShareYourSystem.Standards.Objects import Structurer
#</ImportSpecificModules>

#Print a version of the class
_print(dict(Structurer.StructurerClass.__dict__.items()))

#Print a version of this object
_print(Structurer.StructurerClass())

#Print a version of his __dict__
_print(Structurer.StructurerClass().__dict__)

#Test
_print(Structurer.attest_structure(),**{'RepresentingAlineaIsBool':False})
Пример #30
0
#<ImportSpecificModules>
from ShareYourSystem.Standards.Classors.Representer import _print
from ShareYourSystem.Standards.Objects import Caller
#</ImportSpecificModules>

#Print a version of the class
_print(dict(Caller.CallerClass.__dict__.items()))

#Print a version of this object
_print(Caller.CallerClass())

#Print a version of his __dict__
_print(Caller.CallerClass().__dict__)

_print(Caller.CallerClass(**{
								'PackagingModuleVariableStr':"ShareYourSystem.Standards.Classors.Representer",
								'CallingFunctionStr':"_print"
							}).call())


_print(Caller.CallerClass(**{
								'PackagingModuleVariableStr':"ShareYourSystem.Standards.Classors.Inspecter",
								'CallingMethodStr':"inspect"
							}).call())


_print(Caller.CallerClass(**{
								'CallingVariable':Caller.CallerClass.call
							}).call())