2016-03-21 04:26:02 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2017-01-23 05:15:51 +00:00
|
|
|
# Python 2/3 compatability
|
|
|
|
# Always try Py3 first
|
2016-03-21 04:26:02 +00:00
|
|
|
|
2017-01-26 06:44:55 +00:00
|
|
|
try:
|
|
|
|
string_type = basestring
|
|
|
|
except NameError:
|
|
|
|
string_type = str
|
|
|
|
|
2016-03-17 05:14:31 +00:00
|
|
|
try:
|
|
|
|
from urllib.parse import urlencode
|
|
|
|
except ImportError:
|
|
|
|
from urllib import urlencode
|
|
|
|
|
|
|
|
try:
|
|
|
|
from urllib.parse import quote
|
|
|
|
except ImportError:
|
|
|
|
from urllib import quote
|
|
|
|
|
2016-12-15 23:06:12 +00:00
|
|
|
try:
|
|
|
|
from urllib.parse import unquote
|
|
|
|
except ImportError:
|
|
|
|
from urllib import unquote
|
|
|
|
|
2016-03-17 05:14:31 +00:00
|
|
|
try:
|
|
|
|
from configparser import ConfigParser
|
|
|
|
except ImportError:
|
|
|
|
from ConfigParser import ConfigParser
|
2017-01-22 04:06:55 +00:00
|
|
|
|
|
|
|
try:
|
|
|
|
from xml.etree import cElementTree as ElementTree
|
|
|
|
except ImportError:
|
|
|
|
from xml.etree import ElementTree
|
|
|
|
|