# Track DevOps & CI/CD Package Metadata on PyPI

**Use case:** 

Extract metadata for popular DevOps packages like Ansible and pytest. Get details on version, author, license, dependencies, and downloads.

## Input

```json
{
  "mode": "packages",
  "packages": [
    "ansible",
    "fabric",
    "invoke",
    "nox",
    "tox",
    "pytest",
    "coverage",
    "mypy",
    "ruff",
    "black"
  ],
  "topN": 100,
  "maxResults": 1000,
  "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.