# Export SQLAlchemy and ORM Package Data

**Use case:** 

Retrieve metadata for popular ORM packages like SQLAlchemy and Alembic. Get details on versions, authors, licenses, dependencies, and more.

## Input

```json
{
  "mode": "packages",
  "packages": [
    "sqlalchemy",
    "alembic",
    "tortoise-orm",
    "peewee",
    "ponyorm",
    "django-orm",
    "piccolo",
    "databases",
    "asyncpg",
    "psycopg2-binary"
  ],
  "topN": 100,
  "maxResults": 1000,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "name": {
    "label": "Package",
    "format": "string"
  },
  "version": {
    "label": "Version",
    "format": "string"
  },
  "summary": {
    "label": "Summary",
    "format": "string"
  },
  "author": {
    "label": "Author",
    "format": "string"
  },
  "license": {
    "label": "License",
    "format": "string"
  },
  "requiresPython": {
    "label": "Requires Python",
    "format": "string"
  },
  "recentDownloads": {
    "label": "Downloads (30d)",
    "format": "integer"
  },
  "releaseDate": {
    "label": "Released",
    "format": "string"
  },
  "pypiUrl": {
    "label": "PyPI",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [PyPI Package Scraper — Downloads, Deps & Metadata](https://apify.com/logiover/pypi-package-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/pypi-package-scraper) to learn more, explore other use cases, and run it yourself.