multipart.py 488 B

123456789101112131415
  1. """
  2. Transitional module for moving to the w3lib library.
  3. For new code, always import from w3lib.form instead of this module
  4. """
  5. import warnings
  6. from scrapy.exceptions import ScrapyDeprecationWarning
  7. from w3lib.form import *
  8. warnings.warn("Module `scrapy.utils.multipart` is deprecated. "
  9. "If you're using `encode_multipart` function, please use "
  10. "`urllib3.filepost.encode_multipart_formdata` instead",
  11. ScrapyDeprecationWarning, stacklevel=2)