Getting Started with APIMATIC Calculator
Introduction
Simple calculator API hosted on APIMATIC
Install the Package
The package is compatible with Python versions 3.7+.
Install the package from PyPi using the following pip command:
pip install cliV1==10.0.3
You can also view the package at: https://pypi.python.org/pypi/cliV1/10.0.3
Initialize the API Client
Note: Documentation for the client can be found here.
The following parameters are configurable for the API Client:
| Parameter | Type | Description |
|---|---|---|
| http_client_instance | Union[Session, HttpClientProvider] |
The Http Client passed from the sdk user for making requests |
| override_http_client_configuration | bool |
The value which determines to override properties of the passed Http Client from the sdk user |
| http_call_back | HttpCallBack |
The callback value that is invoked before and after an HTTP call is made to an endpoint |
| timeout | float |
The value to use for connection timeout. Default: 60 |
| max_retries | int |
The number of times to retry an endpoint call if it fails. Default: 0 |
| backoff_factor | float |
A backoff factor to apply between attempts after the second try. Default: 2 |
| retry_statuses | Array of int |
The http statuses on which retry is to be done. Default: [408, 413, 429, 500, 502, 503, 504, 521, 522, 524] |
| retry_methods | Array of string |
The http methods on which retry is to be done. Default: ["GET", "PUT"] |
| proxy_settings | ProxySettings |
Optional proxy configuration to route HTTP requests through a proxy server. |
The API client can be initialized as follows:
Code-Based Client Initialization
from apimaticcalculator.apimaticcalculator_client import ApimaticcalculatorClient
from apimaticcalculator.configuration import Environment
client = ApimaticcalculatorClient(
environment=Environment.PRODUCTION
)
Environment-Based Client Initialization
from apimaticcalculator.apimaticcalculator_client import ApimaticcalculatorClient
# Specify the path to your .env file if it’s located outside the project’s root directory.
client = ApimaticcalculatorClient.from_environment(dotenv_path='/path/to/.env')
See the Environment-Based Client Initialization section for details.
List of APIs
SDK Infrastructure
Configuration
HTTP
Utilities
Release files for cliV1 10.0.3
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| cliv1-10.0.3.tar.gz | 12.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| cliv1-10.0.3-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 29.4 kB
Release files / cliv1-10.0.3.tar.gz
| Download URL | cliv1-10.0.3.tar.gz |
|---|---|
| Size | 12.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
e416d8eb69539d2a914a5f0a53514b1ef3996808f743acffdf2d643087a8914b
|
|
BLAKE2b-256 checksum How to use checksums |
19ca715808d17b88fe0490f8e1a448f8e782d69914216f5f1c8a5b28fdd03009
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/2.4.3 CPython/3.13.15 Linux/6.1.158.2-microsoft-standard
|
Release files / cliv1-10.0.3-py3-none-any.whl
| Download URL | cliv1-10.0.3-py3-none-any.whl |
|---|---|
| Size | 17.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
501079fa8541f1ee5c9a7336f5d391f3c5b0f17f363bcf9a01c8ccf3951d3344
|
|
BLAKE2b-256 checksum How to use checksums |
ef8acd3fea589f1ec34977b8dc57467371871e2c87fa6f6e32076830f58c2fa2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/2.4.3 CPython/3.13.15 Linux/6.1.158.2-microsoft-standard
|