Skip to main content

Kessel SDK for Python

A Python gRPC library for connecting to Project Kessel services. This provides the foundational gRPC client library for Kessel Inventory API, with plans for a higher-level SDK with fluent APIs, OAuth support, and advanced features in future releases.

Installation

Install the package using pip:

pip install kessel-sdk

Usage

This library provides direct access to Kessel Inventory API gRPC services. All generated classes are available under the kessel.inventory module.

Basic Example - Check Permissions

import grpc
from kessel.inventory.v1beta2 import (
    inventory_service_pb2_grpc,
    check_request_pb2,
    resource_reference_pb2,
    reporter_reference_pb2,
    subject_reference_pb2,
)

# Create gRPC client (insecure for development)
stub = inventory_service_pb2_grpc.KesselInventoryServiceStub(
    grpc.insecure_channel("localhost:9000")
)

# Create subject reference
subject = subject_reference_pb2.SubjectReference(
    resource=resource_reference_pb2.ResourceReference(
        reporter=reporter_reference_pb2.ReporterReference(type="rbac"),
        resource_id="alice",
        resource_type="principal"
    )
)

# Create resource reference
resource_ref = resource_reference_pb2.ResourceReference(
    resource_id="alice_club",
    resource_type="group",
    reporter=reporter_reference_pb2.ReporterReference(type="rbac"),
)

# Check permissions
try:
    response = stub.Check(
        check_request_pb2.CheckRequest(
            subject=subject,
            relation="member",
            object=resource_ref,
        )
    )
    print(f"Permission check result: {response.allowed}")
except grpc.RpcError as e:
    print(f"Error: {e.details()}")

Report Resource Example

import grpc
from google.protobuf import struct_pb2
from kessel.inventory.v1beta2 import (
    inventory_service_pb2_grpc,
    report_resource_request_pb2,
    resource_representations_pb2,
    representation_metadata_pb2,
)

stub = inventory_service_pb2_grpc.KesselInventoryServiceStub(
    grpc.insecure_channel("localhost:9000")
)

# Build protobuf Struct for common metadata
common_struct = struct_pb2.Struct()
common_struct.update({"workspace_id": "6eb10953-4ec9-4feb-838f-ba43a60880bf"})

# Build protobuf Struct for reporter-specific data  
reporter_struct = struct_pb2.Struct()
reporter_struct.update({
    "satellite_id": "ca234d8f-9861-4659-a033-e80460b2801c",
    "sub_manager_id": "e9b7d65f-3f81-4c26-b86c-2db663376eed",
    "insights_inventory_id": "c4b9b5e7-a82a-467a-b382-024a2f18c129",
    "ansible_host": "host-1",
})

# Create metadata for the resource representation
metadata = representation_metadata_pb2.RepresentationMetadata(
    local_resource_id="854589f0-3be7-4cad-8bcd-45e18f33cb81",
    api_href="https://apiHref.com/",
    console_href="https://www.consoleHref.com/",
    reporter_version="0.2.11",
)

# Build the resource representations
representations = resource_representations_pb2.ResourceRepresentations(
    metadata=metadata,
    common=common_struct,
    reporter=reporter_struct
)

# Create the report request
request = report_resource_request_pb2.ReportResourceRequest(
    type="host",
    reporter_type="hbi",
    reporter_instance_id="0a2a430e-1ad9-4304-8e75-cc6fd3b5441a",
    representations=representations,
)

try:
    response = stub.ReportResource(request)
    print("Resource reported successfully")
except grpc.RpcError as e:
    print(f"Error reporting resource: {e.details()}")

Available Services

The library includes the following gRPC services:

  • KesselInventoryService: Main inventory service
    • Check(CheckRequest) - Check permissions
    • CheckBulk(CheckBulkRequest) - Check permissions for multiple resource/subject pairs
    • CheckForUpdate(CheckForUpdateRequest) - Check for resource updates
    • CheckForUpdateBulk(CheckForUpdateBulkRequest) - Bulk check for resource updates
    • CheckSelf(CheckSelfRequest) - Check permissions for the calling principal
    • CheckSelfBulk(CheckSelfBulkRequest) - Bulk check permissions for the calling principal
    • ReportResource(ReportResourceRequest) - Report resource state
    • DeleteResource(DeleteResourceRequest) - Delete a resource
    • StreamedListObjects(StreamedListObjectsRequest) - Stream resource listings
    • StreamedListSubjects(StreamedListSubjectsRequest) - Stream subject listings

Generated Classes

All protobuf message classes are generated and available. Key classes include:

  • CheckRequest, CheckResponse
  • ReportResourceRequest, ReportResourceResponse
  • DeleteResourceRequest, DeleteResourceResponse
  • ResourceReference, SubjectReference
  • ResourceRepresentations, RepresentationMetadata

See the examples/ directory for complete working examples.

Authentication

The SDK supports OAuth 2.0 Client Credentials flow for authentication with Kessel services. The OAuth2ClientCredentials class provides automatic token management with built-in refreshing.

Note: To use authentication features, install the SDK with auth dependencies: pip install "kessel-sdk[auth]"

Development

Prerequisites

  • Python 3.11 or higher
  • buf for protobuf/gRPC code generation

Install buf:

# On macOS
brew install bufbuild/buf/buf

# On Linux
curl -sSL "https://github.com/bufbuild/buf/releases/latest/download/buf-$(uname -s)-$(uname -m)" -o "/usr/local/bin/buf" && chmod +x "/usr/local/bin/buf"

# Or see https://docs.buf.build/installation for other options

Setup

# Install additional development dependencies
pip install "kessel-sdk[dev]"

# Generate gRPC code from Kessel Inventory API
buf generate

Code Generation

This library uses buf to generate Python gRPC code from the official Kessel Inventory API protobuf definitions hosted at buf.build/project-kessel/inventory-api.

The generation is configured in buf.gen.yaml.

To regenerate the code:

buf generate

This will download the latest protobuf definitions and generate fresh Python classes in the src/ directory.

Building and Installing Locally

# Build and install the package locally
pip install -e .

Code Quality

Format and lint excluding generated gRPC files (*_pb2.py and *_pb2_grpc.py):

# Auto-format source & examples
black --exclude '.*_pb2(_grpc)?\.py' src/ examples/

# Lint source & examples
flake8 --exclude '*_pb2.py,*_pb2_grpc.py' src/ examples/

Testing

Run tests using pytest:

# Run all tests
pytest

Examples

The examples/ directory contains working examples:

  • auth.py - OAuth 2.0 authentication via a secure connection
  • auth_async.py - Async OAuth 2.0 authentication
  • auth_insecure.py - OAuth 2.0 authentication via an insecure connection
  • check.py - Permission checking
  • console_principal.py - Console principal extraction from RH identity headers
  • check_bulk.py - Bulk permission checking for multiple resource/subject pairs
  • check_for_update.py - Checking for updates
  • delete_resource.py - Deleting resources
  • rbac_fetch_workspace.py - Fetching default and root RBAC workspaces
  • rbac_list_workspaces.py - Listing RBAC workspaces (sync and async)
  • report_resource.py - Reporting resource state
  • streamed_list_objects.py - Streaming resource lists

Run examples:

python -m examples.check

Error Handling

The SDK uses standard gRPC status codes:

try:
    resp = stub.Check(request)
except grpc.RpcError as err:
    if err.code() == grpc.StatusCode.PERMISSION_DENIED:
        print("Permission denied")
    elif err.code() == grpc.StatusCode.UNAVAILABLE:
        print("Service unavailable")
    else:
        print(f"Error: {err.details()}")

Listing Workspaces

The list_workspaces helper automatically paginates through all workspaces a subject can access. Continuation tokens are handled internally, meaning you never need to manage them yourself.

from kessel.rbac.v2 import list_workspaces, list_workspaces_async, principal_subject

# `stub` is a KesselInventoryServiceStub, created as shown in the earlier examples.
subject = principal_subject("alice", "redhat")

# Lazy iteration (constant memory)
for response in list_workspaces(stub, subject, "viewer"):
    print(response.object.resource_id)

# Materialise into a list
all_workspaces = list(list_workspaces(stub, subject, "viewer"))

# Async variant
async for response in list_workspaces_async(stub, subject, "viewer"):
    print(response.object.resource_id)

See examples/rbac_list_workspaces.py for a complete working example.

Documentation

For AI-assisted development context, see AGENTS.md. Directory-local GUIDELINES.md files provide detailed conventions for specific areas of the codebase:

Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -am 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

Release Instructions

This section provides step-by-step instructions for maintainers to release a new version of the Kessel SDK for Python.

Version Management

This project follows Semantic Versioning 2.0.0. Version numbers use the format MAJOR.MINOR.PATCH:

  • MAJOR: Increment for incompatible API changes
  • MINOR: Increment for backward-compatible functionality additions
  • PATCH: Increment for backward-compatible bug fixes

Note: SDK versions across different languages (Ruby, Python, Go, etc.) do not need to be synchronized. Each language SDK can evolve independently based on its specific requirements and release schedule.

Prerequisites for Release

  • Write access to the GitHub repository
  • PyPI account with publish access to the kessel-sdk package
  • Ensure quality checks are passing
  • Review and update CHANGELOG or release notes as needed
  • Python 3.11 or higher
  • Required tools installed:
    pip install build twine
    pip install "kessel-sdk[dev]"
    
  • buf for protobuf/gRPC code generation:
    # On macOS
    brew install bufbuild/buf/buf
    
    # On Linux
    curl -sSL "https://github.com/bufbuild/buf/releases/latest/download/buf-$(uname -s)-$(uname -m)" -o "/usr/local/bin/buf" && chmod +x "/usr/local/bin/buf"
    

Release Process

  1. Update the Version
# Edit pyproject.toml and update the version field to the new version number
vim pyproject.toml
  1. Set the VERSION environment variable
export VERSION=$(python3 -c "import tomllib; print(tomllib.load(open('pyproject.toml','rb'))['project']['version'])")
echo "Releasing version: ${VERSION}"
  1. Update Dependencies (if needed)
# Regenerate gRPC code if there are updates to the Kessel Inventory API
buf generate
  1. Run Quality Checks
# Format code (excluding generated files)
black --exclude '.*_pb2(_grpc)?\.py' src/ examples/

# Run linting (excluding generated files)
flake8 --exclude '*_pb2.py,*_pb2_grpc.py' src/ examples/

# Test that examples can be imported without errors
python -c "import examples.check"
python -c "import examples.auth"

# Run tests
pytest

# Build the project
python -m build
  1. Commit and Push Changes
# Commit the version bump and any related changes
git add pyproject.toml
git commit -m "chore: bump version to ${VERSION}"
git push origin main # or git push upstream main
  1. Build and Publish the Package
# Clean any previous build artifacts
rm -rf dist/ build/

# Build the package
python -m build

# Publish to PyPI (requires PyPI account and package access)
twine upload dist/*
  1. Tag the Release
git tag -a v${VERSION} -m "Release version ${VERSION}"
git push origin v${VERSION} # or git push upstream v${VERSION}
  1. Create GitHub Release
gh release create v${VERSION} --title "v${VERSION}" --generate-notes
  • Go to the GitHub Releases page
  • Click "Create a new release"
  • Select the tag you just created
  • Add release notes describing the changes
  • Publish the release

License

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

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kessel_sdk-2.8.0.tar.gz (100.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

kessel_sdk-2.8.0-py3-none-any.whl (218.8 kB view details)

Uploaded Python 3

File details

Details for the file kessel_sdk-2.8.0.tar.gz.

File metadata

  • Download URL: kessel_sdk-2.8.0.tar.gz
  • Upload date:
  • Size: 100.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.13

File hashes

Hashes for kessel_sdk-2.8.0.tar.gz
Algorithm Hash digest
SHA256 8f689484d2a1204ad7b93ae733cce95903cf95f457279ef22233a3ef7942f6e9
MD5 63607e32260fdb7dde5d2e69415a0bbf
BLAKE2b-256 f32104188574079c90f8e676466de9c3bd5688930cd8e1e0c62048ee9ce49e04

See more details on using hashes here.

File details

Details for the file kessel_sdk-2.8.0-py3-none-any.whl.

File metadata

  • Download URL: kessel_sdk-2.8.0-py3-none-any.whl
  • Upload date:
  • Size: 218.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.13

File hashes

Hashes for kessel_sdk-2.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2159e7b68fbd8b1c38d0e8dc8a314dea8ac8cf91688f2c5e789881e612efcc33
MD5 1fc2ec37a58051ee3746d64e58803d9b
BLAKE2b-256 944f491f8e8d6bbe5f232b59c397b5249c5a9244ef733170dcaca4890ace76ab

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

2.8.0 This release

2 files

2.7.0

2 files

2.6.1

2 files

2.6.0

2 files

2.5.0

2 files

2.4.0

2 files

2.3.0

2 files

2.2.0

2 files

2.1.0

2 files

2.0.1

2 files

2.0.0

2 files

1.5.0

2 files

1.4.0

2 files

1.3.0

2 files

1.2.4

2 files

1.2.3

2 files

1.2.2

2 files

1.2.1

2 files

1.2.0

2 files

1.1.0

2 files

1.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page