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",
)
print(response.data)

While you can provide an api_key keyword argument, we recommend using python-dotenv to add MECHANIX_API_KEY="My API Key" to your .env file so that your API Key is not stored in source control.

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",
    )
    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",
    )
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.0a4.tar.gz (83.1 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.0a4-py3-none-any.whl (70.1 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: mechanix-0.1.0a4.tar.gz
  • Upload date:
  • Size: 83.1 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.0a4.tar.gz
Algorithm Hash digest
SHA256 3e1709a3afc424c22145c5d977325860c64653516faa47f81d6898ca0e620f9e
MD5 bf12e317a3fbf5bd956fb300d92188ed
BLAKE2b-256 17d6abcdfb49db269fa789ac459be4a849498d6c72fe5cd6b8805845e5787b48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mechanix-0.1.0a4-py3-none-any.whl
  • Upload date:
  • Size: 70.1 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.0a4-py3-none-any.whl
Algorithm Hash digest
SHA256 a645047449b702f55d3cb79bea7a7a1fba237f16ec4a9fc91523e0387b444b82
MD5 babb3bbac934bdf21386ef2358951afb
BLAKE2b-256 66334ef3780a13e6e9be816433b1ab44b80a7fb32f60407e4079ae6d5dc569d5

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