The official Python library for the mechanix API
Project description
Mechanix Python API
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_web(
query="Common organelles within a human eukaryote",
)
print(response.request_id)
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_web(
query="Common organelles within a human eukaryote",
)
print(response.request_id)
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_web(
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mechanix-0.1.0a6.tar.gz.
File metadata
- Download URL: mechanix-0.1.0a6.tar.gz
- Upload date:
- Size: 83.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e926e5f04aef776d04cd7fc9e1106e965a204dc6e03d942f261771ebebbdbf8a
|
|
| MD5 |
76feefb35b775a0c96761c65cbb46162
|
|
| BLAKE2b-256 |
98bbf076707b67ff5ab7c1b1bbb576d1b3363ea857e726bf1498e50a5fb4fed0
|
File details
Details for the file mechanix-0.1.0a6-py3-none-any.whl.
File metadata
- Download URL: mechanix-0.1.0a6-py3-none-any.whl
- Upload date:
- Size: 72.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2403a114f3bcefe3340ed6ae2186f952a291ec6c4609dae7f9ac7ffb6488370c
|
|
| MD5 |
df6fd237b97d67c8169376574486ab1d
|
|
| BLAKE2b-256 |
2442db8d981f8f87bbf59741078214af078d6e05e9e206d38a25701f65e73f5b
|