from pathlib import Path
import re,json
root=Path('/opt/struktur/youtube-research')
for p in root.glob('*.py'):
t=p.read_text(errors='ignore')
for i,l in enumerate(t.splitlines(),1):
if 'get_transcript(' in l or 'fetch_transcripts' in l or 'transcript' in l and 'schedule' in l.lower(): print(f'{p}:{i}:{l[:300]}')