We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a74329 commit 59fdb14Copy full SHA for 59fdb14
1 file changed
qencode/client.py
@@ -9,7 +9,7 @@ class QencodeApiClient(object):
9
"""
10
def __init__(self, api_key, api_url=None, version=None, **kwargs):
11
self.api_key = api_key
12
- self.api_url = api_url if api_url else 'https://api-qa.qencode.com' # 'https://api.qencode.com/'
+ self.api_url = api_url if api_url else 'https://api.qencode.com/'
13
self.version = version if version else 'v1'
14
self.connect = Http(self.version, self.api_url)
15
self.access_token = None
0 commit comments