We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e859580 commit b3143c5Copy full SHA for b3143c5
3 files changed
ivona_api/__init__.py
@@ -1 +1,5 @@
1
-__version__ = '0.1.1'
+# -*- coding: utf-8 -*-
2
+from __future__ import unicode_literals
3
+
4
5
+__version__ = '0.1.1'
ivona_api/ivona_api.py
@@ -1,7 +1,9 @@
-from urllib.parse import urljoin
import requests
from requests_aws4auth import AWS4Auth
6
+from six.moves.urllib.parse import urljoin
7
8
9
IVONA_REGION_ENDPOINTS = {
ivona_api/test/test_ivona_api.py
@@ -1,3 +1,6 @@
import os
import tempfile
import filecmp
0 commit comments