# Scrape Python courses on LinkedIn Learning

**Use case:** 

Search LinkedIn Learning for Python courses. Export titles, instructors, durations, and URLs for edtech catalog research and content gap analysis.

## Input

```json
{
  "searchQueries": [
    "python"
  ],
  "startUrls": [
    {
      "url": "https://www.linkedin.com/learning/search?keywords=python"
    }
  ],
  "sortBy": "RELEVANCE",
  "entityType": "COURSE",
  "maxItems": 100,
  "includeLessons": true,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title"
  },
  "courseUrl": {
    "label": "Course url"
  },
  "instructorNames": {
    "label": "Instructor names"
  },
  "duration": {
    "label": "Duration"
  },
  "level": {
    "label": "Level"
  },
  "releasedAt": {
    "label": "Released at"
  },
  "viewerCount": {
    "label": "Viewer count"
  },
  "topics": {
    "label": "Topics"
  },
  "searchUrl": {
    "label": "Search url"
  }
}
```

## About this Actor

This example demonstrates how to use [Linkedin Courses Scraper](https://apify.com/rainminer/linkedin-learning-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/rainminer/linkedin-learning-scraper) to learn more, explore other use cases, and run it yourself.