Skip to main content

Python SDK for OASM platform

Project description

OASM SDK for Python

The OASM SDK for Python provides a convenient interface to interact with the OASM (Open API Service Manager) API. This SDK allows you to easily manage workers and communicate with the OASM service.

Features

  • Easy-to-use client for OASM API
  • Functional options pattern for flexible client configuration
  • Built-in retry mechanism for robust API communication
  • Support for worker registration and keep-alive signals
  • Comprehensive error handling with custom exceptions
  • Full type hints for better development experience

Installation

To install the OASM SDK, you can use pip:

pip install oasm-sdk

Or if you have the source code:

pip install .

Requirements

  • Python 3.7 or higher
  • requests>=2.25.0
  • urllib3>=1.26.0

Quick Start

Creating a Client

from client import Client, with_api_url, with_api_key

# Create a client with default settings
client = Client()

# Create a client with custom settings
client = Client(
    with_api_url("https://api.oasm.com"),
    with_api_key("your-api-key-here")
)

Health Check

try:
    is_healthy = client.health()
    print(f"API is {'healthy' if is_healthy else 'unhealthy'}")
except Exception as e:
    print(f"Health check failed: {e}")

Worker Management

Joining a Worker

from worker import worker_join

try:
    response = worker_join(client)
    print(f"Worker joined with ID: {response.id}")
    print(f"Worker token: {response.token}")
except Exception as e:
    print(f"Failed to join worker: {e}")

Sending Keep-Alive Signal

from worker import worker_alive

try:
    token = "your-worker-token"
    response = worker_alive(client, token)
    print(f"Keep-alive response: {response.alive}")
except Exception as e:
    print(f"Keep-alive failed: {e}")

API Reference

Client

The Client class is the main entry point for interacting with the OASM API.

Constructor

Client(*opts: Option)

Creates a new client instance with the provided options.

Options

  • with_api_url(api_url: str): Sets the base API URL
  • with_api_key(api_key: str): Sets the API key
  • with_session(session: Session): Sets a custom requests session

Methods

  • health() -> bool: Checks the health status of the API

Worker Functions

  • worker_join(client: Client) -> WorkerJoinResponse: Registers a new worker
  • worker_alive(client: Client, token: str) -> WorkerAliveResponse: Sends a keep-alive signal

Exceptions

  • APIError: Raised when the API returns an error response

Development

Running Tests

To run the tests, use:

python -m pytest

Dependencies

To install development dependencies:

pip install -r requirements.txt

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

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

License

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

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

oasm_sdk-0.1.1.tar.gz (5.5 kB view details)

Uploaded Source

Built Distribution

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

oasm_sdk-0.1.1-py3-none-any.whl (6.1 kB view details)

Uploaded Python 3

File details

Details for the file oasm_sdk-0.1.1.tar.gz.

File metadata

  • Download URL: oasm_sdk-0.1.1.tar.gz
  • Upload date:
  • Size: 5.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.4

File hashes

Hashes for oasm_sdk-0.1.1.tar.gz
Algorithm Hash digest
SHA256 ef1edefe4e88dae47a9babb4986ce8b187c70d7d3345fcc6c0eb2a6fc3c4bd0b
MD5 fd50c3c37e33ee05a82dd43c2be01bc7
BLAKE2b-256 18c2b4b5e884b8587405469d53c0337f0ddd42878b06ebebf9aa427ebbcfbee7

See more details on using hashes here.

File details

Details for the file oasm_sdk-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: oasm_sdk-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 6.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.4

File hashes

Hashes for oasm_sdk-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 0ba42a9cec2a353e5df4e5bff9ca0eec419ee9cc35f60386a6c189b353f07811
MD5 117ba9246732bc73d37428634a85f94b
BLAKE2b-256 acba7ad3a05f116fa888c82ba660051082c895109ff46b7f8bf70753bb7c2d7c

See more details on using hashes here.

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