Simple calculator API hosted on APIMATIC
Project description
Getting started
Simple calculator API hosted on APIMATIC
How to Build
You must have Python 2 >=2.7.9
or Python 3 >=3.4
installed on your system to install and run this SDK. This SDK package depends on other Python packages like nose, jsonpickle etc.
These dependencies are defined in the requirements.txt
file that comes with the SDK.
To resolve these dependencies, you can use the PIP Dependency manager. Install it by following steps at https://pip.pypa.io/en/stable/installing/.
Python and PIP executables should be defined in your PATH. Open command prompt and type pip --version
.
This should display the version of the PIP Dependency Manager installed if your installation was successful and the paths are properly defined.
- Using command line, navigate to the directory containing the generated files (including
requirements.txt
) for the SDK. - Run the command
pip install -r requirements.txt
. This should install all the required dependencies.
How to Use
The following section explains how to use the ApiTesterUploadTest SDK package in a new project.
1. Open Project in an IDE
Open up a Python IDE like PyCharm. The basic workflow presented here is also applicable if you prefer using a different editor or IDE.
Click on Open
in PyCharm to browse to your generated SDK directory and then click OK
.
The project files will be displayed in the side bar as follows:
2. Add a new Test Project
Create a new directory by right clicking on the solution name as shown below:
Name the directory as "test"
Add a python file to this project with the name "testsdk"
Name it "testsdk"
In your python file you will be required to import the generated python library using the following code lines
from api_tester_upload_test.api_tester_upload_test_client import ApiTesterUploadTestClient
After this you can write code to instantiate an API client object, get a controller object and make API calls. Sample code is given in the subsequent sections.
3. Run the Test Project
To run the file within your test project, right click on your Python file inside your Test project and click on Run
How to Test
You can test the generated SDK and the server with automatically generated test cases. unittest is used as the testing framework and nose is used as the test runner. You can run the tests as follows:
- From terminal/cmd navigate to the root directory of the SDK.
- Invoke
pip install -r test-requirements.txt
- Invoke
nosetests
Initialization
API client can be initialized as following.
client = ApiTesterUploadTestClient()
Class Reference
List of Controllers
SimpleCalculatorController
Get controller instance
An instance of the SimpleCalculatorController
class can be accessed from the API Client.
simple_calculator_controller = client.simple_calculator
get_calculate
Calculates the expression using the specified operation.
def get_calculate(self,
options=dict())
Parameters
Parameter | Tags | Description |
---|---|---|
operation | Required |
The operator to apply on the variables |
x | Required |
The LHS value |
y | Required |
The RHS value |
Example Usage
collect = {}
operation = OperationTypeEnum.SUM
collect['operation'] = operation
x = 132.691311898032
collect['x'] = x
y = 132.691311898032
collect['y'] = y
result = simple_calculator_controller.get_calculate(collect)
Errors
Error Code | Error Description |
---|---|
412 | Could not compute the requested calculation |
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
Hashes for api-tester-upload-test-1.1.62.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | ba72c1cffebe9a720cc24bc6b3653427537d448f84fe64894185737f422c4ba3 |
|
MD5 | ee2b832a70ab986bfc461b6105fb098a |
|
BLAKE2b-256 | 0a096005c76acbc07c561a968e73def8aa676898e22ec4081b856b94c692db5b |
Hashes for api_tester_upload_test-1.1.62-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | feb575fb7f7a792b148a3a33dbc5fa2fb751cff6244903e2c7ff0ff788f860fb |
|
MD5 | fea19a1c1fd783dcfb59d1f0db751a78 |
|
BLAKE2b-256 | c861b25867b17e2aea2db46aea8dba0a238e9f5f82a9647abf59229d0c876686 |