SimpleCalc SDK
The SimpleCalc SDK for Python provides access to the SimpleCalc REST APIs from Python applications.
[!TIP] Looking for a specific signature, model, enum, or error type? This SDK ships a generated SDK map -- a lookup index of the SDK's entire Python surface. Consult it before scanning the source tree; details under SDK map.
A simple calculator API. Adapted from the Simple Calculator OpenAPI definition published in the Amazon API Gateway developer guide, with the AWS integration extensions and the any-method paths removed.
Installation
Install the Python SDK from PyPI, with whichever package manager your project uses:
pip install simplecalc-sdk
uv add simplecalc-sdk
poetry add simplecalc-sdk
Quick Start
Synchronous client
Construct SimpleCalcClient with keyword arguments, and call close() when you are done. Every argument is optional; the full list is in the SDK map.
from simple_calc import SimpleCalcClient
client = SimpleCalcClient()
# TODO: call endpoints here -- see api-reference.md
client.close()
Alternatively, scope it -- with SimpleCalcClient(...) as client: closes the pool on exit; see Best Practices.
Client is exported as an alias of SimpleCalcClient, so from simple_calc import Client also works.
The SDK accepts every model-typed input in two interchangeable spellings, both type-checked: the typed model, or a plain dict with the same keys -- the OrDict and Model | ModelDict unions in the SDK map. Pick whichever suits the call site: the dict form needs no import, while the model form adds a keyword-checked constructor and editor completion.
Asynchronous client
AsyncSimpleCalcClient mirrors SimpleCalcClient with identical method names, and every endpoint method is a coroutine. It takes the same arguments, with some differences -- for example, the transport argument is custom_async_http_client.
from asyncio import run
from simple_calc import AsyncSimpleCalcClient
async def main() -> None:
client = AsyncSimpleCalcClient()
# TODO: call endpoints here, awaiting each -- see api-reference.md
await client.aclose()
run(main())
Alternatively, scope it -- async with AsyncSimpleCalcClient(...) as client: closes the pool on exit. Only the async spelling is aclose, matching httpx; see Best Practices.
AsyncClient is the exported alias. Each client accepts only its own transport argument; passing the other's is a TypeError at runtime and an error under mypy.
Usage
Two generated references cover the SDK; each answers a different question:
| Reference | For |
|---|---|
| API Reference | Usage guidance for a single parsed operation: client.<group>.<operation>(...) returns the typed payload and raises ApiError on any non-2xx, with .error the typed error body, or RawError for a status the operation does not document. |
| Raw API Reference | The same for the raw variant: client.<group>.with_raw_response.<operation>(...) returns ApiResult[T, E] and never raises for an API error. |
Both API references carry every one of the 3 operations, with a sync and an async sample and a parameter table each.
SDK map
This SDK ships a generated SDK map -- sdk-map.md -- a deterministic, lookup-oriented table of contents of the SDK's Python surface, generated by APIMatic alongside this SDK.
Consult the map before scanning or grepping the source: it answers call-level contract questions by lookup, and for anything it does not carry -- model shapes, enum values, an endpoint's route or behavioural prose -- it names the one source file to read. How to read the map itself, including the SDK-wide defaults its rows rely on, is stated at the top of sdk-map.md.
Best Practices
[!TIP] Use a single
SimpleCalcClientinstance for the lifetime of your application and reuse it across all requests. Each instance owns its own connection pool, so an instance per request forfeits connection reuse and leaks pools that are never closed.
Match the disposal to the client's lifetime: an application-lifetime client is closed once at shutdown with close() / aclose(); where the lifetime fits a block, with SimpleCalcClient() as client: / async with AsyncSimpleCalcClient() as client: releases it automatically. Both are idempotent, but a closed client is not reusable: the next call raises. The client closes whatever transport it holds, including one you supplied via custom_http_client / custom_async_http_client; if you intend to reuse your own transport across clients, don't hand its lifetime to a with block.
License
This SDK is distributed under the MIT License.
Support
Refer to the API reference for detailed information on available operations with code samples.
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 simplecalc_sdk-1.0.0.tar.gz.
File metadata
- Download URL: simplecalc_sdk-1.0.0.tar.gz
- Upload date:
- Size: 86.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
poetry/2.4.1 CPython/3.10.11 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3c40b2b4b79ecb021c547acc17306b0c70e00287de10aa2c09467078add2110
|
|
| MD5 |
56a568734eff05b4a24aab991b758b76
|
|
| BLAKE2b-256 |
533dfa19d28030f77e4c404456d3961ea76b00a9c91c93cdb5b1ef62e8150d20
|
File details
Details for the file simplecalc_sdk-1.0.0-py3-none-any.whl.
File metadata
- Download URL: simplecalc_sdk-1.0.0-py3-none-any.whl
- Upload date:
- Size: 113.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
poetry/2.4.1 CPython/3.10.11 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2007b1a7d01e04ccb20ce86aebd1f7ac1ccfdaafc9f6dc16fc4357dd042a53d8
|
|
| MD5 |
161a2f0c13f1fbc4b5c8f41599bd6a11
|
|
| BLAKE2b-256 |
5722f9c813e837d36c47a2cd090fdc5ad70e53483a4be13c31287cbef3ebe32e
|