We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 375bb5e commit 1a549f2Copy full SHA for 1a549f2
gamejoltapi.py
@@ -1,11 +1,14 @@
1
+import ssl as _ssl
2
+
3
from urllib.parse import urlencode as _urlencode, quote as _quote
4
from urllib.request import urlopen as _urlopen
5
from hashlib import md5 as _md5
-
6
from ast import literal_eval as _literal_eval
7
from collections import OrderedDict as _OrderedDict
8
9
_DEBUG = False
10
+_ssl._create_default_https_context = _ssl._create_unverified_context
11
12
13
class GameJoltDataRequired(Exception):
14
""" Exception raised when not all required data is provided in the request call.
0 commit comments