new program file for class ATMOS

This commit is contained in:
Chunxiao Li 2021-06-07 13:01:06 +08:00
parent 7145ef616d
commit b538f43c57

17
pyatmos/class_atmos.py Normal file
View File

@ -0,0 +1,17 @@
class ATMOS(object):
'''
class ATMOS
- attributes:
- self defined
- methods:
- None
'''
def __init__(self,info):
self.info = info
for key in info.keys():
setattr(self, key, info[key])
def __repr__(self):
return 'Instance of class ATMOS'