1
0

refactor: Simplify fetch_data and to_csv methods in YoutubeFavoritesScraper

This commit is contained in:
Jon Michael Aanes (aider) 2025-03-15 21:54:19 +01:00
parent 965689df7a
commit 2a4aec9d33

View File

@ -15,10 +15,7 @@ class YoutubeFavoritesScraper(Scraper):
deduplicate_mode: DeduplicateMode = DeduplicateMode.BY_ALL_COLUMNS
def fetch_data(self) -> list[dict]:
"""
Use yt-dlp to fetch the list of favorited videos.
This is a placeholder for invoking yt-dlp and parsing its output.
"""
"""Use yt-dlp to fetch the list of favorited videos. This is a placeholder for invoking yt-dlp and parsing its output."""
try:
# Replace 'YOUR_FAVORITES_ID' with your actual favorites playlist ID.
result = subprocess.run(
@ -32,33 +29,18 @@ class YoutubeFavoritesScraper(Scraper):
check=True,
text=True,
)
videos = [json.loads(line) for line in result.stdout.splitlines()]
return videos
except Exception as e:
logger.error('Failed to fetch YouTube favorites: %s', e)
return [json.loads(line) for line in result.stdout.splitlines()]
except Exception:
logger.exception('Failed to fetch YouTube favorites')
raise
def to_csv(self, videos: list[dict]) -> str:
"""
Convert the list of videos to CSV format.
"""
output = []
"""Convert the list of videos to CSV format."""
headers = ['id', 'title', 'url', 'upload_date']
output.append(headers)
for video in videos:
output.append(
[
video.get('id'),
video.get('title'),
video.get('url'),
video.get('upload_date'),
],
)
rows = [headers] + [[video.get('id'), video.get('title'), video.get('url'), video.get('upload_date')] for video in videos]
from io import StringIO
sio = StringIO()
csv_writer = csv.writer(sio)
csv_writer.writerows(output)
csv.writer(sio).writerows(rows)
return sio.getvalue()
def run(self) -> None: