Metadata-Version: 2.4
Name: c1s-slingshot-sdk-py
Version: 0.6.0
Summary: Slingshot SDK
Author: Capital One Software
License-Expression: Apache-2.0
License-File: LICENSE
License-File: NOTICE
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python
Requires-Dist: backoff>=2.2.1
Requires-Dist: httpx>=0.23
Requires-Dist: certifi>=2021.10.8
Requires-Dist: idna>=2.8
Requires-Dist: sniffio>=1.2.0
Requires-Dist: anyio>=2.0.0
Requires-Python: >=3.9, <3.14
Project-URL: Changelog, https://github.com/capitalone/c1-slingshot-sdk-py/blob/main/CHANGELOG.md
Project-URL: Home, https://github.com/capitalone/c1-slingshot-sdk-py
Description-Content-Type: text/markdown

# Capital One Slingshot SDK Python Library

![Capital One Slingshot Logo](docs/_static/slingshot-small-logo.png)

The official Python SDK for Capital One's Slingshot platform. This library provides a convenient way to interact with the Slingshot API from your Python applications.

## 📚 Documentation

**➤ [Complete Documentation & API Reference](https://capitalone.github.io/c1s-slingshot-sdk-py/)**

For comprehensive guides, examples, and API documentation, visit our GitHub Pages documentation site.

## Table of Contents

- [Installation](#installation)
- [Quick Start](#quick-start)
- [Contributing](#contributing)

## Installation

Install the SDK using pip:

```bash
pip install c1s-slingshot-sdk-py
```

## Quick Start

```python
from slingshot import SlingshotClient

# Initialize the client (uses SLINGSHOT_API_KEY environment variable)
client = SlingshotClient()

# List all projects
projects = client.projects.list()
print(f"Found {len(projects)} projects")
```

## Contributing

> [!IMPORTANT]
> At this time, we are only accepting pull requests from Capital One employees. External pull requests will be closed.

🔧 **[Contributing Guide](CONTRIBUTING.md)** - Development setup, testing, and release process

## License

This project is licensed under the Apache 2.0 License - see the [LICENSE](LICENSE) file for details.
