You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 15, 2023. It is now read-only.
raise Exception("Query failed to run by returning code of {}. {}".format(request.status_code, query))
except:
raise Exception("Failed to make request")
def check_for_updates(v):
print("Checking for updates...", end=" ")
repository = "natecraddock/page-zipper"
tag = get_tag_name(repository)
# Strip text
tag = tag[1:]
version = float(tag)
# If latest version is greater than current version
if version > v:
print("Update found!")
result = messagebox.askyesno("Updates Found", f"An updated version of Page Zipper has been found (v{version}), would you like to download the update?")