automated terminal push

This commit is contained in:
Your Name
2025-02-07 23:07:42 -05:00
parent bfb64c411f
commit 200f53e588

View File

@@ -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)