scrapeRL / backend /app /utils /__init__.py
NeerajCodz's picture
feat: add API routes and utility modules
27cde0c
"""Utility modules for ScrapeRL backend."""
from app.utils.html import (
parse_html,
clean_html,
extract_text,
semantic_chunk,
extract_links,
extract_tables,
)
from app.utils.logging import setup_logging, get_logger
__all__ = [
"parse_html",
"clean_html",
"extract_text",
"semantic_chunk",
"extract_links",
"extract_tables",
"setup_logging",
"get_logger",
]