scrapeRL / backend /app /tools /html.py
NeerajCodz's picture
feat: add MCP tool registry and search engine integration
afefaea
"""HTML processing tools for web scraping.
Re-exports utilities from app.utils.html for tool registration.
"""
from app.utils.html import (
parse_html,
clean_html,
extract_text,
semantic_chunk,
extract_links,
extract_tables,
)
__all__ = [
"parse_html",
"clean_html",
"extract_text",
"semantic_chunk",
"extract_links",
"extract_tables",
]