Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: python3-feedparser | Distribution: SUSE Linux Enterprise 15 SP5 |
Version: 6.0.10 | Vendor: openSUSE |
Release: bp155.1.5 | Build date: Mon May 22 12:23:36 2023 |
Group: Development/Libraries/Python | Build host: sheep85 |
Size: 619796 | Source RPM: python-feedparser-6.0.10-bp155.1.5.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://github.com/kurtmckee/feedparser | |
Summary: Universal Feed Parser Module for Python |
A universal feed parser module for Python that handles RSS 0.9x, RSS 1.0, RSS 2.0, CDF, Atom 0.3, Atom 1.0 feeds.
BSD-2-Clause
* Sun May 22 2022 Benoît Monin <benoit.monin@gmx.fr> - update to version 6.0.10: * Populate <summary> correctly if it comes after <content> (#260) * Fri May 20 2022 Matej Cepl <mcepl@suse.com> - Add 304_python310-crash.patch fixing crash of test test_001741 on Python 3.10 (gh#kurtmckee/feedparser#304). * Thu May 19 2022 Benoît Monin <benoit.monin@gmx.fr> - update to version 6.0.9: * Fix a crash that can occur with GeoRSS feeds that lack a <where> tag. (#305) * Mon Feb 07 2022 Matej Cepl <mcepl@suse.com> - Revert previous skip, because we have now working sgmllib3k. - Remove test tests/wellformed/sanitize/xml_declaration_unexpected_character.xml (gh#kurtmckee/feedparser#304) * Sat Feb 05 2022 Benjamin Greiner <code@bnavigator.de> - Skip python310 because there is no sgmllib3k and upstream is not willing to move away from it gh#kurtmckee/feedparser#279 * Wed Jun 23 2021 Benoît Monin <benoit.monin@gmx.fr> - update to version 6.0.8: * Fix the name and link to the chardet module in the documentation. (#280) - additional changes from version 6.0.7: * Catch urllib.error.URLError to prevent crashes. (#239) * Wed Jun 16 2021 Benoît Monin <benoit.monin@gmx.fr> - update to version 6.0.6: * Prevent an AttributeError that occurs when a server returns HTTP 3xx but doesn't include a Location header as well. (#267) * Mon Jun 14 2021 Benoît Monin <benoit.monin@gmx.fr> - update to version 6.0.5: * Prevent a TypeError crash that may occur when including a username and password in the feed URL. (#276) * Sun Jun 13 2021 Benoît Monin <benoit.monin@gmx.fr> - update to version 6.0.4: * Prevent a UnicodeDecodeError crash that may occur when the title element's type attribute exists but is empty. (#277) * Prevent a UnicodeEncodeError crash that may occur if the URL contains Unicode characters in the path. (#273) - additional changes from version 6.0.3: * Fix an issue with the HTTP request status on Python >= 3.9. - drop numerical_return_status.patch: fixed upstream * Thu Apr 29 2021 Arun Persaud <arun@gmx.de> - add numerical_return_status.patch for 3.9 python version (change of return status to None) * Sun Oct 25 2020 Benoît Monin <benoit.monin@gmx.fr> - update to version 6.0.2: * Stop building Python wheels with universal=1 set. (#251) * Fix a bug that put a trailing quote in the documentation version. (#232) * Update the documentation URL to point to ReadTheDocs. * Mon Sep 28 2020 Dirk Mueller <dmueller@suse.com> - update to 6.0.1: * Remove all Python 2 compatibility code (#228) * Add *python_requires* to ``setup.py`` (#2 * Mon Sep 14 2020 Benoît Monin <benoit.monin@gmx.fr> - update to version 6.0.0: * Support Python 3.6, 3.7, 3.8 and 3.9 * Drop support for Python 2.4 through 2.7, and Python 3.0 through 3.5 (#169) * Convert feedparser from a monolithic file to a package * feedparser.parse(sanitize_html=bool) argument replaces the feedparser.SANITIZE_HTML global * feedparser.parse(resolve_relative_uris=bool) replaces the feedparser.RESOLVE_RELATIVE_URIS global * Unify the codebase so that 2to3 conversion is no longer required * Remove references to iconv_codecs * Update the Creative Commons namespace URI's * Update the default User-Agent name and URL * Support Middle European (Summer) Time timezones (#20) * Pass data to lazy_chardet_encoding() (#50) * Document that datetimes are returned in UTC (#51) * Remove cjkpython references in the documentation (#57) * Resolve ResourceWarnings thrown during unit tests (#170) * Fix tox build failures (#213) * Use base64.decodebytes() directly to support Python 3.9 (#201) * Fix Python 3.8 urllib.parse.splittype() deprecation warning (#211) * Support parsing colons in RFC822 timezones (#144) * Add `chardet` as an optional tox environment dependency * Fix the Big5 unit test that fails when chardet is installed (#184) - build the package only for python3 - drop py37.patch: fixed upstream - drop non-ascii-entity-hiding.patch: fixed upstream - drop catch-gzip-error.patch: fixed upstream - fix build requires for chardet and sgmllib3k - remove chmod on all source files: fixed upstream - drop moving around source files: reworked upstream - run the tests as described by upstream - fix the list of packaged files * Sat Mar 30 2019 John Vandenberg <jayvdb@gmail.com> - Activate test suite - Add Requires sgmllib3k to fix exception in Python 3 when using the loose parser: UnboundLocalError: local variable 'feedparser' referenced before assignment and less clear but similarly broken result with the strict parser. - Add catch-gzip-error.patch to fix fetch crash in Python 3 - Add non-ascii-entity-hiding.patch to workaround failure to properly parse non-ASCII based encodings on Python 3.5+ - Add py37.patch to fix parsing crash on Python 3.7 * Tue Dec 04 2018 Matej Cepl <mcepl@suse.com> - Remove superfluous devel dependency for noarch package * Wed Apr 26 2017 toddrme2178@gmail.com - Update to version 5.2.1 * Bumpy version number to avoid unnecessary pip reinstalls. - Implement single-spec version. - Fix source URL. * Wed Apr 22 2015 benoit.monin@gmx.fr - update to version 5.2.0: * Support PyPy * Remove the HTTP Status 9001 test that caused unit test tracebacks * Remove the completely-untested HTML tidy code * Remove BeautifulSoup as a dependency * Remove the XFN microformat parsing code * Remove the rel_enclosure microformat parsing code * Remove the rel_hcard microformat parsing code * Remove the rel_tag microformat parsing code * Replace the regex-based RFC 822 date parser with a procedural one * Replace the Python-licensed W3DTF date parser * Support HTML5 audio/source/video element relative URL's * Remove the unparsed itunes_keywords key from the result dictionary * Fix issue 321 just a little more (yet another code path was missed) * Issue 62 (support georss and gml namespaces) * Issue 296 (GUID's are always treated like relative URI's) * Issue 334 (media:restriction element content is not returned) * Issue 335 (sub-elements of media:group are not parsed and returned) * Issue 342 (support multiple dc:creator elements) * Issue 357 (loose parser breaks ampersands in link element URL's) * Issue 374 (support the Podlove Simple Chapters namespace) * Issue 380 (support media:rating element) * Issue 384 (fix chardet support in Python 3) * Issue 389 (elements in unknown uppercase namespaces are ignored) * Issue 392 (tags element subverts 'tags' key in result dictionary) * Issue 396 (Podlove Simple Chapters version 1.0 causes a KeyError) * Issue 399 (docs call `request_headers` parameter `extra_headers`) * Issue 401 (support additional dcterms and media namespaces elements) * Issue 404 (support asctime datetime strings with timezone information) * Issue 407 (decode forward slashes encoded as character entities) * Issue 421 (delay chardet invocation as long as possible) * Issue 422 (add return types docstrings) * Issue 433 (update the list of allowed MathML elements and attributes) - update URL to project homepage - point the source URL to pypi and take care of archive naming - change README to README.rst on package documentation
/usr/lib/python3.6/site-packages/feedparser /usr/lib/python3.6/site-packages/feedparser-6.0.10-py3.6.egg-info /usr/lib/python3.6/site-packages/feedparser-6.0.10-py3.6.egg-info/PKG-INFO /usr/lib/python3.6/site-packages/feedparser-6.0.10-py3.6.egg-info/SOURCES.txt /usr/lib/python3.6/site-packages/feedparser-6.0.10-py3.6.egg-info/dependency_links.txt /usr/lib/python3.6/site-packages/feedparser-6.0.10-py3.6.egg-info/requires.txt /usr/lib/python3.6/site-packages/feedparser-6.0.10-py3.6.egg-info/top_level.txt /usr/lib/python3.6/site-packages/feedparser/__init__.py /usr/lib/python3.6/site-packages/feedparser/__pycache__ /usr/lib/python3.6/site-packages/feedparser/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/__pycache__/__init__.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/__pycache__/api.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/__pycache__/api.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/__pycache__/encodings.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/__pycache__/encodings.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/__pycache__/exceptions.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/__pycache__/exceptions.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/__pycache__/html.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/__pycache__/html.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/__pycache__/http.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/__pycache__/http.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/__pycache__/mixin.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/__pycache__/mixin.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/__pycache__/sanitizer.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/__pycache__/sanitizer.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/__pycache__/sgml.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/__pycache__/sgml.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/__pycache__/urls.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/__pycache__/urls.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/__pycache__/util.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/__pycache__/util.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/api.py /usr/lib/python3.6/site-packages/feedparser/datetimes /usr/lib/python3.6/site-packages/feedparser/datetimes/__init__.py /usr/lib/python3.6/site-packages/feedparser/datetimes/__pycache__ /usr/lib/python3.6/site-packages/feedparser/datetimes/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/datetimes/__pycache__/__init__.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/datetimes/__pycache__/asctime.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/datetimes/__pycache__/asctime.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/datetimes/__pycache__/greek.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/datetimes/__pycache__/greek.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/datetimes/__pycache__/hungarian.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/datetimes/__pycache__/hungarian.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/datetimes/__pycache__/iso8601.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/datetimes/__pycache__/iso8601.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/datetimes/__pycache__/korean.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/datetimes/__pycache__/korean.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/datetimes/__pycache__/perforce.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/datetimes/__pycache__/perforce.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/datetimes/__pycache__/rfc822.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/datetimes/__pycache__/rfc822.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/datetimes/__pycache__/w3dtf.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/datetimes/__pycache__/w3dtf.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/datetimes/asctime.py /usr/lib/python3.6/site-packages/feedparser/datetimes/greek.py /usr/lib/python3.6/site-packages/feedparser/datetimes/hungarian.py /usr/lib/python3.6/site-packages/feedparser/datetimes/iso8601.py /usr/lib/python3.6/site-packages/feedparser/datetimes/korean.py /usr/lib/python3.6/site-packages/feedparser/datetimes/perforce.py /usr/lib/python3.6/site-packages/feedparser/datetimes/rfc822.py /usr/lib/python3.6/site-packages/feedparser/datetimes/w3dtf.py /usr/lib/python3.6/site-packages/feedparser/encodings.py /usr/lib/python3.6/site-packages/feedparser/exceptions.py /usr/lib/python3.6/site-packages/feedparser/html.py /usr/lib/python3.6/site-packages/feedparser/http.py /usr/lib/python3.6/site-packages/feedparser/mixin.py /usr/lib/python3.6/site-packages/feedparser/namespaces /usr/lib/python3.6/site-packages/feedparser/namespaces/__init__.py /usr/lib/python3.6/site-packages/feedparser/namespaces/__pycache__ /usr/lib/python3.6/site-packages/feedparser/namespaces/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/namespaces/__pycache__/__init__.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/namespaces/__pycache__/_base.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/namespaces/__pycache__/_base.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/namespaces/__pycache__/admin.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/namespaces/__pycache__/admin.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/namespaces/__pycache__/cc.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/namespaces/__pycache__/cc.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/namespaces/__pycache__/dc.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/namespaces/__pycache__/dc.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/namespaces/__pycache__/georss.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/namespaces/__pycache__/georss.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/namespaces/__pycache__/itunes.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/namespaces/__pycache__/itunes.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/namespaces/__pycache__/mediarss.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/namespaces/__pycache__/mediarss.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/namespaces/__pycache__/psc.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/namespaces/__pycache__/psc.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/namespaces/_base.py /usr/lib/python3.6/site-packages/feedparser/namespaces/admin.py /usr/lib/python3.6/site-packages/feedparser/namespaces/cc.py /usr/lib/python3.6/site-packages/feedparser/namespaces/dc.py /usr/lib/python3.6/site-packages/feedparser/namespaces/georss.py /usr/lib/python3.6/site-packages/feedparser/namespaces/itunes.py /usr/lib/python3.6/site-packages/feedparser/namespaces/mediarss.py /usr/lib/python3.6/site-packages/feedparser/namespaces/psc.py /usr/lib/python3.6/site-packages/feedparser/parsers /usr/lib/python3.6/site-packages/feedparser/parsers/__init__.py /usr/lib/python3.6/site-packages/feedparser/parsers/__pycache__ /usr/lib/python3.6/site-packages/feedparser/parsers/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/parsers/__pycache__/__init__.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/parsers/__pycache__/loose.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/parsers/__pycache__/loose.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/parsers/__pycache__/strict.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/feedparser/parsers/__pycache__/strict.cpython-36.pyc /usr/lib/python3.6/site-packages/feedparser/parsers/loose.py /usr/lib/python3.6/site-packages/feedparser/parsers/strict.py /usr/lib/python3.6/site-packages/feedparser/sanitizer.py /usr/lib/python3.6/site-packages/feedparser/sgml.py /usr/lib/python3.6/site-packages/feedparser/urls.py /usr/lib/python3.6/site-packages/feedparser/util.py /usr/share/doc/packages/python3-feedparser /usr/share/doc/packages/python3-feedparser/NEWS /usr/share/doc/packages/python3-feedparser/README.rst /usr/share/licenses/python3-feedparser /usr/share/licenses/python3-feedparser/LICENSE
Generated by rpm2html 1.8.1
Fabrice Bellet, Sun Mar 9 13:21:55 2025