# Extract Security & Crypto Library Metadata from PyPI

**Use case:** 

Retrieve detailed metadata on critical security and crypto libraries, including versions, licenses, and recent downloads from PyPI.

## Input

```json
{
  "mode": "packages",
  "packages": [
    "cryptography",
    "pycryptodome",
    "paramiko",
    "pyotp",
    "bcrypt",
    "passlib",
    "certifi",
    "pyOpenSSL",
    "bandit",
    "safety"
  ],
  "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.