robotparser.py 179 B

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