summaryrefslogtreecommitdiff
path: root/api/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'api/utils.py')
-rw-r--r--api/utils.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/api/utils.py b/api/utils.py
deleted file mode 100644
index 069f072..0000000
--- a/api/utils.py
+++ /dev/null
@@ -1,18 +0,0 @@
-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