Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions cirpy.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
https://github.com/mcs07/CIRpy
"""

from __future__ import print_function
from __future__ import unicode_literals
from __future__ import division



import functools
import inspect
import logging
Expand All @@ -19,8 +19,10 @@
from urllib.parse import quote, urlencode
from urllib.request import urlopen
except ImportError:
from urllib import urlencode
from urllib2 import quote, urlopen, HTTPError
from urllib.parse import urlencode
from urllib.parse import quote
from urllib.request import urlopen
from urllib.error import HTTPError

try:
from lxml import etree
Expand Down
Loading