Metadata-Version: 2.1
Name: conductor-py
Version: 0.0.4
Summary: Python bindings for the Conductor API
Author-email: Danny Nemer <hi@dannynemer.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Requires-Dist: ariadne-codegen>=0.6
Description-Content-Type: text/markdown

# Conductor Python Library

## Installation

```sh
pip install --upgrade conductor-py
```

## Usage

```py
import conductor
conductor.set_api_key("sk_test_...")

# Fetch all invoices for the specified NetSuite account, which previously
# connected to our Conductor account.
invoices = conductor.netsuite.invoice.findMany(connection_id="conn_123...")
```
