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 13fd288 commit 9c463b3Copy full SHA for 9c463b3
urlsresolver/__init__.py
@@ -5,9 +5,7 @@
5
import re
6
from urlparse import urljoin
7
8
-from requests.packages import chardet
9
-
10
-__version__ = (1, 1, 6)
+__version__ = (1, 1, 7)
11
__author__ = 'Alexandr Shurigin (https://github.com/phpdude/)'
12
13
# HTML tags syntax http://www.w3.org/TR/html-markup/syntax.html
@@ -62,6 +60,7 @@ def resolve_url(
62
60
:return: str|tuple
63
61
"""
64
import requests
+ from requests.packages import chardet
65
66
s = requests.session()
67
0 commit comments