Skip to main content

SDK for KillB API V2

Project description

Kill-B Python SDK

This is the official Python SDK for interacting with the Kill-B API V2.


Installation

You can install the SDK via pip:

  pip install killb-sdk-python

Requirements

This SDK requires only the requests library. You can install it using pip:

  pip install requests

Usage

Authentication

To start using the SDK, you need to authenticate with your Kill-B API credentials:

from killb_sdk_python import Client

# Replace with your environment, email, password, and optional API key
api_client = Client(environment='production', email='your@email.com', password='your_password', api_key='your_api_key')

Creating a User

You can create a user using the User class:

# Create user data
user_data = {
    'firstName': 'John',
    'lastName': 'Doe',
    'dateOfBirth': '1990-01-01',
    'email': 'john@example.com',
    # Add other required fields
}

# Create the user
user_client = api_client.User.create(user_data)
print("User created successfully:", user_client)

For more detailed documentation and examples, please refer to the API documentation.

Project details


Download files

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

Source Distribution

killb_sdk_python-1.0.1.tar.gz (10.2 kB view hashes)

Uploaded Source

Built Distribution

killb_sdk_python-1.0.1-py3-none-any.whl (14.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page