__init__.py 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # Copyright 2010-2023 Kurt McKee <contactme@kurtmckee.org>
  2. # Copyright 2002-2008 Mark Pilgrim
  3. # All rights reserved.
  4. #
  5. # This file is part of feedparser.
  6. #
  7. # Redistribution and use in source and binary forms, with or without modification,
  8. # are permitted provided that the following conditions are met:
  9. #
  10. # * Redistributions of source code must retain the above copyright notice,
  11. # this list of conditions and the following disclaimer.
  12. # * Redistributions in binary form must reproduce the above copyright notice,
  13. # this list of conditions and the following disclaimer in the documentation
  14. # and/or other materials provided with the distribution.
  15. #
  16. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 'AS IS'
  17. # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  18. # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  19. # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  20. # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  21. # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  22. # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  23. # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  24. # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  25. # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  26. # POSSIBILITY OF SUCH DAMAGE."""
  27. from .api import parse
  28. from .datetimes import registerDateHandler
  29. from .exceptions import *
  30. from .util import FeedParserDict
  31. __author__ = 'Kurt McKee <contactme@kurtmckee.org>'
  32. __license__ = 'BSD 2-clause'
  33. __version__ = '6.0.11'
  34. # HTTP "User-Agent" header to send to servers when downloading feeds.
  35. # If you are embedding feedparser in a larger application, you should
  36. # change this to your application name and URL.
  37. USER_AGENT = "feedparser/%s +https://github.com/kurtmckee/feedparser/" % __version__
  38. # If you want feedparser to automatically resolve all relative URIs, set this
  39. # to 1.
  40. RESOLVE_RELATIVE_URIS = 1
  41. # If you want feedparser to automatically sanitize all potentially unsafe
  42. # HTML content, set this to 1.
  43. SANITIZE_HTML = 1