# Top 100 Python Packages by Downloads Report

**Use case:** 

Extract detailed data on the top 100 Python packages, including versions, authors, dependencies, and download statistics.

## Input

```json
{
  "mode": "topPackages",
  "packages": [],
  "topN": 100,
  "maxResults": 100,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "name": {
    "label": "Package",
    "format": "string"
  },
  "version": {
    "label": "Version",
    "format": "string"
  },
  "summary": {
    "label": "Summary",
    "format": "string"
  },
  "author": {
    "label": "Author",
    "format": "string"
  },
  "license": {
    "label": "License",
    "format": "string"
  },
  "requiresPython": {
    "label": "Requires Python",
    "format": "string"
  },
  "recentDownloads": {
    "label": "Downloads (30d)",
    "format": "integer"
  },
  "releaseDate": {
    "label": "Released",
    "format": "string"
  },
  "pypiUrl": {
    "label": "PyPI",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [PyPI Package Scraper — Downloads, Deps & Metadata](https://apify.com/logiover/pypi-package-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/pypi-package-scraper) to learn more, explore other use cases, and run it yourself.