summaryrefslogtreecommitdiff
path: root/api/utils.py
diff options
context:
space:
mode:
authorRasmus Luha <rasmus.luha@gmail.com>2022-03-17 13:48:15 +0200
committerRasmus Luha <rasmus.luha@gmail.com>2022-03-17 13:48:15 +0200
commit98e375682a50f3cdeddc8e6af022d1e8d12f608d (patch)
tree22e68ab1daea17566c2a8b0d95e48d238c691c10 /api/utils.py
parentab2efcde6a5fac062ace86aa1705dc47ce69f438 (diff)
file name fixes
Diffstat (limited to 'api/utils.py')
-rw-r--r--api/utils.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/api/utils.py b/api/utils.py
new file mode 100644
index 0000000..c04bdf1
--- /dev/null
+++ b/api/utils.py
@@ -0,0 +1,18 @@
+import pandas as pd
+
+# Making relative paths. On windows slashes would be backwards
+# It is probably not the best way.
+relPathTeams = "../AllAboutData/Data/NBAteams.csv"
+relPathPlayers = "../AllAboutData/Data/Players/"
+
+def getTeamNames():
+ '''
+ Returns dictionary with fetched teams' names as keys
+ and full_names as values.
+ '''
+
+ teamsDf = pd.read_csv(relPathTeams).to_dict()
+ team_names = {}
+ for el in range(len(teamsDf["name"])):
+ team_names.update({teamsDf["name"][el] : teamsDf["full_name"][el]})
+ return team_names