Metadata-Version: 2.4
Name: polymarket-gamma-sdk
Version: 1.0.0
Summary: Asynchronous Python SDK for Polymarket's Gamma API
Home-page: https://github.com/mateo-bivol/polymarket-gamma-sdk
Author: Mateo Bivol
Author-email: mateo.bivol@mail.utoronto.ca
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: httpx>=0.24.0
Requires-Dist: pydantic>=2.0.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Polymarket Gamma SDK

An asynchronous Python SDK for Polymarket's Gamma API, built with `httpx` and `pydantic`.

> [!IMPORTANT]
> **Disclaimer**: This is an community-maintained, unofficial SDK. This project is **not** affiliated with, endorsed by, or in any way associated with Polymarket.

This SDK provides a clean, type-safe interface to interact with Polymarket's market discovery and metadata API.

## Features

- **Asynchronous**: Built on `httpx` for high-performance non-blocking I/O.
- **Type-Safe**: All responses are parsed into Pydantic v2 models.
- **Hierarchical Client**: Logically grouped endpoints (e.g., `client.markets`, `client.sports`).
- **Robust Exception Handling**: Custom exceptions for `404 Not Found`, validation errors, and general API issues.
- **URL Resolution**: Convert Polymarket web URLs (markets or events) directly into SDK objects.
- **Fully Documented**: Docstrings for all classes and methods.

## Installation

### Prerequisites
- Python 3.8+

### Setup
We recommend using a virtual environment:

```bash
python -m venv .venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate
```

Install dependencies:
```bash
pip install -r requirements.txt
```

Or install the package in editable mode:
```bash
pip install -e .
```

## Quick Start

```python
import asyncio
from py_gamma_sdk import GammaClient

async def main():
    async with GammaClient() as client:
        # 1. Check API Health
        status = await client.get_status()
        print(f"API Health: {status}")

        # 2. Fetch a specific Market
        market = await client.markets.get_by_slug("will-barron-attend-georgetown")
        print(f"Question: {market.question}")
        print(f"Current Odds: {market.outcomes}")

        # 3. Resolve a Polymarket URL
        url = "https://polymarket.com/market/will-china-blockade-taiwan-by-june-30"
        obj = await client.resolve_url(url)
        if obj:
            print(f"Resolved {type(obj).__name__}: {getattr(obj, 'question', getattr(obj, 'title', ''))}")

if __name__ == "__main__":
    asyncio.run(main())
```

## Detailed Usage

### Markets
```python
# List active markets
markets = await client.markets.list(active=True, limit=10)

# Get market by ID
market = await client.markets.get_by_id("12345")

# Get tags for a market
tags = await client.markets.get_tags("12345")
```

### Events
Events group multiple markets together.
```python
# List events with a specific slug
events = await client.events.list(slug="fed-decision")

# Get event by slug
event = await client.events.get_by_slug("fed-decision-in-january")
```

### Sports & Teams
```python
# Get all sports metadata (leagues, images, etc.)
sports = await client.sports.get_metadata()

# List teams in a specific league
teams = await client.sports.list_teams(league="NBA")
```

### Error Handling
The SDK uses a custom exception hierarchy:
```python
from py_gamma_sdk.exceptions import GammaAPIError, NotFoundError

try:
    market = await client.markets.get_by_id("invalid-id")
except NotFoundError:
    print("Market doesn't exist.")
except GammaAPIError as e:
    print(f"API Error ({e.status_code}): {e}")
```

## API Reference

### GammaClient (Main)
- `await client.get_status()`: Check the API health status. Returns "OK" if healthy.
- `await client.search(query: str, **params)`: Search for markets, events, and other entities.
- `await client.resolve_url(url: str)`: Resolve a Polymarket web URL (market or event) to an SDK object.

### Markets (`client.markets`)
- `await client.markets.list(**params)`: List markets with optional filters (active, limit, offset, etc.).
- `await client.markets.get_by_id(market_id: str)`: Get a specific market by its ID.
- `await client.markets.get_tags(market_id: str)`: Get tags associated with a market.
- `await client.markets.get_by_slug(slug: str)`: Get a specific market by its URL slug.

### Events (`client.events`)
- `await client.events.list(**params)`: List events with optional filters.
- `await client.events.get_by_id(event_id: str)`: Get a specific event by its ID.
- `await client.events.get_tags(event_id: str)`: Get tags associated with an event.
- `await client.events.get_by_slug(slug: str)`: Get a specific event by its URL slug.

### Tags (`client.tags`)
- `await client.tags.list(**params)`: List available tags.
- `await client.tags.get_by_id(tag_id: str)`: Get a specific tag by its ID.
- `await client.tags.get_by_slug(slug: str)`: Get a specific tag by its URL slug.
- `await client.tags.get_related_by_id(tag_id: str)`: Get raw related tag data by ID.
- `await client.tags.get_related_by_slug(slug: str)`: Get raw related tag data by slug.
- `await client.tags.get_tags_related_to_id(tag_id: str)`: Get Tag objects related to a specific tag ID.
- `await client.tags.get_tags_related_to_slug(slug: str)`: Get Tag objects related to a specific tag slug.

### Sports (`client.sports`)
- `await client.sports.list_teams(**params)`: List sports teams with optional filters.
- `await client.sports.get_metadata()`: Get metadata for all available sports.
- `await client.sports.get_market_types()`: Get valid sports market types.

### Series (`client.series`)
- `await client.series.list(**params)`: List series.
- `await client.series.get_by_id(series_id: str)`: Get a specific series by ID.

### Comments (`client.comments`)
- `await client.comments.list(**params)`: List comments (e.g., query by `parentEntityId`).
- `await client.comments.get_by_id(comment_id: str)`: Get a specific comment by ID.
- `await client.comments.get_by_user(address: str)`: Get all comments made by a specific wallet address.

### Profiles (`client.profiles`)
- `await client.profiles.get_by_address(address: str)`: Get the profile for a specific wallet address.

## Development & Testing

Run unit tests:
```bash
python -m pytest tests
```

Run live integration tests (requires internet):
```bash
python -m pytest tests/test_live.py
```

## License
MIT
