Metadata-Version: 2.4
Name: decompressed-sdk
Version: 0.2.1
Summary: Decompressed public SDK (Python)
Author: Decompressed
License: MIT
Project-URL: Homepage, https://github.com/decompressed/decompressed
Project-URL: Repository, https://github.com/decompressed/decompressed
Project-URL: Issues, https://github.com/decompressed/decompressed/issues
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.31.0
Dynamic: license-file

# decompressed-sdk

Public Python SDK for Decompressed.

## Install

```bash
pip install decompressed-sdk
```

## Usage

```python
from decompressed_sdk import DecompressedClient

client = DecompressedClient(
    base_url="https://api.decompressed.ai",
    api_key="dsk_test_123",
)

datasets = client.datasets.list()
```
