Skip to main content

The official Python library for the mechanix API

Project description

Mechanix Python API

PyPI version

The Mechanix Python library provides convenient access to the Mechanix REST API from any Python 3.8+ application. The library includes type definitions for all request params and response fields, and offers both synchronous and asynchronous clients.

Documentation

Installation

pip install --pre mechanix

Usage

from mechanix import Mechanix

client = Mechanix()

health = client.health.retrieve()

Async usage

Simply import AsyncMechanix instead of Mechanix and use await with each API call:

import asyncio
from mechanix import AsyncMechanix

client = AsyncMechanix()


async def main() -> None:
    health = await client.health.retrieve()


asyncio.run(main())

Functionality between the synchronous and asynchronous clients is otherwise identical.

Handling errors

When the library is unable to connect to the API (for example, due to network connection problems or a timeout), a subclass of mechanix.APIConnectionError is raised.

When the API returns a non-success status code (that is, 4xx or 5xx response), a subclass of mechanix.APIStatusError is raised, containing status_code and response properties.

All errors inherit from mechanix.APIError.

import mechanix
from mechanix import Mechanix

client = Mechanix()

try:
    client.health.retrieve()
except mechanix.APIConnectionError as e:
    print("The server could not be reached")
    print(e.__cause__)  # an underlying Exception, likely raised within httpx.
except mechanix.RateLimitError as e:
    print("A 429 status code was received; we should back off a bit.")
except mechanix.APIStatusError as e:
    print("Another non-200-range status code was received")
    print(e.status_code)
    print(e.response)

Error codes are as followed:

Status Code Error Type
400 BadRequestError
401 AuthenticationError
403 PermissionDeniedError
404 NotFoundError
422 UnprocessableEntityError
429 RateLimitError
>=500 InternalServerError
N/A APIConnectionError

Credits

This API library is generated with Stainless.

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

mechanix-0.1.0a2.tar.gz (79.5 kB view details)

Uploaded Source

Built Distribution

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

mechanix-0.1.0a2-py3-none-any.whl (65.0 kB view details)

Uploaded Python 3

File details

Details for the file mechanix-0.1.0a2.tar.gz.

File metadata

  • Download URL: mechanix-0.1.0a2.tar.gz
  • Upload date:
  • Size: 79.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.3

File hashes

Hashes for mechanix-0.1.0a2.tar.gz
Algorithm Hash digest
SHA256 bc1cf88c5c99572b26c5dda1c9ddf02f5b272b78960a5eea0c27ff180e92d13d
MD5 0bb301c1106a5e7c8036dd0b2d181f88
BLAKE2b-256 7bdedf837580f8d1dbcfbb4b6f12f81f889db9af221743cd6ad857dde1b6a8b4

See more details on using hashes here.

File details

Details for the file mechanix-0.1.0a2-py3-none-any.whl.

File metadata

  • Download URL: mechanix-0.1.0a2-py3-none-any.whl
  • Upload date:
  • Size: 65.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.3

File hashes

Hashes for mechanix-0.1.0a2-py3-none-any.whl
Algorithm Hash digest
SHA256 af8e83dbe02861920dd79120356192f201f4aaf3dfd7a7dcc3d55301f77511b1
MD5 13b537ed51dae79c1760f6b3f21e4ff5
BLAKE2b-256 5fedffa18c187e7c3d5f68e0954e59d40147c5e3ba46e3918004a96086d70813

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