mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-10 06:34:16 +00:00
37 lines
810 B
Python
37 lines
810 B
Python
__package__ = 'archivebox.parsers'
|
|
__description__ = 'URL list'
|
|
|
|
import re
|
|
|
|
from typing import IO, Iterable
|
|
from datetime import datetime, timezone
|
|
|
|
from ..index.schema import Link
|
|
from ..util import (
|
|
enforce_types,
|
|
URL_REGEX,
|
|
)
|
|
|
|
|
|
@enforce_types
|
|
def parse_url_list(text_file: IO[str], **_kwargs) -> Iterable[Link]:
|
|
"""Parse raw URLs from each line in a text file"""
|
|
|
|
text_file.seek(0)
|
|
for line in text_file.readlines():
|
|
url = line.strip()
|
|
if (not url) or not re.findall(URL_REGEX, url):
|
|
continue
|
|
|
|
yield Link(
|
|
url=url,
|
|
timestamp=str(datetime.now(timezone.utc).timestamp()),
|
|
title=None,
|
|
tags=None,
|
|
sources=[text_file.name],
|
|
)
|
|
|
|
|
|
KEY = 'url_list'
|
|
NAME = 'URL List'
|
|
PARSER = parse_url_list
|