Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Determine title from content if <title> is missing #863

Open
Mr0grog opened this issue Mar 5, 2025 · 0 comments
Open

Determine title from content if <title> is missing #863

Mr0grog opened this issue Mar 5, 2025 · 0 comments

Comments

@Mr0grog
Copy link
Member

Mr0grog commented Mar 5, 2025

When importing new versions of HTML pages (either from Wayback’s Memento API or from WARCs), we look for the page’s <title> element or use the empty string:

def extract_title(content_bytes, encoding='utf-8'):
"Return content of <title> tag as string. On failure return empty string."
content_str = content_bytes.decode(encoding=encoding, errors='ignore')
# The parser expects a file-like, so we mock one.
content_as_file = io.StringIO(content_str)
try:
title = lxml.html.parse(content_as_file).find(".//title")
except Exception:
return ''
if title is None or title.text is None:
return ''

There are a bunch of pages that turn out to be missing <title> elements, so it would probably be good to fall back to looking for the <h1> or some other title-like information in the page body.

@Mr0grog Mr0grog moved this from Inbox to Backlog in Web Monitoring Mar 5, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: Backlog
Development

No branches or pull requests

1 participant