parser.py 167 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 from __future__ import absolute_import from future.utils import PY3 __future_module__ = True if PY3: from html.parser import * else: from HTMLParser import *