# OSV Python requests Vulnerability Scraper

**Use case:** 

Scrape known vulnerabilities for the PyPI package requests from the OSV database. Get IDs, severity, summaries and affected versions as JSON.

## Input

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

## 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.