# Homebrew Formulae Catalog Scraper

**Use case:** 

Scrape the Homebrew formulae catalog with name, tap, description, license, homepage, version, dependencies, and install counts. Export to JSON or CSV.

## Input

```json
{
  "type": "formula",
  "maxItems": 50
}
```

## Output

```json
{
  "name": {
    "label": "📦 Name",
    "format": "text"
  },
  "type": {
    "label": "🏷 Type",
    "format": "text"
  },
  "description": {
    "label": "📝 Description",
    "format": "text"
  },
  "license": {
    "label": "⚖️ License",
    "format": "text"
  },
  "homepage": {
    "label": "🔗 Homepage",
    "format": "link"
  },
  "stableVersion": {
    "label": "🔢 Stable",
    "format": "text"
  },
  "dependencies": {
    "label": "🧩 Dependencies",
    "format": "array"
  },
  "installs365d": {
    "label": "📈 Installs (365d)",
    "format": "number"
  },
  "scrapedAt": {
    "label": "🕒 Scraped",
    "format": "date"
  },
  "error": {
    "label": "❌ Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Homebrew Formulae and Casks Scraper](https://apify.com/parseforge/homebrew-formulae-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/homebrew-formulae-scraper) to learn more, explore other use cases, and run it yourself.