An open API service indexing awesome lists of open source software.

https://github.com/capitalone/c1s-slingshot-sdk-py


https://github.com/capitalone/c1s-slingshot-sdk-py

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

# 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.