97 lines
3.1 KiB
Python
97 lines
3.1 KiB
Python
#For search information on the API
|
|
import requests
|
|
#Create Windows notification
|
|
from win10toast import ToastNotifier
|
|
#Timeout before making a request to the API
|
|
import time
|
|
|
|
#Recheck for new games
|
|
def recheck_game():
|
|
#In 10 seconds I will double check if you have already redeemed the game.
|
|
time.sleep(10)
|
|
check_game()
|
|
|
|
#Send first game notification
|
|
def send_notification1():
|
|
print("Send first game notification")
|
|
#Icon file
|
|
filename = 'epic_games.ico'
|
|
#Create notification on Windows
|
|
toast = ToastNotifier()
|
|
toast.show_toast(title="New games!", msg="The new game is: " + current_games_title1 , icon_path=filename,duration=10,threaded=False)
|
|
with open('game1.txt', 'w') as f:
|
|
f.write(current_games_title1)
|
|
|
|
#Send second game notification
|
|
def send_notification2():
|
|
print("Send second game notification")
|
|
#Icon file
|
|
filename = 'epic_games.ico'
|
|
#Create notification on Windows
|
|
toast = ToastNotifier()
|
|
toast.show_toast(title="New games!", msg="The new game is: " + current_games_title2 , icon_path=filename,duration=10,threaded=False)
|
|
with open('game2.txt', 'w') as f:
|
|
f.write(current_games_title2)
|
|
check_game3()
|
|
|
|
#Check if there is the third free game
|
|
def check_game3():
|
|
#Check third game
|
|
try:
|
|
f3 = open("game3.txt", "r")
|
|
print("Check if you have already redeemed the game - Third game")
|
|
global current_games_title3
|
|
current_games_title3 = response['currentGames'][2]['title']
|
|
if f3.read() == current_games_title3:
|
|
recheck_game()
|
|
else:
|
|
print("Send notification for third game")
|
|
send_notification3()
|
|
except IndexError:
|
|
print("Third game not found")
|
|
recheck_game()
|
|
|
|
def send_notification3():
|
|
print("Send second game notification")
|
|
#Icon file
|
|
filename = 'epic_games.ico'
|
|
#Create notification on Windows
|
|
toast = ToastNotifier()
|
|
toast.show_toast(title="New games!", msg="The new game is: " + current_games_title3 , icon_path=filename,duration=10,threaded=False)
|
|
with open('game3.txt', 'w') as f:
|
|
f.write(current_games_title3)
|
|
recheck_game()
|
|
|
|
|
|
#Check game and if there are new games send the notification
|
|
def check_game():
|
|
print("Connect to the api")
|
|
url = "https://api.plenusbot.xyz/epic_games?country=IT"
|
|
global response
|
|
response = requests.get(url).json()
|
|
|
|
# Title of current games
|
|
global current_games_title1
|
|
current_games_title1 = response['currentGames'][0]['title']
|
|
global current_games_title2
|
|
current_games_title2 = response['currentGames'][1]['title']
|
|
|
|
#Check first game
|
|
print("Check if you have already redeemed the game - First game")
|
|
f1 = open("game1.txt", "r")
|
|
if f1.read() == current_games_title1:
|
|
recheck_game()
|
|
else:
|
|
print("Send notification for first game")
|
|
send_notification1()
|
|
|
|
#Check second game
|
|
print("Check if you have already redeemed the game - Second game")
|
|
f2 = open("game2.txt", "r")
|
|
if f2.read() == current_games_title2:
|
|
check_game3()
|
|
else:
|
|
print("Send notification for second game")
|
|
send_notification2()
|
|
|
|
check_game() |