Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
KaiserWilhelm23 authored Nov 30, 2022
1 parent c239df2 commit e660250
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion PIP_Manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ def cli():
import win32gui, win32con
import pkg_resources
from tkinter import messagebox
import urllib.request

os.system("clear")

Expand All @@ -205,10 +206,24 @@ def cli():
except Exception as e:
build_cogs()

jsongithub_link = "https://blaze005.github.io/items.json"
with urllib.request.urlopen(jsongithub_link) as url:
json_data = json.loads(url.read().decode())
vr = json_data["PM-release"]


root = ThemedTk(theme='breeze')
tabControl = Notebook(root)
root.title("PIP Manager App V.4.0")



if vr != version1:
root.title(f"PIP Manager App {version1} (Update available: {vr})")

else:
root.title(f"PIP Manager App {version1}")


root.geometry("488x390")
root.resizable(0, 0)

Expand Down

0 comments on commit e660250

Please sign in to comment.