https://github.com/capitalone/c1s-slingshot-sdk-py
https://github.com/capitalone/c1s-slingshot-sdk-py
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/capitalone/c1s-slingshot-sdk-py
- Owner: capitalone
- License: apache-2.0
- Created: 2025-05-15T15:49:44.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-08-01T18:59:12.000Z (3 months ago)
- Last Synced: 2025-08-01T19:35:41.298Z (3 months ago)
- Language: Python
- Size: 297 KB
- Stars: 1
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# Capital One Slingshot SDK Python Library

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.