aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.py')
-rw-r--r--src/main.py10
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)