# Scrape MIT 6.0001 Python lecture transcripts

**Use case:** 

Download every transcript from MIT 6.0001 Intro to CS & Programming in Python — text + titles, export-ready CSV/JSON for notes or RAG.

## Input

```json
{
  "courseUrls": [
    "https://ocw.mit.edu/courses/6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/"
  ],
  "transcriptFormats": [
    "txt"
  ],
  "maxLectures": 0,
  "monitorMode": false,
  "alertOnNewLecture": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "requestConcurrency": 4,
  "diagnose": false
}
```

## Output

```json
{
  "course_title": {
    "label": "Course",
    "format": "string"
  },
  "lecture_title": {
    "label": "Lecture",
    "format": "string"
  },
  "segment_count": {
    "label": "Segments",
    "format": "integer"
  },
  "transcript": {
    "label": "Transcript",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [MIT OpenCourseWare Transcript Scraper — Lectures to Text](https://apify.com/scrapersdelight/mit-ocw-transcript-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapersdelight/mit-ocw-transcript-scraper) to learn more, explore other use cases, and run it yourself.