Wellfound-AI / core /__init__.py
Zoey7Web's picture
Upload 26 files
67c9c05 verified
Raw
History Blame Contribute Delete
506 Bytes
"""
Wellfound AI - Automated Excel Data Completion Tool
Core modules for intelligent web scraping, AI extraction, address processing,
and contact finding from Wellfound company data.
"""
from .excel_handler import ExcelHandler
from .scraper import WebScraper
from .ai_extractor import AIExtractor
from .address_processor import AddressProcessor
from .contact_finder import ContactFinder
__all__ = [
"ExcelHandler",
"WebScraper",
"AIExtractor",
"AddressProcessor",
"ContactFinder",
]