Python SDK for BundleUp
Project description
BundleUp Python SDK
Official Python SDK for the BundleUp API. Connect to 100+ integrations with a single, unified API. Build once, integrate everywhere.
Table of Contents
- Installation
- Requirements
- Features
- Quick Start
- Authentication
- Core Concepts
- API Reference
- Error Handling
- Development
- Contributing
- License
- Support
Installation
Install the SDK using pip:
pip install bundleup-sdk
Using Poetry:
poetry add bundleup-sdk
Using pipenv:
pipenv install bundleup-sdk
Requirements
- Python: 3.8 or higher
- requests: >=2.25.0 (automatically installed)
- typing-extensions: >=4.0.0 (automatically installed)
Python Compatibility
The BundleUp SDK is tested and supported on:
- Python 3.8
- Python 3.9
- Python 3.10
- Python 3.11
- Python 3.12
Features
- ๐ Pythonic API - Follows Python best practices and PEP 8
- ๐ฆ Easy Integration - Simple, intuitive API design
- โก Async Support - Built on requests with async capabilities
- ๐ 100+ Integrations - Connect to Slack, GitHub, Jira, Linear, and many more
- ๐ฏ Unified API - Consistent interface across all integrations via Unify API
- ๐ Proxy API - Direct access to underlying integration APIs
- ๐ชถ Lightweight - Minimal dependencies
- ๐ก๏ธ Error Handling - Comprehensive error messages and validation
- ๐ Well Documented - Extensive documentation and examples
- ๐ Type Hints - Full type annotations for better IDE support
- ๐งช Tested - Comprehensive test suite with pytest
Quick Start
Get started with BundleUp in just a few lines of code:
from bundleup import BundleUp
import os
# Initialize the client
client = BundleUp(os.environ['BUNDLEUP_API_KEY'])
# List all active connections
connections = client.connection.list()
print(f"You have {len(connections)} active connections")
# Use the Proxy API to make requests to integrated services
proxy = client.proxy('conn_123')
response = proxy.get('/api/users')
users = response.json()
print(f"Users: {users}")
# Use the Unify API for standardized data across integrations
unify = client.unify('conn_456')
channels = unify.chat.channels({'limit': 10})
print(f"Chat channels: {channels['data']}")
Authentication
The BundleUp SDK uses API keys for authentication. You can obtain your API key from the BundleUp Dashboard.
Getting Your API Key
- Sign in to your BundleUp Dashboard
- Navigate to API Keys
- Click Create API Key
- Copy your API key and store it securely
Initializing the SDK
from bundleup import BundleUp
# Initialize with API key
client = BundleUp('your_api_key_here')
# Or use environment variable (recommended)
import os
client = BundleUp(os.environ['BUNDLEUP_API_KEY'])
# Or use python-dotenv
from dotenv import load_dotenv
load_dotenv()
client = BundleUp(os.getenv('BUNDLEUP_API_KEY'))
Security Best Practices
- โ DO store API keys in environment variables
- โ DO use a secrets management service in production
- โ DO rotate API keys regularly
- โ DON'T commit API keys to version control
- โ DON'T hardcode API keys in your source code
- โ DON'T share API keys in public channels
Example .env file:
BUNDLEUP_API_KEY=bu_live_1234567890abcdefghijklmnopqrstuvwxyz
Loading environment variables:
Install python-dotenv:
pip install python-dotenv
Then in your application:
from dotenv import load_dotenv
import os
load_dotenv()
from bundleup import BundleUp
client = BundleUp(os.getenv('BUNDLEUP_API_KEY'))
For Django applications:
# settings.py
import os
from pathlib import Path
BUNDLEUP_API_KEY = os.environ.get('BUNDLEUP_API_KEY')
# views.py or services
from django.conf import settings
from bundleup import BundleUp
client = BundleUp(settings.BUNDLEUP_API_KEY)
For Flask applications:
# config.py
import os
class Config:
BUNDLEUP_API_KEY = os.environ.get('BUNDLEUP_API_KEY')
# app.py
from flask import Flask
from bundleup import BundleUp
app = Flask(__name__)
app.config.from_object('config.Config')
client = BundleUp(app.config['BUNDLEUP_API_KEY'])
Core Concepts
Platform API
The Platform API provides access to core BundleUp features like managing connections and integrations. Use this API to list, retrieve, and delete connections, as well as discover available integrations.
Proxy API
The Proxy API allows you to make direct HTTP requests to the underlying integration's API through BundleUp. This is useful when you need access to integration-specific features not covered by the Unify API.
Unify API
The Unify API provides a standardized, normalized interface across different integrations. For example, you can fetch chat channels from Slack, Discord, or Microsoft Teams using the same API call.
API Reference
Connections
Manage your integration connections.
List Connections
Retrieve a list of all connections in your account.
connections = client.connection.list()
With query parameters:
connections = client.connection.list({
'integration_id': 'int_slack',
'limit': 50,
'offset': 0,
'external_id': 'user_123'
})
Query Parameters:
integration_id(str): Filter by integration IDintegration_identifier(str): Filter by integration identifier (e.g., 'slack', 'github')external_id(str): Filter by external user/account IDlimit(int): Maximum number of results (default: 50, max: 100)offset(int): Number of results to skip for pagination
Response:
[
{
'id': 'conn_123abc',
'external_id': 'user_456',
'integration_id': 'int_slack',
'is_valid': True,
'created_at': '2024-01-15T10:30:00Z',
'updated_at': '2024-01-20T14:22:00Z',
'refreshed_at': '2024-01-20T14:22:00Z',
'expires_at': '2024-04-20T14:22:00Z'
},
# ... more connections
]
Retrieve a Connection
Get details of a specific connection by ID.
connection = client.connection.retrieve('conn_123abc')
Response:
{
'id': 'conn_123abc',
'external_id': 'user_456',
'integration_id': 'int_slack',
'is_valid': True,
'created_at': '2024-01-15T10:30:00Z',
'updated_at': '2024-01-20T14:22:00Z',
'refreshed_at': '2024-01-20T14:22:00Z',
'expires_at': '2024-04-20T14:22:00Z'
}
Delete a Connection
Remove a connection from your account.
client.connection.delete('conn_123abc')
Note: Deleting a connection will revoke access to the integration and cannot be undone.
Integrations
Discover and work with available integrations.
List Integrations
Get a list of all available integrations.
integrations = client.integration.list()
With query parameters:
integrations = client.integration.list({
'status': 'active',
'limit': 100,
'offset': 0
})
Query Parameters:
status(str): Filter by status ('active', 'inactive', 'beta')limit(int): Maximum number of resultsoffset(int): Number of results to skip for pagination
Response:
[
{
'id': 'int_slack',
'identifier': 'slack',
'name': 'Slack',
'category': 'chat',
'created_at': '2023-01-01T00:00:00Z',
'updated_at': '2024-01-15T10:00:00Z'
},
# ... more integrations
]
Retrieve an Integration
Get details of a specific integration.
integration = client.integration.retrieve('int_slack')
Response:
{
'id': 'int_slack',
'identifier': 'slack',
'name': 'Slack',
'category': 'chat',
'created_at': '2023-01-01T00:00:00Z',
'updated_at': '2024-01-15T10:00:00Z'
}
Webhooks
Manage webhook subscriptions for real-time event notifications.
List Webhooks
Get all registered webhooks.
webhooks = client.webhook.list()
With pagination:
webhooks = client.webhook.list({
'limit': 50,
'offset': 0
})
Response:
[
{
'id': 'webhook_123',
'name': 'My Webhook',
'url': 'https://example.com/webhook',
'events': {
'connection.created': True,
'connection.deleted': True
},
'created_at': '2024-01-15T10:30:00Z',
'updated_at': '2024-01-20T14:22:00Z',
'last_triggered_at': '2024-01-20T14:22:00Z'
}
]
Create a Webhook
Register a new webhook endpoint.
webhook = client.webhook.create({
'name': 'Connection Events Webhook',
'url': 'https://example.com/webhook',
'events': {
'connection.created': True,
'connection.deleted': True,
'connection.updated': True
}
})
Webhook Events:
connection.created- Triggered when a new connection is establishedconnection.deleted- Triggered when a connection is removedconnection.updated- Triggered when a connection is modified
Request Body:
name(str): Friendly name for the webhookurl(str): Your webhook endpoint URLevents(dict): Events to subscribe to
Response:
{
'id': 'webhook_123',
'name': 'Connection Events Webhook',
'url': 'https://example.com/webhook',
'events': {
'connection.created': True,
'connection.deleted': True,
'connection.updated': True
},
'created_at': '2024-01-15T10:30:00Z',
'updated_at': '2024-01-15T10:30:00Z'
}
Retrieve a Webhook
Get details of a specific webhook.
webhook = client.webhook.retrieve('webhook_123')
Update a Webhook
Modify an existing webhook.
updated = client.webhook.update('webhook_123', {
'name': 'Updated Webhook Name',
'url': 'https://example.com/new-webhook',
'events': {
'connection.created': True,
'connection.deleted': False
}
})
Delete a Webhook
Remove a webhook subscription.
client.webhook.delete('webhook_123')
Webhook Payload Example
When an event occurs, BundleUp sends a POST request to your webhook URL with the following payload:
{
"id": "evt_1234567890",
"type": "connection.created",
"created_at": "2024-01-15T10:30:00Z",
"data": {
"id": "conn_123abc",
"external_id": "user_456",
"integration_id": "int_slack",
"is_valid": true,
"created_at": "2024-01-15T10:30:00Z"
}
}
Webhook Security (Flask Example)
To verify webhook signatures in a Flask application:
from flask import Flask, request, jsonify
import hmac
import hashlib
import os
app = Flask(__name__)
@app.route('/webhook', methods=['POST'])
def webhook():
signature = request.headers.get('X-Bundleup-Signature')
payload = request.get_data()
if not verify_signature(payload, signature):
return jsonify({'error': 'Invalid signature'}), 401
event = request.get_json()
process_webhook_event(event)
return '', 200
def verify_signature(payload: bytes, signature: str) -> bool:
secret = os.environ['BUNDLEUP_WEBHOOK_SECRET']
computed = hmac.new(
secret.encode(),
payload,
hashlib.sha256
).hexdigest()
return hmac.compare_digest(computed, signature)
def process_webhook_event(event: dict):
event_type = event['type']
if event_type == 'connection.created':
handle_connection_created(event['data'])
elif event_type == 'connection.deleted':
handle_connection_deleted(event['data'])
elif event_type == 'connection.updated':
handle_connection_updated(event['data'])
elif event_type == 'connection.expired':
handle_connection_expired(event['data'])
Django Example:
# views.py
from django.http import HttpResponse, HttpResponseForbidden
from django.views.decorators.csrf import csrf_exempt
from django.conf import settings
import hmac
import hashlib
import json
@csrf_exempt
def bundleup_webhook(request):
if request.method != 'POST':
return HttpResponseForbidden()
signature = request.META.get('HTTP_X_BUNDLEUP_SIGNATURE')
payload = request.body
if not verify_signature(payload, signature):
return HttpResponseForbidden('Invalid signature')
event = json.loads(payload)
process_webhook_event(event)
return HttpResponse(status=200)
def verify_signature(payload: bytes, signature: str) -> bool:
secret = settings.BUNDLEUP_WEBHOOK_SECRET
computed = hmac.new(
secret.encode(),
payload,
hashlib.sha256
).hexdigest()
return hmac.compare_digest(computed, signature)
Proxy API
Make direct HTTP requests to integration APIs through BundleUp.
Creating a Proxy Instance
proxy = client.proxy('conn_123abc')
GET Request
response = proxy.get('/api/users')
data = response.json()
print(data)
With query parameters:
response = proxy.get('/api/users', params={'limit': 10})
With custom headers:
response = proxy.get('/api/users', headers={
'X-Custom-Header': 'value',
'Accept': 'application/json'
})
POST Request
response = proxy.post('/api/users', body={
'name': 'John Doe',
'email': 'john@example.com',
'role': 'developer'
})
new_user = response.json()
print(f"Created user: {new_user}")
With custom headers:
response = proxy.post(
'/api/users',
body={'name': 'John Doe'},
headers={
'Content-Type': 'application/json',
'X-API-Version': '2.0'
}
)
PUT Request
response = proxy.put('/api/users/123', body={
'name': 'Jane Doe',
'email': 'jane@example.com'
})
updated_user = response.json()
PATCH Request
response = proxy.patch('/api/users/123', body={
'email': 'newemail@example.com'
})
partially_updated = response.json()
DELETE Request
response = proxy.delete('/api/users/123')
if response.ok:
print('User deleted successfully')
Working with Response Objects
The Proxy API returns requests Response objects:
response = proxy.get('/api/users')
# Access response body as JSON
data = response.json()
# Check status code
print(response.status_code) # 200
# Check if successful
print(response.ok) # True
# Access headers
print(response.headers['content-type'])
# Access raw content
content = response.content
# Access text
text = response.text
# Handle errors
try:
response = proxy.get('/api/invalid')
response.raise_for_status()
except requests.HTTPError as e:
print(f"Request failed: {e}")
Unify API
Access unified, normalized data across different integrations with a consistent interface.
Creating a Unify Instance
unify = client.unify('conn_123abc')
Chat API
The Chat API provides a unified interface for chat platforms like Slack, Discord, and Microsoft Teams.
List Channels
Retrieve a list of channels from the connected chat platform.
result = unify.chat.channels({
'limit': 100,
'after': None,
'include_raw': False
})
print(f"Channels: {result['data']}")
print(f"Next cursor: {result['metadata']['next']}")
Parameters:
limit(int, optional): Maximum number of channels to return (default: 100, max: 1000)after(str, optional): Pagination cursor from previous responseinclude_raw(bool, optional): Include raw API response from the integration (default: False)
Response:
{
'data': [
{
'id': 'C1234567890',
'name': 'general'
},
{
'id': 'C0987654321',
'name': 'engineering'
}
],
'metadata': {
'next': 'cursor_abc123' # Use this for pagination
},
'_raw': { # Only present if include_raw=True
# Original response from the integration API
}
}
Pagination example:
all_channels = []
cursor = None
while True:
result = unify.chat.channels({
'limit': 100,
'after': cursor
})
all_channels.extend(result['data'])
cursor = result['metadata']['next']
if cursor is None:
break
print(f"Fetched {len(all_channels)} total channels")
Git API
The Git API provides a unified interface for version control platforms like GitHub, GitLab, and Bitbucket.
List Repositories
result = unify.git.repos({
'limit': 50,
'after': None,
'include_raw': False
})
print(f"Repositories: {result['data']}")
Response:
{
'data': [
{
'id': '123456',
'name': 'my-awesome-project',
'full_name': 'organization/my-awesome-project',
'description': 'An awesome project',
'url': 'https://github.com/organization/my-awesome-project',
'created_at': '2023-01-15T10:30:00Z',
'updated_at': '2024-01-20T14:22:00Z',
'pushed_at': '2024-01-20T14:22:00Z'
}
],
'metadata': {
'next': 'cursor_xyz789'
}
}
List Pull Requests
result = unify.git.pulls('organization/repo-name', {
'limit': 20,
'after': None,
'include_raw': False
})
print(f"Pull Requests: {result['data']}")
Parameters:
repo_name(str, required): Repository name in the format 'owner/repo'limit(int, optional): Maximum number of PRs to returnafter(str, optional): Pagination cursorinclude_raw(bool, optional): Include raw API response
Response:
{
'data': [
{
'id': '12345',
'number': 42,
'title': 'Add new feature',
'description': 'This PR adds an awesome new feature',
'draft': False,
'state': 'open',
'url': 'https://github.com/org/repo/pull/42',
'user': 'john-doe',
'created_at': '2024-01-15T10:30:00Z',
'updated_at': '2024-01-20T14:22:00Z',
'merged_at': None
}
],
'metadata': {
'next': None
}
}
List Tags
result = unify.git.tags('organization/repo-name', {'limit': 50})
print(f"Tags: {result['data']}")
Response:
{
'data': [
{
'name': 'v1.0.0',
'commit_sha': 'abc123def456'
},
{
'name': 'v0.9.0',
'commit_sha': 'def456ghi789'
}
],
'metadata': {
'next': None
}
}
List Releases
result = unify.git.releases('organization/repo-name', {'limit': 10})
print(f"Releases: {result['data']}")
Response:
{
'data': [
{
'id': '54321',
'name': 'Version 1.0.0',
'tag_name': 'v1.0.0',
'description': 'Initial release with all the features',
'prerelease': False,
'url': 'https://github.com/org/repo/releases/tag/v1.0.0',
'created_at': '2024-01-15T10:30:00Z',
'released_at': '2024-01-15T10:30:00Z'
}
],
'metadata': {
'next': None
}
}
Project Management API
The PM API provides a unified interface for project management platforms like Jira, Linear, and Asana.
List Issues
result = unify.pm.issues({
'limit': 100,
'after': None,
'include_raw': False
})
print(f"Issues: {result['data']}")
Response:
{
'data': [
{
'id': 'PROJ-123',
'url': 'https://jira.example.com/browse/PROJ-123',
'title': 'Fix login bug',
'status': 'in_progress',
'description': 'Users are unable to log in',
'created_at': '2024-01-15T10:30:00Z',
'updated_at': '2024-01-20T14:22:00Z'
}
],
'metadata': {
'next': 'cursor_def456'
}
}
Filtering and sorting:
open_issues = [issue for issue in result['data'] if issue['status'] == 'open']
sorted_by_date = sorted(
result['data'],
key=lambda x: x['created_at'],
reverse=True
)
Error Handling
The SDK raises exceptions for errors. Always wrap SDK calls in try-except blocks for proper error handling.
try:
connections = client.connection.list()
except Exception as e:
print(f"Failed to fetch connections: {e}")
Development
Setting Up Development Environment
# Clone the repository
git clone https://github.com/bundleup/bundleup-sdk-python.git
cd bundleup-sdk-python
# Create virtual environment
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install dependencies
pip install -e ".[dev]"
# Or using requirements files
pip install -r requirements.txt
pip install -r requirements-dev.txt
# Run tests
pytest
# Run tests with coverage
pytest --cov=bundleup --cov-report=html
# Run type checker
mypy bundleup
# Run linter
flake8 bundleup
black bundleup --check
# Format code
black bundleup
Project Structure
bundleup/
โโโ __init__.py # Main entry point
โโโ proxy.py # Proxy API implementation
โโโ resources/
โ โโโ base.py # Base resource class
โ โโโ connection.py # Connections API
โ โโโ integration.py # Integrations API
โ โโโ webhook.py # Webhooks API
โโโ unify/
โโโ __init__.py # Unify client wrapper
โโโ base.py # Base Unify class
โโโ chat.py # Chat Unify API
โโโ git.py # Git Unify API
โโโ pm.py # PM Unify API
tests/ # Test files
Running Tests
# Run all tests
pytest
# Run specific test file
pytest tests/test_proxy.py
# Run with verbose output
pytest -v
# Run with coverage
pytest --cov=bundleup
# Run with coverage report
pytest --cov=bundleup --cov-report=html
open htmlcov/index.html
# Run specific test
pytest tests/test_proxy.py::TestProxy::test_get_request
Building and Publishing
# Build the package
python -m build
# Check the distribution
twine check dist/*
# Upload to Test PyPI
twine upload --repository testpypi dist/*
# Upload to PyPI
twine upload dist/*
Code Quality Tools
# Black (code formatter)
black bundleup
# isort (import sorter)
isort bundleup
# flake8 (linter)
flake8 bundleup
# mypy (type checker)
mypy bundleup
# pylint (static analyzer)
pylint bundleup
# Run all checks
black bundleup && isort bundleup && flake8 bundleup && mypy bundleup
Contributing
We welcome contributions to the BundleUp Python SDK! Here's how you can help:
Reporting Bugs
- Check if the bug has already been reported in GitHub Issues
- If not, create a new issue with:
- Clear title and description
- Steps to reproduce
- Expected vs actual behavior
- Package version and Python version
Suggesting Features
- Open a new issue with the "feature request" label
- Describe the feature and its use case
- Explain why this feature would be useful
Pull Requests
- Fork the repository
- Create a new branch:
git checkout -b feature/my-new-feature - Make your changes
- Write or update tests
- Ensure all tests pass:
pytest - Run code quality checks:
black bundleup && flake8 bundleup - Commit your changes:
git commit -am 'Add new feature' - Push to the branch:
git push origin feature/my-new-feature - Submit a pull request
Development Guidelines
- Follow PEP 8 style guide
- Add type hints to all functions
- Write docstrings for all public APIs
- Add tests for new features
- Update documentation for API changes
- Keep commits focused and atomic
- Write clear commit messages
License
This package is available as open source under the terms of the MIT License.
Copyright (c) 2024 BundleUp
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Support
Need help? We're here for you!
Documentation
- Official Docs: https://docs.bundleup.io
- API Reference: https://docs.bundleup.io/api
- SDK Guides: https://docs.bundleup.io/sdk/python
Community
- Discord: https://discord.gg/bundleup
- GitHub Discussions: https://github.com/bundleup/bundleup-sdk-python/discussions
- Stack Overflow: Tag your questions with
bundleup
Direct Support
- Email: support@bundleup.io
- GitHub Issues: https://github.com/bundleup/bundleup-sdk-python/issues
- Twitter: @bundleup_io
Enterprise Support
For enterprise customers, we offer:
- Priority support with SLA
- Dedicated support channel
- Architecture consultation
- Custom integration assistance
Contact enterprise@bundleup.io for more information.
Code of Conduct
Everyone interacting in the BundleUp project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.
Made with โค๏ธ by the BundleUp team
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file bundleup_sdk-0.2.0.tar.gz.
File metadata
- Download URL: bundleup_sdk-0.2.0.tar.gz
- Upload date:
- Size: 25.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1e82ebe5e5e51ec1f641beffa2ad1d7991d8e41f4a67c030ddc8e1eb8ecdeaa
|
|
| MD5 |
b8cd27c1f11c80aabddb003b30b91c32
|
|
| BLAKE2b-256 |
2b8969db17f39c61035d15c312ebc4359c791468279257db104beb2a1b65909f
|
Provenance
The following attestation bundles were made for bundleup_sdk-0.2.0.tar.gz:
Publisher:
publish.yml on bundleup/bundleup-sdk-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
bundleup_sdk-0.2.0.tar.gz -
Subject digest:
c1e82ebe5e5e51ec1f641beffa2ad1d7991d8e41f4a67c030ddc8e1eb8ecdeaa - Sigstore transparency entry: 1004037356
- Sigstore integration time:
-
Permalink:
bundleup/bundleup-sdk-python@222327a66622f2fae9052601944748ccb78583d0 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/bundleup
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@222327a66622f2fae9052601944748ccb78583d0 -
Trigger Event:
push
-
Statement type:
File details
Details for the file bundleup_sdk-0.2.0-py3-none-any.whl.
File metadata
- Download URL: bundleup_sdk-0.2.0-py3-none-any.whl
- Upload date:
- Size: 15.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2313290a7e22681f30a2f8f8bc0acec147047d9daf28fd4b4861d1906125bdf9
|
|
| MD5 |
0a0d8b6d72e1a6e3c986dab4502d8399
|
|
| BLAKE2b-256 |
c25c769f5586d2cade9a868eb384e8cc34f9dc18315f1b5b606f5bafa7973818
|
Provenance
The following attestation bundles were made for bundleup_sdk-0.2.0-py3-none-any.whl:
Publisher:
publish.yml on bundleup/bundleup-sdk-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
bundleup_sdk-0.2.0-py3-none-any.whl -
Subject digest:
2313290a7e22681f30a2f8f8bc0acec147047d9daf28fd4b4861d1906125bdf9 - Sigstore transparency entry: 1004037375
- Sigstore integration time:
-
Permalink:
bundleup/bundleup-sdk-python@222327a66622f2fae9052601944748ccb78583d0 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/bundleup
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@222327a66622f2fae9052601944748ccb78583d0 -
Trigger Event:
push
-
Statement type: