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

93 lines
2.3 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 (
urljoin, urlsplit, quote, unquote, unquote_to_bytes)
from urllib.request import urlopen, Request, pathname2url
from array import array
unicode = str
2012-02-22 18:52:49 +04:00
basestring = str
xrange = range
iteritems = dict.items
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')
# Using here result.fp gives 'ValueError: read of closed file'
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
from urllib2 import urlopen, Request
2012-05-15 20:16:25 +04:00
from urllib import pathname2url, quote, unquote
from array import array as _array
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.fp, 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 map(ord, byte_string)