# JetBrains Python Plugins Search Scraper

**Use case:** 

Scrape JetBrains Marketplace Python plugins with name, ID, vendor, ratings, and download counts from search results. Export to JSON or CSV.

## Input

```json
{
  "mode": "search",
  "query": "python",
  "ids": [],
  "maxItems": 5
}
```

## Output

```json
{
  "imageUrl": {
    "label": "🖼 Icon",
    "format": "image"
  },
  "name": {
    "label": "📌 Name",
    "format": "text"
  },
  "url": {
    "label": "🔗 URL",
    "format": "link"
  },
  "id": {
    "label": "🆔 ID",
    "format": "number"
  },
  "xmlId": {
    "label": "🏷 XML ID",
    "format": "text"
  },
  "vendorName": {
    "label": "🏢 Vendor",
    "format": "text"
  },
  "rating": {
    "label": "⭐ Rating",
    "format": "number"
  },
  "downloads": {
    "label": "⬇ Downloads",
    "format": "number"
  },
  "tags": {
    "label": "🗂 Tags",
    "format": "array"
  },
  "compatibleIdes": {
    "label": "💻 IDEs",
    "format": "array"
  },
  "scrapedAt": {
    "label": "🕒 Scraped",
    "format": "date"
  },
  "error": {
    "label": "❌ Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [JetBrains Marketplace Plugins Scraper](https://apify.com/parseforge/jetbrains-marketplace-plugins-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/jetbrains-marketplace-plugins-scraper) to learn more, explore other use cases, and run it yourself.