diff --git a/API/Tiri.py b/API/Tiri.py index 2cf0721..e531b0b 100644 --- a/API/Tiri.py +++ b/API/Tiri.py @@ -100,6 +100,26 @@ def tiropit_add_user(): +# App version endpoints + +@app.route("/api/getTiropitVersion", methods=["GET"]) +def getTiropitVersion(): + conn = get_db_connection() + cursor = conn.cursor(dictionary=True) + + try: + cursor.execute("SELECT Version FROM AppData ORDER BY ID DESC LIMIT 1") + result = cursor.fetchone() + + if result: + return jsonify({"Version":result["Version"]}), 200 + else: + return jsonify({"error":"No version found"}), 404 + except mysql.connector.Error as e: + return jsonify({"error":str(e)}), 500 + finally: + cursor.close() + conn.close() if __name__ == '__main__': app.run(host="0.0.0.0", port=5000, debug=True) diff --git a/CLI/Init.py b/CLI/Init.py index a4ec7d2..64172f7 100644 --- a/CLI/Init.py +++ b/CLI/Init.py @@ -23,7 +23,7 @@ class Config(): class ServerObj(): def __init__(self, isReachable=False): - self.host = "0.0.0.0" + ":5000" + self.host = "0.0.0.0" self.isReachable = False self.state = "Resolving IP" @@ -38,6 +38,22 @@ class ServerObj(): args = parser.parse_args() Server = ServerObj() + +class TiropitCliObj: + _server_instance = Server + + @property + def url(self): + return f"http://{self._server_instance.host}:5000" + + @property + def isReachable(self): + return self._server_instance.isReachable + +TiropitCLI = TiropitCliObj() + + + #declare files config = configparser.ConfigParser() configPath = Path("Config.ini") @@ -90,6 +106,30 @@ def select_folder(): return folder_path +# [Update Functions] <------------------------------------------------------------------------------------------------------------ [Begin] + +def CheckForUpdate(log=False): + print("Connecting....") + print(f"Request Version from API@{TiropitCLI.url}") + response = requests.get(TiropitCLI.url + "/api/getTiropitVersion") + print(f"ResponseCode:{response.status_code}") + print(f"ResponseJSON:{response.json()}") + + + + +# [Update Functions] <-------------------------------------------------------------------------------------------------------------- [End] + + + + + + + + + + + def TiropitLogin(): @@ -107,6 +147,8 @@ def TiropitLogin(): Display.Clear() showIntroText() print(f"|[LogIn: Login page] [{Server.Icon}]|") + + print("| Enter your username |") print("| |") print("| |") @@ -316,7 +358,7 @@ def showMenu(menuID): print("|[1] Log in to tiropit | [2] Reset Data & Config |") print("|[3] Send / Get Request| [4] My Profile |") print("|[5] Debug Data | [6] Games |") - print("|[e] Exit |") + print("|[e] Exit | [7] Update |") print("======================================================") option = input(">> ") if option == "": showMenu(1) @@ -328,6 +370,9 @@ def showMenu(menuID): TiropitLogin() case "5": debugMenu() + case "7": + CheckForUpdate() + case "6": Gamesmenu() case "e": diff --git a/CLI/venv/lib/python3.12/site-packages/certifi/__pycache__/__init__.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/certifi/__pycache__/__init__.cpython-312.pyc index b81e398..4679f7a 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/certifi/__pycache__/__init__.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/certifi/__pycache__/__init__.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/certifi/__pycache__/core.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/certifi/__pycache__/core.cpython-312.pyc index 3484266..f57aa31 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/certifi/__pycache__/core.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/certifi/__pycache__/core.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/__init__.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/__init__.cpython-312.pyc index 88d1536..966e9e1 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/__init__.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/__init__.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/api.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/api.cpython-312.pyc index bbedf4e..73abc58 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/api.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/api.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/cd.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/cd.cpython-312.pyc index dfb5417..540fc4c 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/cd.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/cd.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/constant.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/constant.cpython-312.pyc index 2a225da..7ce4f39 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/constant.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/constant.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/legacy.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/legacy.cpython-312.pyc index 390c791..34519b3 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/legacy.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/legacy.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/models.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/models.cpython-312.pyc index 1ef2adf..70f8d3a 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/models.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/models.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/utils.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/utils.cpython-312.pyc index 69f743d..cf557d9 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/utils.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/utils.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/version.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/version.cpython-312.pyc index a0be3a8..7b7596e 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/version.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/charset_normalizer/__pycache__/version.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/idna/__pycache__/__init__.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/idna/__pycache__/__init__.cpython-312.pyc index a4236fb..761ee44 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/idna/__pycache__/__init__.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/idna/__pycache__/__init__.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/idna/__pycache__/core.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/idna/__pycache__/core.cpython-312.pyc index 3b3cf06..6b10e7b 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/idna/__pycache__/core.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/idna/__pycache__/core.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/idna/__pycache__/idnadata.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/idna/__pycache__/idnadata.cpython-312.pyc index ee00188..576d4fb 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/idna/__pycache__/idnadata.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/idna/__pycache__/idnadata.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/idna/__pycache__/intranges.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/idna/__pycache__/intranges.cpython-312.pyc index c1052a5..5c2f6af 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/idna/__pycache__/intranges.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/idna/__pycache__/intranges.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/idna/__pycache__/package_data.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/idna/__pycache__/package_data.cpython-312.pyc index 0bf142d..8182b0c 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/idna/__pycache__/package_data.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/idna/__pycache__/package_data.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/__init__.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/__init__.cpython-312.pyc index 43a1fdd..11d0404 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/__init__.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/__init__.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/__version__.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/__version__.cpython-312.pyc index 8af7dc1..822b664 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/__version__.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/__version__.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/_internal_utils.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/_internal_utils.cpython-312.pyc index f65fb90..5bf1736 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/_internal_utils.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/_internal_utils.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/adapters.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/adapters.cpython-312.pyc index 451c849..450829f 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/adapters.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/adapters.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/api.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/api.cpython-312.pyc index 38491d2..1a13262 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/api.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/api.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/auth.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/auth.cpython-312.pyc index 0e0229e..f713c63 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/auth.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/auth.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/certs.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/certs.cpython-312.pyc index 9e879de..4a5e304 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/certs.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/certs.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/compat.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/compat.cpython-312.pyc index 2123537..23df143 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/compat.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/compat.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/cookies.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/cookies.cpython-312.pyc index a708cc6..fdce688 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/cookies.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/cookies.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/exceptions.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/exceptions.cpython-312.pyc index 2881158..0dea689 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/exceptions.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/exceptions.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/hooks.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/hooks.cpython-312.pyc index 5404efa..8fd9443 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/hooks.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/hooks.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/models.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/models.cpython-312.pyc index fe7d4c8..1594b04 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/models.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/models.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/packages.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/packages.cpython-312.pyc index 11366ba..4e7bcc4 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/packages.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/packages.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/sessions.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/sessions.cpython-312.pyc index e217e18..fd581c9 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/sessions.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/sessions.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/status_codes.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/status_codes.cpython-312.pyc index 0f6ad4f..9612631 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/status_codes.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/status_codes.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/structures.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/structures.cpython-312.pyc index 75a5e25..c09806c 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/structures.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/structures.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/utils.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/utils.cpython-312.pyc index 26b58ba..9906ec5 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/utils.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/requests/__pycache__/utils.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/__init__.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/__init__.cpython-312.pyc index bd2c638..da35e13 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/__init__.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/__init__.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/_base_connection.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/_base_connection.cpython-312.pyc index 5f046b2..7b7d0c9 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/_base_connection.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/_base_connection.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/_collections.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/_collections.cpython-312.pyc index e2a6731..2eaa426 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/_collections.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/_collections.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/_request_methods.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/_request_methods.cpython-312.pyc index ea7d812..896f37d 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/_request_methods.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/_request_methods.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/_version.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/_version.cpython-312.pyc index 8abbf6b..daf8b74 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/_version.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/_version.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/connection.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/connection.cpython-312.pyc index 67d57c8..5d4594a 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/connection.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/connection.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/connectionpool.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/connectionpool.cpython-312.pyc index af8f02f..511f460 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/connectionpool.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/connectionpool.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/exceptions.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/exceptions.cpython-312.pyc index dd74a13..6348ed5 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/exceptions.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/exceptions.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/fields.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/fields.cpython-312.pyc index d1bf64e..4f36217 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/fields.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/fields.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/filepost.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/filepost.cpython-312.pyc index 1dbc37c..f255fec 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/filepost.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/filepost.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/poolmanager.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/poolmanager.cpython-312.pyc index 2d0ba75..002323a 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/poolmanager.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/poolmanager.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/response.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/response.cpython-312.pyc index 2628a77..5f22b7d 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/response.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/urllib3/__pycache__/response.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/urllib3/contrib/__pycache__/__init__.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/urllib3/contrib/__pycache__/__init__.cpython-312.pyc index ee0de86..7171be8 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/urllib3/contrib/__pycache__/__init__.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/urllib3/contrib/__pycache__/__init__.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/urllib3/contrib/__pycache__/socks.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/urllib3/contrib/__pycache__/socks.cpython-312.pyc index 3e06a84..32352da 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/urllib3/contrib/__pycache__/socks.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/urllib3/contrib/__pycache__/socks.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/urllib3/http2/__pycache__/__init__.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/urllib3/http2/__pycache__/__init__.cpython-312.pyc index 52f3e62..5ce0250 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/urllib3/http2/__pycache__/__init__.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/urllib3/http2/__pycache__/__init__.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/urllib3/http2/__pycache__/probe.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/urllib3/http2/__pycache__/probe.cpython-312.pyc index cde938e..7ac8129 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/urllib3/http2/__pycache__/probe.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/urllib3/http2/__pycache__/probe.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/__init__.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/__init__.cpython-312.pyc index 89b929e..2332911 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/__init__.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/__init__.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/connection.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/connection.cpython-312.pyc index 827089c..cfcfa4c 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/connection.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/connection.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/proxy.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/proxy.cpython-312.pyc index bcb775a..67017a2 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/proxy.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/proxy.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/request.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/request.cpython-312.pyc index da5253d..32cfcaf 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/request.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/request.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/response.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/response.cpython-312.pyc index 9f9a70f..11b63a7 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/response.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/response.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/retry.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/retry.cpython-312.pyc index 7e2bcdc..dcb03b5 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/retry.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/retry.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/ssl_.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/ssl_.cpython-312.pyc index ee86f06..b607f28 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/ssl_.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/ssl_.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc index f7d4a91..f9a15eb 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/ssltransport.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/ssltransport.cpython-312.pyc index eb932c5..6cd430c 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/ssltransport.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/ssltransport.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/timeout.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/timeout.cpython-312.pyc index 8186a84..bdd8dfb 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/timeout.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/timeout.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/url.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/url.cpython-312.pyc index b1ffc25..2f2c9f6 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/url.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/url.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/util.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/util.cpython-312.pyc index 6ddaf21..d489acd 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/util.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/util.cpython-312.pyc differ diff --git a/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/wait.cpython-312.pyc b/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/wait.cpython-312.pyc index e389675..275d37f 100644 Binary files a/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/wait.cpython-312.pyc and b/CLI/venv/lib/python3.12/site-packages/urllib3/util/__pycache__/wait.cpython-312.pyc differ