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.0a1.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.0a1-py3-none-any.whl (71.7 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: mechanix-0.1.0a1.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.0a1.tar.gz
Algorithm Hash digest
SHA256 a0d6d17f08f3c895f59840755bc48945ea1b8af78bdd461ef37efeda7e50ff6a
MD5 77df079b67efde4318d825d772d21542
BLAKE2b-256 44ba2ba19bdcf49c498ab02036d451584980d74c72eadb8b67f20e873b89d8a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mechanix-0.1.0a1-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.0a1-py3-none-any.whl
Algorithm Hash digest
SHA256 70a2f2f1b95b92ffce11dd1d8aa59b3d1693c328985151a225bfa73b4d563e50
MD5 97a8b59dbed87f7715a36a7950908275
BLAKE2b-256 76f830fb3770be2c3a8f253cf4f853399b7c91a7eb81fba2512f6a210bc8be31

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