A comprehensive archive of transcripts from Lenny's Podcast, organized for easy use with AI coding assistants and language models.
Lenny's Podcast features interviews with world-class product leaders and growth experts, providing concrete, actionable, and tactical advice to help you build, launch, and grow your own product.
episodes/
├── guest-name/
│ └── transcript.md
├── another-guest/
│ └── transcript.md
└── ...
Each episode has its own folder named after the guest(s), containing a transcript.md file with:
-
YAML Frontmatter - Structured metadata including:
guest: Name of the guest(s)title: Full episode titleyoutube_url: Link to the YouTube videovideo_id: YouTube video IDdescription: Episode descriptionduration_seconds: Episode length in secondsduration: Human-readable durationview_count: Number of views at time of archivalchannel: Channel name
-
Transcript Content - Full text transcript of the episode
Each transcript is a standalone markdown file that can be easily parsed by AI systems. The YAML frontmatter provides structured metadata that can be extracted programmatically.
import yaml
import os
def read_transcript(filepath):
with open(filepath, 'r') as f:
content = f.read()
# Split frontmatter and content
parts = content.split('---')
if len(parts) >= 3:
frontmatter = yaml.safe_load(parts[1])
transcript = '---'.join(parts[2:])
return frontmatter, transcript
return None, content
# Example usage
metadata, transcript = read_transcript('episodes/brian-chesky/transcript.md')
print(f"Guest: {metadata['guest']}")
print(f"Title: {metadata['title']}")You can search across all transcripts to find episodes discussing specific topics:
# Find episodes mentioning "product-market fit"
grep -r "product-market fit" episodes/# List all episode folders
ls episodes/This archive contains 284 transcripts from Lenny's Podcast episodes.
- Transcripts: Sourced from the Lenny's Podcast Transcripts Archive
- Metadata: Extracted from the Lenny's Podcast YouTube channel
If you notice any issues with the transcripts or metadata, please open an issue or submit a pull request.
This archive is for educational and research purposes. All content belongs to Lenny's Podcast and the respective guests. Please visit the official YouTube channel to support the creators.
The transcripts are provided for personal and educational use. Please respect the original content creators' rights.