Gregory Wiedeman
University Archivist
University records are public records, subject to FOIL
python from archives_tools import aspace as AS session = AS.getSession() for collection in AS.getResources(session, “2”, “all”): if “ua” in collection.id_0: print collection.title
for collection in AS.getResources(session, “2”, “all”): if “Baldus” in collection.title: for note in collection.notes: if note.type == “abstract”: AS.pp(note)