We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8502b11 + 95fc270 commit 40707b9Copy full SHA for 40707b9
braininventory/get.py
@@ -54,6 +54,8 @@ def __get_contributor(df):
54
def __get_affilation(df):
55
return df["affiliation"].value_counts().to_dict()
56
57
+def __get_awards(df):
58
+ return df["award_number"].unique()
59
60
def __get_award_number(df):
61
return df["award_number"].value_counts().to_dict()
@@ -86,7 +88,6 @@ def __get_technique(df):
86
88
def __get_locations(df):
87
89
return df["locations"].value_counts().to_dict()
90
-
91
def __get_contributors(df):
92
"""
93
This returns an array of contributor names from the contributorname column.
0 commit comments