# Find Popular Python Repositories on GitHub

**Use case:** 

Find high-star Python repositories with descriptions, topics, languages, license data, activity dates, and canonical GitHub URLs.

## Input

```json
{
  "mode": "search",
  "searchQuery": "language:python stars:>50000",
  "repositoryUrls": "https://github.com/facebook/react\nhttps://github.com/tensorflow/tensorflow",
  "sortBy": "stars",
  "maxResults": 3,
  "includeReadme": false,
  "includeTopics": true,
  "includeLanguages": false,
  "debugMode": false
}
```

## Output

```json
{
  "full_name": {
    "label": "Repository",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "language": {
    "label": "Language",
    "format": "text"
  },
  "stars": {
    "label": "Stars",
    "format": "number"
  },
  "forks": {
    "label": "Forks",
    "format": "number"
  },
  "topics": {
    "label": "Topics",
    "format": "array"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "created_at": {
    "label": "Created",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [🐙 GitHub Repository Intelligence - Repos & READMEs](https://apify.com/benthepythondev/github-repository-intelligence) with a specific input configuration. Visit the [Actor detail page](https://apify.com/benthepythondev/github-repository-intelligence) to learn more, explore other use cases, and run it yourself.