- YouTube extraction with transcript support - Instagram reel extraction via browser automation - Blog/article web scraping - Auto-save to Obsidian vaults - Smart key point generation - Configurable via .env file - Quick extract shell script Tech stack: Python, requests, beautifulsoup4, playwright, youtube-transcript-api
14 lines
264 B
Python
14 lines
264 B
Python
"""
|
|
Content Extractors Package
|
|
"""
|
|
|
|
from .youtube_extractor import YouTubeExtractor
|
|
from .blog_extractor import BlogExtractor
|
|
from .instagram_extractor import InstagramExtractor
|
|
|
|
__all__ = [
|
|
"YouTubeExtractor",
|
|
"BlogExtractor",
|
|
"InstagramExtractor",
|
|
]
|