Metadata-Version: 2.4
Name: vega-analytica
Version: 0.1.0
Summary: Python client for the Vega Analytica API
Author: Vega Analytica Pty Ltd
License: Proprietary
Project-URL: Homepage, https://vega-analytica.com
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.31.0
Dynamic: license-file

# Vega Analytica Python Client

Python client for the Vega Analytica API.

## Installation

```bash
pip install vega-analytica
```

## Usage

```python
from vega_analytica import RESTClient

client = RESTClient("YOUR_API_KEY")

result = client.cipher(
    ticker="AAPL",
    region="USA",
    trade_date="2025-01-02",
)

print(result)
```

## Echo example

```python
from vega_analytica import RESTClient

client = RESTClient("YOUR_API_KEY")

result = client.echo(
    ticker="AAPL",
    region="USA",
    payload={
        "strategy": "long_call",
        "strike": 400,
        "expiry": "2027-03-21",
    },
)

print(result)
```
