diff --git a/surfsense_backend/app/proprietary/scrapers/reddit/__init__.py b/surfsense_backend/app/proprietary/scrapers/reddit/__init__.py new file mode 100644 index 000000000..8b8c75f11 --- /dev/null +++ b/surfsense_backend/app/proprietary/scrapers/reddit/__init__.py @@ -0,0 +1,13 @@ +"""Platform-native Reddit scraper (Apify Reddit Scraper-compatible, anonymous).""" + +from .fetch import RedditAccessBlockedError +from .schemas import RedditItem, RedditScrapeInput +from .scraper import iter_reddit, scrape_reddit + +__all__ = [ + "RedditAccessBlockedError", + "RedditItem", + "RedditScrapeInput", + "iter_reddit", + "scrape_reddit", +]