blender-gdsimporter/gds/library.py
Julian Daube 5d939157ed initial commit (work in progress)
python version of parser works, BUT
does not support AREF and SREF at the moment
2019-07-01 11:45:02 +02:00

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 = {}