Source code for pycropml.description


[docs]class Description(object): """ Model Unit Description. A description is defined by: - Title - Author - Institution - Reference - Abstract """ def __init__(self): self.Title = '' self.Author= '' self.Institution = '' self.Reference = '' self.Abstract = ''