diff options
-rw-r--r-- | getData.py | 4 | ||||
-rw-r--r-- | osSpecific.py | 25 |
2 files changed, 3 insertions, 26 deletions
@@ -59,12 +59,14 @@ def getTeamsData(url, headers): def getPlayerData(url, headers): + print("Stared reading players data") + # First request is made just to get the amount of pages that must be looped through querystring = {"per_page":"100","page":"0"} response = requests.request("GET", url+"players", headers=headers, params=querystring) pageCount = response.json()["meta"]["total_pages"] - + print("Pages to read: "+str(pageCount)) for el in range(1, pageCount+1): # Requesting pages in loop till pageCount diff --git a/osSpecific.py b/osSpecific.py deleted file mode 100644 index 7caf664..0000000 --- a/osSpecific.py +++ /dev/null @@ -1,25 +0,0 @@ -import os -import sys - -# terminal commands, which are unfortunately os-specific - -def whichOs(): - if sys.platform == "win32": - return "windows" - else: - return "good" # ...right? - -def deleteDataDir(): - if whichOs() == "windows": - os.system("rmdir \s Data") - else: - os.system("rm -r Data") - - -def addDataDir(): - if whichOs() == "windows": - os.system("mkdir Data\Players") - else: - os.system("mkdir -p Data/Players") - print("Created new empty Data directory") - |