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 faf25c1 commit 1df4227Copy full SHA for 1df4227
embedly/__init__.py
@@ -1,3 +1,4 @@
1
-from client import Embedly
+from __future__ import absolute_import
2
+from .client import Embedly
3
4
__version__ = '0.4.3'
embedly/client.py
@@ -4,6 +4,7 @@
5
The embedly object that interacts with the service
6
"""
7
8
import re
9
import httplib2
10
import json
@@ -14,7 +15,7 @@
14
15
from urllib.parse import quote, urlencode
16
17
-from models import Url
18
+from .models import Url
19
20
USER_AGENT = 'Mozilla/5.0 (compatible; embedly-python/0.3;)'
21
0 commit comments