Moved Docker stuff to "Docker" folder
Created k8s folder for k8s stuff Added early-stage service.yaml for K8s deployment
This commit is contained in:
19
Docker/src/python/tHome/util/test/Data.py
Normal file
19
Docker/src/python/tHome/util/test/Data.py
Normal file
@@ -0,0 +1,19 @@
|
||||
|
||||
from tHome.util import Data
|
||||
|
||||
d = Data( a=1, b="asdf", c=2 )
|
||||
print d
|
||||
print "----"
|
||||
|
||||
d = Data( a=1, b="asdf", c=[2,3,4] )
|
||||
print d
|
||||
print "----"
|
||||
|
||||
d = Data( a=1, b="asdf", c={'a':3, 'b':4} )
|
||||
print d
|
||||
print "----"
|
||||
|
||||
d = Data( a=1, b=[ Data(a=1,b=2) ], c={'a':3, 'b':[1,2,3]} )
|
||||
print d
|
||||
print "----"
|
||||
|
||||
Reference in New Issue
Block a user