diff options
author | nathansmithsmith <nathansmith7@mailfence.com> | 2023-11-10 04:30:14 +0000 |
---|---|---|
committer | nathansmithsmith <nathansmith7@mailfence.com> | 2023-11-10 04:30:14 +0000 |
commit | c0bd1ca2348d568b7f34081b09bc4e53baaff749 (patch) | |
tree | 5e9c64dd3195c05f36783cab8cd878a364da0322 /src/main.py | |
parent | 40b98d98f8dcc7b8a6da46e825d667989a436c67 (diff) | |
download | youload-c0bd1ca2348d568b7f34081b09bc4e53baaff749.tar.gz youload-c0bd1ca2348d568b7f34081b09bc4e53baaff749.tar.bz2 youload-c0bd1ca2348d568b7f34081b09bc4e53baaff749.zip |
App somewhat working on android
Diffstat (limited to 'src/main.py')
-rw-r--r-- | src/main.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/main.py b/src/main.py index 98838fa..7b17930 100644 --- a/src/main.py +++ b/src/main.py @@ -1,7 +1,9 @@ from view.app import YouloadApp +import ssl -if __name__ == "__main__": - app = YouloadApp() - run = app.run() - print(run) +ssl._create_default_https_context = ssl._create_unverified_context + +app = YouloadApp() +run = app.run() +print(run) |