python-plexapi/plexapi/compat.py
2017-01-23 00:15:51 -05:00

30 lines
No EOL
599 B
Python

# -*- coding: utf-8 -*-
# Python 2/3 compatability
# Always try Py3 first
import sys
try:
from urllib.parse import urlencode
except ImportError:
from urllib import urlencode
try:
from urllib.parse import quote
except ImportError:
from urllib import quote
try:
from urllib.parse import unquote
except ImportError:
from urllib import unquote
try:
from configparser import ConfigParser
except ImportError:
from ConfigParser import ConfigParser
try:
from xml.etree import cElementTree as ElementTree
except ImportError:
from xml.etree import ElementTree