Julian Daube
5d939157ed
python version of parser works, BUT does not support AREF and SREF at the moment
14 lines
245 B
Python
14 lines
245 B
Python
from datetime import datetime
|
|
|
|
class Library(object):
|
|
version = 0
|
|
name = "NONAME"
|
|
|
|
last_access = datetime.now()
|
|
last_mod = datetime.now()
|
|
|
|
# unit setup
|
|
units_per_dbunit = 1
|
|
meters_per_unit = 1
|
|
|
|
structures = {} |