1
1
mirror of https://github.com/Kozea/WeasyPrint.git synced 2024-10-05 00:21:15 +03:00
WeasyPrint/weasyprint/compat.py

100 lines
2.7 KiB
Python
Raw Normal View History

# coding: utf8
"""
weasyprint.compat
-----------------
Workarounds for compatibility with Python 2 and 3 in the same code base.
:copyright: Copyright 2011-2012 Simon Sapin and contributors, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
from __future__ import division, unicode_literals
import sys
import email
if sys.version_info[0] >= 3:
# Python 3
from urllib.parse import (
2012-06-25 18:09:40 +04:00
urljoin, urlsplit, quote, unquote, unquote_to_bytes, parse_qs,
urlencode, uses_relative as urlparse_uses_relative)
from urllib.request import urlopen, Request, pathname2url
from array import array
2012-07-29 20:38:59 +04:00
from base64 import (decodebytes as base64_decode,
encodebytes as base64_encode)
unicode = str
2012-02-22 18:52:49 +04:00
basestring = str
xrange = range
iteritems = dict.items
izip = zip
2012-02-23 15:50:08 +04:00
def urlopen_contenttype(url):
"""Return (file_obj, mime_type, encoding)"""
result = urlopen(url)
info = result.info()
mime_type = info.get_content_type()
charset = info.get_param('charset')
return result, mime_type, charset
2012-02-23 15:50:08 +04:00
def parse_email(data):
if isinstance(data, bytes):
data = data.decode('utf8')
return email.message_from_string(data)
def ints_from_bytes(byte_string):
"""Return a list of ints from a byte string"""
return list(byte_string)
else:
# Python 2
from urlparse import (urljoin, urlsplit, parse_qs,
uses_relative as urlparse_uses_relative)
from urllib2 import urlopen, Request
2012-06-25 18:09:40 +04:00
from urllib import pathname2url, quote, unquote, urlencode
from array import array as _array
from itertools import izip, imap
2012-07-29 20:38:59 +04:00
from base64 import (decodestring as base64_decode,
encodestring as base64_encode)
unicode = unicode
2012-02-22 18:52:49 +04:00
basestring = basestring
xrange = xrange
iteritems = dict.iteritems
2012-02-23 15:50:08 +04:00
def array(typecode, initializer):
return _array(typecode.encode('ascii'), initializer)
2012-02-23 15:50:08 +04:00
def urlopen_contenttype(url):
"""Return (file_obj, mime_type, encoding)"""
result = urlopen(url)
info = result.info()
mime_type = info.gettype()
charset = info.getparam('charset')
return result, mime_type, charset
2012-02-23 15:50:08 +04:00
def unquote_to_bytes(data):
if isinstance(data, unicode):
data = data.encode('ascii')
return unquote(data)
2012-02-23 15:50:08 +04:00
def parse_email(data):
if isinstance(data, unicode):
data = data.encode('utf8')
return email.message_from_string(data)
def ints_from_bytes(byte_string):
"""Return a list of ints from a byte string"""
return imap(ord, byte_string)