parser.py 167 B

12345678
  1. from __future__ import absolute_import
  2. from future.utils import PY3
  3. __future_module__ = True
  4. if PY3:
  5. from html.parser import *
  6. else:
  7. from HTMLParser import *