Metadata-Version: 2.1
Name: subsetsio
Version: 0.4.1
Summary: 
Home-page: https://github.com/subsetsio/subsets-python-sdk
Author: Nathan Snellaert
Author-email: nathan@subsets.io
Requires-Python: >=3.8,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: pandas (>=2.0.3,<3.0.0)
Requires-Dist: pyarrow (>=12.0.1,<13.0.0)
Requires-Dist: requests (>=2.31.0,<3.0.0)
Project-URL: Repository, https://github.com/subsetsio/subsets-python-sdk
Description-Content-Type: text/markdown

# Subsets Python SDK

Easily access the Subsets data warehouse using Python.

## Installation

Run the following command to install the SDK:

```pip install subsetsio```
## Usage


At the moment, you can only use the SDK for querying. To explore datasets, checking quotas, and viewing past queries, visit the subsets.io web interface.

```python
from subsets_python_sdk import query

# Query the data warehouse
df = query(sql="YOUR_SQL_QUERY_HERE", api_key="YOUR_API_KEY")
```
