From 200f53e5882710750f1383dcf3e92b43c2d66bdd Mon Sep 17 00:00:00 2001 From: Your Name Date: Fri, 7 Feb 2025 23:07:42 -0500 Subject: [PATCH] automated terminal push --- RestAPIClient.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/RestAPIClient.py b/RestAPIClient.py index cea54df..faa19cf 100644 --- a/RestAPIClient.py +++ b/RestAPIClient.py @@ -39,7 +39,7 @@ def addDownloadSuccess(url): - response = requests.post("https://osiris.yankee.embanet.online/channel/monthly/games/success/add", data=json_data, headers=headers) + response = requests.post("https://apis.yankee.embanet.online/channel/monthly/games/success/add", data=json_data, headers=headers) print(response.text) @@ -62,7 +62,7 @@ def addDownloadFailure(url): - response = requests.post("https://osiris.yankee.embanet.online/channel/monthly/games/failure/add", data=json_data, headers=headers) + response = requests.post("https://apis.yankee.embanet.online/channel/monthly/games/failure/add", data=json_data, headers=headers) print(response.text) @@ -110,7 +110,7 @@ def searchURLSuccesses(url): json_data = json.dumps(data) - response = requests.post("https://osiris.yankee.embanet.online/channel/monthly/games/success/exists", data=json_data, headers=headers) + response = requests.post("https://apis.yankee.embanet.online/channel/monthly/games/success/exists", data=json_data, headers=headers) print(response.text) @@ -139,7 +139,7 @@ def searchURLFailures(url): json_data = json.dumps(data) - response = requests.post("https://osiris.yankee.embanet.online/channel/monthly/games/failure/exists", data=json_data, headers=headers) + response = requests.post("https://apis.yankee.embanet.online/channel/monthly/games/failure/exists", data=json_data, headers=headers) print(response.text)