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()

response = client.tools.search(
    query="Common organelles within a human eukaryote",
    x_api_key="x-api-key",
)
print(response.data)

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:
    response = await client.tools.search(
        query="Common organelles within a human eukaryote",
        x_api_key="x-api-key",
    )
    print(response.data)


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.tools.search(
        query="Common organelles within a human eukaryote",
        x_api_key="x-api-key",
    )
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.0a3.tar.gz (83.2 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.0a3-py3-none-any.whl (71.7 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: mechanix-0.1.0a3.tar.gz
  • Upload date:
  • Size: 83.2 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.0a3.tar.gz
Algorithm Hash digest
SHA256 ee313dfaa1091e089ae1ad2ac00a3c21ccf870fbf07fa8d2a491fe8238daf73b
MD5 2810c0313cc2e9e12a6f6aa7bff6d65b
BLAKE2b-256 a85877dc9532dd382fbe891e99f3f8d93dfe3946a0a030be8a63bf2cdd7fbf8b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mechanix-0.1.0a3-py3-none-any.whl
  • Upload date:
  • Size: 71.7 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.0a3-py3-none-any.whl
Algorithm Hash digest
SHA256 0571720361f9a3cbf88fd086a3d3417f4feb8c51508ae6553c183124eff1fd40
MD5 e917f177b227ce326a58125c75039044
BLAKE2b-256 7d6cec53373de6fbc1973242af4a5f5d42d38c3de1bc314f56d52daa2db5bf1e

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