Skip to main content

Devopness API Python SDK - Painless essential DevOps to everyone

Project description

Devopness SDK - Python

PyPI version

The official Devopness SDK for Python.

This SDK provides predefined classes to access Devopness platform resources. It's suitable for building CLI tools, backend services, or automation scripts, helping you interact with the Devopness API.

📌 Table of Contents

Usage

The SDK supports both asynchronous and synchronous usage, so you can choose based on your needs.

Install

Install the SDK using your preferred package manager:

# Using uv
uv add devopness

# Using poetry
poetry add devopness

# Using pip
pip install devopness

Initializing

Import the SDK and create an instance of DevopnessClient or DevopnessClientAsync:

from devopness import DevopnessClient, DevopnessClientAsync

devopness = DevopnessClient()
devopness_async = DevopnessClientAsync()

Custom Configuration

You can provide a custom configuration when initializing the client:

from devopness import DevopnessClient, DevopnessClientAsync, DevopnessClientConfig

config = DevopnessClientConfig(base_url='https://api.devopness.com', timeout=10)

devopness = DevopnessClient(config)
devopness_async = DevopnessClientAsync(config)

Configuration options:

Parameter Default Description
base_url https://api.devopness.com Base URL for all API requests
timeout 30 Timeout for HTTP requests (in seconds)
default_encoding utf-8 Encoding for response content
debug False Prints HTTP debug output and validation warnings
strict_validation_mode True Raises Pydantic validation errors for API responses

Response validation mode

The SDK validates API responses against generated Pydantic models by default. This strict behavior helps surface mismatches between the API response and the documented contract. Consumers that must keep running when a response does not match the model can opt out by setting strict_validation_mode=False:

from devopness import DevopnessClient, DevopnessClientConfig

config = DevopnessClientConfig(
    strict_validation_mode=False,
    debug=True,
)
devopness = DevopnessClient(config)

When strict validation is disabled, response payloads that fail Pydantic validation are returned as opaque data that still supports field access, such as response.data.id or response.data["id"]. If debug=True, the SDK emits a warning with details about the validation error; otherwise, it continues quietly.

Authentication

Authentication with Personal Access Token

Ensure you have a Personal Access Token from Devopness. If you don't have one, see Add a Personal Access Token.

Asynchronous usage
import asyncio
from devopness import DevopnessClientAsync, DevopnessClientConfig

# Option 1: Pass token during initialization
config = DevopnessClientConfig(api_token='your-personal-access-token-here')
devopness = DevopnessClientAsync(config)

# Option 2: Set token after initialization
devopness = DevopnessClientAsync()
devopness.api_token = 'your-personal-access-token-here'

async def main():
    current_user = await devopness.users.get_user_me()
    print(f'User ID: {current_user.data.id}')

if __name__ == "__main__":
    asyncio.run(main())
Synchronous usage
from devopness import DevopnessClient, DevopnessClientConfig

# Option 1: Pass token during initialization
config = DevopnessClientConfig(api_token='your-personal-access-token-here')
devopness = DevopnessClient(config)

# Option 2: Set token after initialization
devopness = DevopnessClient()
devopness.api_token = 'your-personal-access-token-here'

def main():
    current_user = devopness.users.get_user_me()
    print(f'User ID: {current_user.data.id}')

if __name__ == "__main__":
    main()

Authentication with Project API Token

Ensure you have a Project API Token from Devopness. If you don't have one, see Add a Project API Token.

Asynchronous usage
import asyncio
from devopness import DevopnessClientAsync

devopness = DevopnessClientAsync()
devopness.api_token = 'your-project-api-token-here'

async def main():
    project = await devopness.projects.get_project(project_id=123)
    print(f'Project name: {project.data.name}')

if __name__ == "__main__":
    asyncio.run(main())
Synchronous usage
from devopness import DevopnessClient

devopness = DevopnessClient()
devopness.api_token = 'your-project-api-token-here'

def main():
    project = devopness.projects.get_project(project_id=123)
    print(f'Project name: {project.data.name}')

if __name__ == "__main__":
    main()

Authentication with Login (Deprecated)

Warning: Email/password authentication is no longer supported. API requests using this method return 4xx errors.

Invoking authentication-protected endpoints

Once authenticated, you can invoke protected endpoints. Here's an example of retrieving user details and listing projects:

Asynchronous usage

import asyncio
import os
from devopness import DevopnessClientAsync, DevopnessClientConfig
from devopness.core import DevopnessSdkError

config = DevopnessClientConfig(api_token=os.getenv('DEVOPNESS_API_TOKEN'))
devopness = DevopnessClientAsync(config)

async def get_user_profile():
    try:
        # Retrieve current user details
        current_user = await devopness.users.get_user_me()
        print(f'User ID: {current_user.data.id}')

    except DevopnessSdkError as error:
        print(f'Error: {error}')

if __name__ == "__main__":
    asyncio.run(get_user_profile())

Synchronous usage

import os
from devopness import DevopnessClient, DevopnessClientConfig
from devopness.core import DevopnessSdkError

config = DevopnessClientConfig(api_token=os.getenv('DEVOPNESS_API_TOKEN'))
devopness = DevopnessClient(config)

def get_user_profile():
    try:
        # Retrieve current user details
        current_user = devopness.users.get_user_me()
        print(f'User ID: {current_user.data.id}')

    except DevopnessSdkError as error:
        print(f'Error: {error}')

if __name__ == "__main__":
    get_user_profile()

Error Handling

The SDK provides structured error handling through exceptions:

  • DevopnessApiError: This exception is raised when the Devopness API returns an error response. This typically indicates issues with the request itself, such as invalid input data, unauthorized access, or resource not found. It provides the following attributes to help diagnose the error:
Attribute Description
status_code The HTTP status code returned by the API
message A general error message from the API
errors An optional dictionary containing detailed validation errors, often encountered during create or update operations
  • DevopnessNetworkError: This exception is raised when a generic network-related issue occurs during the communication with the Devopness API. This could be due to problems like an unreachable host, connection timeouts, or other network configuration errors.

Both exceptions inherit from DevopnessSdkError, the base class for all SDK exceptions. You can use this class to catch and handle all exceptions raised by the SDK.

Development

To build the SDK locally, use Docker:

With Docker

Prerequisites

Steps

  1. Navigate to the project directory:
cd packages/sdks/python/
  1. Build the Docker image:
make build-image
  1. Build the Python SDK:
make build-sdk-python

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

devopness-2.6.0.tar.gz (123.1 kB view details)

Uploaded Source

Built Distribution

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

devopness-2.6.0-py3-none-any.whl (386.9 kB view details)

Uploaded Python 3

File details

Details for the file devopness-2.6.0.tar.gz.

File metadata

  • Download URL: devopness-2.6.0.tar.gz
  • Upload date:
  • Size: 123.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for devopness-2.6.0.tar.gz
Algorithm Hash digest
SHA256 33917888db0db3823a1269efc056cd2a2dc6d287bd3eb8ccd8ef146b004354f0
MD5 a0e7b9cfe41b7d44c2e6fd09b92c6b5f
BLAKE2b-256 0445b99761c0b30e34cf434b82dc4735d6cae2732277b912bbba3f0666de6d95

See more details on using hashes here.

Provenance

The following attestation bundles were made for devopness-2.6.0.tar.gz:

Publisher: release-packages.yml on devopness/devopness

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file devopness-2.6.0-py3-none-any.whl.

File metadata

  • Download URL: devopness-2.6.0-py3-none-any.whl
  • Upload date:
  • Size: 386.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for devopness-2.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6b5cff3b810db599be2b9d1939fbfa712906a5e5c654f148d11a0550b108d9a3
MD5 0a881cf0283c16951e14cac3a795d971
BLAKE2b-256 c33eb3b923440e33b0a637e6b7e2e7a9ab9128a9e3105ad13650be98c914aca8

See more details on using hashes here.

Provenance

The following attestation bundles were made for devopness-2.6.0-py3-none-any.whl:

Publisher: release-packages.yml on devopness/devopness

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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