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==0.1.5
You can also view the package at: https://pypi.python.org/pypi/cliV1/0.1.5
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 0.1.5
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-0.1.5.tar.gz | 12.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| cliv1-0.1.5-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 29.3 kB
Release files / cliv1-0.1.5.tar.gz
| Download URL | cliv1-0.1.5.tar.gz |
|---|---|
| Size | 12.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
d6151e196ea622c44b56de8a5bd1f8febe010215c94fe8b39f929ebc82fdae2f
|
|
BLAKE2b-256 checksum How to use checksums |
0a121be1f70313831ee5ca2dd258cdd22027c1977fa7bce30dbce5ef960742df
|
| 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-0.1.5-py3-none-any.whl
| Download URL | cliv1-0.1.5-py3-none-any.whl |
|---|---|
| Size | 17.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
cd6628cb3ee56690c0dbc3f7f3910eb373e983e961ffaa6709e1969b6406af2d
|
|
BLAKE2b-256 checksum How to use checksums |
d589e8fd1f9dfcb68e6d0ef0599275bfb794f11778a194e5a3fc67ecf0fc96f2
|
| 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
|