# Alpine Linux Python Packages Scraper

**Use case:** 

Scrape Alpine Linux Python packages from the edge main x86_64 repo with name, version, description, license, maintainer, and build date. JSON or CSV.

## Input

```json
{
  "name": "python*",
  "branch": "edge",
  "repo": "main",
  "arch": "x86_64",
  "includeDependencies": false,
  "maxItems": 5
}
```

## Output

```json
{
  "name": {
    "label": "📦 Package",
    "format": "text"
  },
  "version": {
    "label": "🏷 Version",
    "format": "text"
  },
  "branch": {
    "label": "🌿 Branch",
    "format": "text"
  },
  "repo": {
    "label": "🗂 Repository",
    "format": "text"
  },
  "arch": {
    "label": "🖥 Arch",
    "format": "text"
  },
  "license": {
    "label": "⚖️ License",
    "format": "text"
  },
  "maintainer": {
    "label": "👤 Maintainer",
    "format": "text"
  },
  "projectUrl": {
    "label": "🌐 Project",
    "format": "link"
  },
  "buildDate": {
    "label": "📅 Build Date",
    "format": "text"
  },
  "url": {
    "label": "🔗 URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "🕒 Scraped",
    "format": "date"
  },
  "error": {
    "label": "❌ Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Alpine Linux Packages Scraper](https://apify.com/parseforge/alpine-linux-packages-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/alpine-linux-packages-scraper) to learn more, explore other use cases, and run it yourself.