Julian Daube
5d939157ed
python version of parser works, BUT does not support AREF and SREF at the moment
11 lines
221 B
Python
11 lines
221 B
Python
from datetime import datetime
|
|
|
|
class Structure(object):
|
|
# metainfo
|
|
creation_date = datetime.now()
|
|
last_mod = datetime.now()
|
|
name = "NONAME"
|
|
|
|
# contains all the elements
|
|
elements = []
|