# Top Python Web Scraping Repositories on GitHub

**Use case:** 

Get a list of popular GitHub repositories for Python web scraping. Fetch data on stars, topics, and forks without an API key.

## Input

```json
{
  "searchQuery": "topic:web-scraping language:python stars:>100",
  "language": "",
  "sort": "stars",
  "order": "desc",
  "maxRepos": 150,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "fullName": {
    "label": "Full Name",
    "format": "string"
  },
  "owner": {
    "label": "Owner",
    "format": "string"
  },
  "language": {
    "label": "Language",
    "format": "string"
  },
  "stars": {
    "label": "Stars",
    "format": "integer"
  },
  "forks": {
    "label": "Forks",
    "format": "integer"
  },
  "openIssues": {
    "label": "Open Issues",
    "format": "integer"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "updatedAt": {
    "label": "Updated At",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [GitHub Repository Scraper - Stars, Topics, Trending](https://apify.com/logiover/github-repository-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/github-repository-scraper) to learn more, explore other use cases, and run it yourself.