feat: Initial commit - Content Extractor for YouTube, Instagram, and blogs
- 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
This commit is contained in:
13
extractors/__init__.py
Normal file
13
extractors/__init__.py
Normal file
@@ -0,0 +1,13 @@
|
||||
"""
|
||||
Content Extractors Package
|
||||
"""
|
||||
|
||||
from .youtube_extractor import YouTubeExtractor
|
||||
from .blog_extractor import BlogExtractor
|
||||
from .instagram_extractor import InstagramExtractor
|
||||
|
||||
__all__ = [
|
||||
"YouTubeExtractor",
|
||||
"BlogExtractor",
|
||||
"InstagramExtractor",
|
||||
]
|
||||
Reference in New Issue
Block a user