entities.py 160 B

1234567
  1. from __future__ import absolute_import
  2. from future.utils import PY3
  3. if PY3:
  4. from html.entities import *
  5. else:
  6. from future.moves.html.entities import *