We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e39b108 + 3f1cb64 commit 716b827Copy full SHA for 716b827
src/fundus/scraping/url.py
@@ -164,7 +164,7 @@ class Sitemap(URLSource):
164
_decompressor: ClassVar[_ArchiveDecompressor] = _ArchiveDecompressor()
165
_sitemap_selector: ClassVar[XPath] = XPath("//*[local-name()='sitemap']/*[local-name()='loc']")
166
_url_selector: ClassVar[XPath] = XPath("//*[local-name()='url']/*[local-name()='loc']")
167
- _parser = XMLParser(strip_cdata=False)
+ _parser = XMLParser(strip_cdata=False, recover=True)
168
169
def __iter__(self) -> Iterator[str]:
170
def yield_recursive(sitemap_url: str) -> Iterator[str]:
0 commit comments