|
|
@ -17,12 +17,15 @@ def getpublications(): |
|
|
|
csv_as_dict = csv.DictReader(libcsv) |
|
|
|
publications = {} |
|
|
|
for row in csv_as_dict: |
|
|
|
pubinfo = {"Title" : row["Publication"], |
|
|
|
"Author" : row["Author"], |
|
|
|
"Type" : row["Type"]} |
|
|
|
pubinfo = { |
|
|
|
"Title": row["Publication"], |
|
|
|
"Author": row["Author"], |
|
|
|
"Type": row["Type"], |
|
|
|
} |
|
|
|
publications[row["Id"]] = pubinfo |
|
|
|
return publications |
|
|
|
|
|
|
|
|
|
|
|
def gettypes(): |
|
|
|
libcsv = open(os.path.join(script_dir, "varlib.csv"), "r") |
|
|
|
with libcsv: |
|
|
@ -32,9 +35,20 @@ def gettypes(): |
|
|
|
lowertype = row["Type"].lower() |
|
|
|
if lowertype not in listoftypes: |
|
|
|
listoftypes.append(lowertype) |
|
|
|
#listoftypes = [t.title() for t in listoftypes] |
|
|
|
return listoftypes |
|
|
|
|
|
|
|
|
|
|
|
def getyears(): |
|
|
|
libcsv = open(os.path.join(script_dir, "varlib.csv"), "r") |
|
|
|
with libcsv: |
|
|
|
csv_as_dict = csv.DictReader(libcsv) |
|
|
|
listofyears = [] |
|
|
|
for row in csv_as_dict: |
|
|
|
if row["Year"] not in listofyears: |
|
|
|
listofyears.append(row["Year"]) |
|
|
|
return listofyears |
|
|
|
|
|
|
|
|
|
|
|
# test = getpublications() |
|
|
|
# for ids, pubinfo in test.items(): |
|
|
|
# print(pubinfo["Title"]) |
|
|
|