> ## Documentation Index
> Fetch the complete documentation index at: https://docs.parsetx.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Python SDK

> Official Python client for ParseTx.

## Installation

```bash theme={null}
pip install parsetx
```

## Usage

```python theme={null}
from parsetx import ParseTxClient
import time

client = ParseTxClient(api_key='ptx_live_...')

# Synchronous (up to 10 items)
response = client.enrich([
    'AMZN Mktp US*1A2B3C4D5'
])
print(response['results'])

# Asynchronous Batch (up to 500 items)
job_id = client.enrich_async([
    # ... 500 items ...
])

# Poll until complete
job_result = client.poll_job(job_id)
print(job_result['results'])
```
