twython/twython/compat.py
Mike Helmick 672c8db77e Remove sphinx themes from requirements, remove Import error
We don't support Python 2.5 and after 2.6 parse_qsl is available in
urlparse

[ci skip]
2013-06-11 19:11:52 -04:00

40 lines
682 B
Python

# -*- coding: utf-8 -*-
"""
twython.compat
~~~~~~~~~~~~~~
This module contains imports and declarations for seamless Python 2 and
Python 3 compatibility.
"""
import sys
_ver = sys.version_info
#: Python 2.x?
is_py2 = (_ver[0] == 2)
#: Python 3.x?
is_py3 = (_ver[0] == 3)
try:
import simplejson as json
except ImportError:
import json
if is_py2:
from urllib import urlencode, quote_plus
from urlparse import parse_qsl
str = unicode
basestring = basestring
numeric_types = (int, long, float)
elif is_py3:
from urllib.parse import urlencode, quote_plus, parse_qsl
str = str
basestring = (str, bytes)
numeric_types = (int, float)