# OSV Django PyPI Vulnerability Scraper

**Use case:** 

Extract known vulnerabilities for the PyPI package Django from OSV. Pull vulnerability IDs, severity, summaries and affected ranges into JSON.

## Input

```json
{
  "mode": "query",
  "packageName": "django",
  "ecosystem": "PyPI",
  "packageVersion": "",
  "commit": "",
  "vulnerabilityId": "",
  "vulnerabilityIds": [],
  "maxItems": 3
}
```

## Output

```json
{
  "id": {
    "label": "Id",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "summary": {
    "label": "Summary",
    "format": "text"
  },
  "details": {
    "label": "Details",
    "format": "text"
  },
  "modified": {
    "label": "Modified",
    "format": "text"
  },
  "published": {
    "label": "Published",
    "format": "text"
  },
  "schema_version": {
    "label": "Schema version",
    "format": "text"
  },
  "maxSeverityScore": {
    "label": "Max Severity Score",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [OSV Open Source Vulnerabilities Scraper](https://apify.com/parseforge/osv-vulnerabilities-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/osv-vulnerabilities-scraper) to learn more, explore other use cases, and run it yourself.