{ "info": { "author": "APIMatic SDK Generator", "author_email": "support@apimatic.io", "bugtrack_url": null, "classifiers": [], "description": "# Getting started\n\nSimple calculator API hosted on APIMATIC\n\n## How to Build\n\n\nYou 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. \nThese dependencies are defined in the ```requirements.txt``` file that comes with the SDK.\nTo resolve these dependencies, you can use the PIP Dependency manager. Install it by following steps at [https://pip.pypa.io/en/stable/installing/](https://pip.pypa.io/en/stable/installing/).\n\nPython and PIP executables should be defined in your PATH. Open command prompt and type ```pip --version```.\nThis should display the version of the PIP Dependency Manager installed if your installation was successful and the paths are properly defined.\n\n* Using command line, navigate to the directory containing the generated files (including ```requirements.txt```) for the SDK.\n* Run the command ```pip install -r requirements.txt```. This should install all the required dependencies.\n\n![Building SDK - Step 1](https://apidocs.io/illustration/python?step=installDependencies&workspaceFolder=APIMATIC%20Calculator%20V1-Python)\n\n\n## How to Use\n\nThe following section explains how to use the Apimaticcalculatorv1 SDK package in a new project.\n\n### 1. Open Project in an IDE\n\nOpen up a Python IDE like PyCharm. The basic workflow presented here is also applicable if you prefer using a different editor or IDE.\n\n![Open project in PyCharm - Step 1](https://apidocs.io/illustration/python?step=pyCharm)\n\nClick on ```Open``` in PyCharm to browse to your generated SDK directory and then click ```OK```.\n\n![Open project in PyCharm - Step 2](https://apidocs.io/illustration/python?step=openProject0&workspaceFolder=APIMATIC%20Calculator%20V1-Python) \n\nThe project files will be displayed in the side bar as follows:\n\n![Open project in PyCharm - Step 3](https://apidocs.io/illustration/python?step=openProject1&workspaceFolder=APIMATIC%20Calculator%20V1-Python&projectName=apimaticcalculatorpython) \n\n### 2. Add a new Test Project\n\nCreate a new directory by right clicking on the solution name as shown below:\n\n![Add a new project in PyCharm - Step 1](https://apidocs.io/illustration/python?step=createDirectory&workspaceFolder=APIMATIC%20Calculator%20V1-Python&projectName=apimaticcalculatorpython)\n\nName the directory as \"test\"\n\n![Add a new project in PyCharm - Step 2](https://apidocs.io/illustration/python?step=nameDirectory)\n \nAdd a python file to this project with the name \"testsdk\"\n\n![Add a new project in PyCharm - Step 3](https://apidocs.io/illustration/python?step=createFile&workspaceFolder=APIMATIC%20Calculator%20V1-Python&projectName=apimaticcalculatorpython)\n\nName it \"testsdk\"\n\n![Add a new project in PyCharm - Step 4](https://apidocs.io/illustration/python?step=nameFile)\n\nIn your python file you will be required to import the generated python library using the following code lines\n\n```Python\nfrom apimaticcalculatorpython.apimaticcalculatorpython_client import ApimaticcalculatorpythonClient\n```\n\n![Add a new project in PyCharm - Step 4](https://apidocs.io/illustration/python?step=projectFiles&workspaceFolder=APIMATIC%20Calculator%20V1-Python&libraryName=apimaticcalculatorpython.apimaticcalculatorpython_client&projectName=apimaticcalculatorpython&className=ApimaticcalculatorpythonClient)\n\nAfter 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.\n\n### 3. Run the Test Project\n\nTo run the file within your test project, right click on your Python file inside your Test project and click on ```Run```\n\n![Run Test Project - Step 1](https://apidocs.io/illustration/python?step=runProject&workspaceFolder=APIMATIC%20Calculator%20V1-Python&libraryName=apimaticcalculatorpython.apimaticcalculatorpython_client&projectName=apimaticcalculatorpython&className=ApimaticcalculatorpythonClient)\n\n\n## How to Test\n\nYou can test the generated SDK and the server with automatically generated test\ncases. unittest is used as the testing framework and nose is used as the test\nrunner. You can run the tests as follows:\n\n 1. From terminal/cmd navigate to the root directory of the SDK.\n 2. Invoke ```pip install -r test-requirements.txt```\n 3. Invoke ```nosetests```\n\n## Initialization\n\n### \n\nAPI client can be initialized as following.\n\n```python\n\nclient = ApimaticcalculatorpythonClient()\n```\n\n\n\n# Class Reference\n\n## List of Controllers\n\n* [CalculatorEPs](#calculator_e_ps)\n\n## ![Class: ](https://apidocs.io/img/class.png \".CalculatorEPs\") CalculatorEPs\n\n### Get controller instance\n\nAn instance of the ``` CalculatorEPs ``` class can be accessed from the API Client.\n\n```python\n calculator_e_ps_controller = client.calculator_e_ps\n```\n\n### ![Method: ](https://apidocs.io/img/method.png \".CalculatorEPs.calculate\") calculate\n\n> Calculates the expression using the specified operation..\n\n```python\ndef calculate(self,\n operation,\n x,\n y)\n```\n\n#### Parameters\n\n| Parameter | Tags | Description |\n|-----------|------|-------------|\n| operation | ``` Required ``` | The operator to apply on the variables |\n| x | ``` Required ``` | The LHS value |\n| y | ``` Required ``` | The RHS value |\n\n\n\n#### Example Usage\n\n```python\noperation = OperationType.MULTIPLY\nx = 4\ny = 5\n\nresult = calculator_e_ps_controller.calculate(operation, x, y)\n\n```\n\n\n[Back to List of Controllers](#list_of_controllers)\n\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://apimatic.io", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "apimaticcalculatorpython", "package_url": "https://pypi.org/project/apimaticcalculatorpython/", "platform": "", "project_url": "https://pypi.org/project/apimaticcalculatorpython/", "project_urls": { "Homepage": "https://apimatic.io" }, "release_url": "https://pypi.org/project/apimaticcalculatorpython/1.1.99263/", "requires_dist": null, "requires_python": "", "summary": "Simple calculator API hosted on APIMATIC", "version": "1.1.99263" }, "last_serial": 4911218, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "8f815ce96aa05885ad84a29357b58fe7", "sha256": "98e6b9768050b846647ca800766e224964c353eaab232aadd82358ca8cb3341a" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.0.0.tar.gz", "has_sig": false, "md5_digest": "8f815ce96aa05885ad84a29357b58fe7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15327, "upload_time": "2019-03-05T06:11:26", "url": "https://files.pythonhosted.org/packages/c7/bf/d7e169c44a5a00c5d1b540062aee85ad12ace414712c52f1b1f2d7ec2379/apimaticcalculatorpython-1.0.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "8db41224bfaf0cf002e9940eaf82279d", "sha256": "8c5e30c998852f76611edd9821bcf4c5978de46f30cbcd8cf91dde5df3bfe85c" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.1.tar.gz", "has_sig": false, "md5_digest": "8db41224bfaf0cf002e9940eaf82279d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15335, "upload_time": "2019-03-05T06:27:14", "url": "https://files.pythonhosted.org/packages/17/70/49cf2458516831e6fbf604c6cd60d1038658651f67403527dcbb5a683a4c/apimaticcalculatorpython-1.1.1.tar.gz" } ], "1.1.10": [ { "comment_text": "", "digests": { "md5": "5a65c178457d5ecbb8f4e644abbb46dc", "sha256": "c0a5e64f9b08b2fdd6dd0c8bc1db1049ebdda108bef665c316a770be65f64213" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.10.tar.gz", "has_sig": false, "md5_digest": "5a65c178457d5ecbb8f4e644abbb46dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15342, "upload_time": "2019-03-05T09:32:55", "url": "https://files.pythonhosted.org/packages/c7/ac/8862d4789ebbfc8e8a2593e36a6cdeb5c4d5def6267154f4c3b38c5e62eb/apimaticcalculatorpython-1.1.10.tar.gz" } ], "1.1.10290": [ { "comment_text": "", "digests": { "md5": "ffaf9f6a71b9f32086833fd267a28c9d", "sha256": "eb7f5dc9f1df06bd7cfe16cd7e6da4c7b9fee10dc4939fc543aac2cefe336145" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.10290.tar.gz", "has_sig": false, "md5_digest": "ffaf9f6a71b9f32086833fd267a28c9d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15387, "upload_time": "2019-03-05T17:18:02", "url": "https://files.pythonhosted.org/packages/c4/81/ff769e989822a60f343de0118674ff7c54489a136f59a604a2cedcb09b46/apimaticcalculatorpython-1.1.10290.tar.gz" } ], "1.1.11": [ { "comment_text": "", "digests": { "md5": "8f17ba86c90bafef350a0c6fbb6cb2d6", "sha256": "b8c55e860fdb432c17325ff0727b763babaf503bd2a2de00cfa6bc88a913a068" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.11.tar.gz", "has_sig": false, "md5_digest": "8f17ba86c90bafef350a0c6fbb6cb2d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15331, "upload_time": "2019-03-05T09:34:04", "url": "https://files.pythonhosted.org/packages/be/11/3c1c6cec70899bea802aa40c4b0d3b779e6f62a5ec9627fedad3a5532080/apimaticcalculatorpython-1.1.11.tar.gz" } ], "1.1.12": [ { "comment_text": "", "digests": { "md5": "a5c800f10f254920ed670c940529704b", "sha256": "7b9241c0850782347187746499f7e20bed1123d1747b8fb372ba2ad2cec226e6" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.12.tar.gz", "has_sig": false, "md5_digest": "a5c800f10f254920ed670c940529704b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15329, "upload_time": "2019-03-05T09:34:21", "url": "https://files.pythonhosted.org/packages/9e/0e/1315e2cd647ed4dc3e31a154d1462fe03e85a18c01c9374eb99a3d32be6e/apimaticcalculatorpython-1.1.12.tar.gz" } ], "1.1.12167": [ { "comment_text": "", "digests": { "md5": "04186fa753a0598214d45933b12731d3", "sha256": "13a410a7eb79527a4db0608026cf905136c5f978c62b8b9567efc0eb48563377" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.12167.tar.gz", "has_sig": false, "md5_digest": "04186fa753a0598214d45933b12731d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15370, "upload_time": "2019-03-06T04:50:58", "url": "https://files.pythonhosted.org/packages/9d/b2/e6b4326b387e1cb9b52e673f4535d2c21ba6eae2550567cff6443f48054c/apimaticcalculatorpython-1.1.12167.tar.gz" } ], "1.1.13": [ { "comment_text": "", "digests": { "md5": "f5eb2551a2d998039cddd35d8156b3bc", "sha256": "56e0e90b4be9e57f2244c839316fc0eb78554b5752065a391dd51f1edb508b65" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.13.tar.gz", "has_sig": false, "md5_digest": "f5eb2551a2d998039cddd35d8156b3bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15334, "upload_time": "2019-03-05T09:37:29", "url": "https://files.pythonhosted.org/packages/08/b2/eb626058faaa95748e1f05ebb48ef8e2f16d4b27a2a992fd7475c3b1bcef/apimaticcalculatorpython-1.1.13.tar.gz" } ], "1.1.14": [ { "comment_text": "", "digests": { "md5": "46b19e7f7f4f0cab3d603a03eda4b45c", "sha256": "38ea15b73e6ce2f50cf33d8b53eaf23ac051b58c76ad1dd59954d210c676e31d" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.14.tar.gz", "has_sig": false, "md5_digest": "46b19e7f7f4f0cab3d603a03eda4b45c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15332, "upload_time": "2019-03-05T09:38:21", "url": "https://files.pythonhosted.org/packages/64/66/df82159e0e634f7c3c805cdd50081ccb127272bd7e975eccd0d292e9fff6/apimaticcalculatorpython-1.1.14.tar.gz" } ], "1.1.15": [ { "comment_text": "", "digests": { "md5": "bff70d64e5b278729dc333ae99684b28", "sha256": "6f4e518058a673e10ae56f56bda5c355b3575a8670a4d39702f5587699127784" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.15.tar.gz", "has_sig": false, "md5_digest": "bff70d64e5b278729dc333ae99684b28", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15333, "upload_time": "2019-03-05T09:39:19", "url": "https://files.pythonhosted.org/packages/f0/26/9dd525b6bb4e00de515eb99963cefa54ea18934eb8e9898e84af5dc7d089/apimaticcalculatorpython-1.1.15.tar.gz" } ], "1.1.16": [ { "comment_text": "", "digests": { "md5": "f9be49b40407a9b687fe588e4c9c2d19", "sha256": "48cdfc36979b56c4dc4e0fd2affdf0ee796701e2a4ee09fb0084c72df3bb86bd" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.16.tar.gz", "has_sig": false, "md5_digest": "f9be49b40407a9b687fe588e4c9c2d19", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15331, "upload_time": "2019-03-05T09:40:07", "url": "https://files.pythonhosted.org/packages/e9/4c/8c0f8953b2f91809c8befdd8033a7ae5ae2776c63610a938be82e0c15030/apimaticcalculatorpython-1.1.16.tar.gz" } ], "1.1.1641": [ { "comment_text": "", "digests": { "md5": "4546e6b857372d27ecccc290a03c929e", "sha256": "235ff104eea47dd4a2808f268f1c2d2d4643f742ba1abac007452319181658a8" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.1641.tar.gz", "has_sig": false, "md5_digest": "4546e6b857372d27ecccc290a03c929e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15369, "upload_time": "2019-03-06T05:31:10", "url": "https://files.pythonhosted.org/packages/eb/f0/5facdc31971edc225956c8356683255b874ec2fe96a083ee2dc56dec9421/apimaticcalculatorpython-1.1.1641.tar.gz" } ], "1.1.17": [ { "comment_text": "", "digests": { "md5": "0fdc07b27adacb9d7d5db5fcf7f938d9", "sha256": "b1ee9b23289a5cb714e8442c7f20343d1d411205eecbbdb40589c600fc8adc4c" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.17.tar.gz", "has_sig": false, "md5_digest": "0fdc07b27adacb9d7d5db5fcf7f938d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15349, "upload_time": "2019-03-05T10:05:13", "url": "https://files.pythonhosted.org/packages/14/4d/e0cdda32493ff4bdf0b1e53e0c09073d1c2527fdd4bf596e35bed803c9c8/apimaticcalculatorpython-1.1.17.tar.gz" } ], "1.1.17202": [ { "comment_text": "", "digests": { "md5": "58bf6a670f3f460c9e5020b1cd8ad1e2", "sha256": "ce5aa2349d7a363e832e87f397048956f1fbf671619133733e0637cb6fa332c1" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.17202.tar.gz", "has_sig": false, "md5_digest": "58bf6a670f3f460c9e5020b1cd8ad1e2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15353, "upload_time": "2019-03-05T17:20:47", "url": "https://files.pythonhosted.org/packages/f8/3f/07cf8f3750f6b9357694f9eb6e08194ac1ae34c27769758a5a2ebcad881c/apimaticcalculatorpython-1.1.17202.tar.gz" } ], "1.1.18": [ { "comment_text": "", "digests": { "md5": "efccad18724fe149ddd9cb395b010326", "sha256": "c5204794fec8b2466e3ebe6a3dc41654fa245093580e03a2f1d75f5616a5280d" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.18.tar.gz", "has_sig": false, "md5_digest": "efccad18724fe149ddd9cb395b010326", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15352, "upload_time": "2019-03-05T10:07:04", "url": "https://files.pythonhosted.org/packages/3a/72/c7e665992a6931d4e68501ff2ad6f6f1c1b16d3beac47dd52c4d8869e625/apimaticcalculatorpython-1.1.18.tar.gz" } ], "1.1.19": [ { "comment_text": "", "digests": { "md5": "f9bc6d21f3f1845f9750884fa04f36c9", "sha256": "17b7b6ec1dbee3dfa4fe4abd30547b6d392afd1b6f3206f1781beace7de04234" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.19.tar.gz", "has_sig": false, "md5_digest": "f9bc6d21f3f1845f9750884fa04f36c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15354, "upload_time": "2019-03-05T10:07:47", "url": "https://files.pythonhosted.org/packages/22/da/7fbff35e4499d0a09533d1464c2d4922570e9ff4162259c0c986637db5af/apimaticcalculatorpython-1.1.19.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "7ab58bab16d3edfc01d5da5d6e3bf405", "sha256": "63b6ed578eb7c3eb7f1c2e6cb4f7031c29b4b5f8902ccfc7da3cc86d7d52d811" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.2.tar.gz", "has_sig": false, "md5_digest": "7ab58bab16d3edfc01d5da5d6e3bf405", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15334, "upload_time": "2019-03-05T09:06:04", "url": "https://files.pythonhosted.org/packages/1d/36/24c5a813fc8d6e7509eb9c373c3e469b80b64298c629013815761fd49460/apimaticcalculatorpython-1.1.2.tar.gz" } ], "1.1.20": [ { "comment_text": "", "digests": { "md5": "6ae23e002b103d545602d3fb7aa312d7", "sha256": "aa9e47e118401933cced20b98af0654f7ba8d73bd06bc5c09a8028e0e0c6d12d" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.20.tar.gz", "has_sig": false, "md5_digest": "6ae23e002b103d545602d3fb7aa312d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15351, "upload_time": "2019-03-05T10:11:25", "url": "https://files.pythonhosted.org/packages/04/29/71f04db90071b21551e9166239242b54cf89e5075c7d5c07f8e1c9b55343/apimaticcalculatorpython-1.1.20.tar.gz" } ], "1.1.21": [ { "comment_text": "", "digests": { "md5": "6c264eba53c6e84f85a69a632d83ab62", "sha256": "e5c99c1a1bcb72aad061cce34f16198eeed401c08470a7cd14b153c3e1e96d7d" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.21.tar.gz", "has_sig": false, "md5_digest": "6c264eba53c6e84f85a69a632d83ab62", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15345, "upload_time": "2019-03-05T10:19:21", "url": "https://files.pythonhosted.org/packages/b7/b4/38c2766eff13c85480bdc2e0729ffe2a84f420e8c9ba29d7afb3b24317c3/apimaticcalculatorpython-1.1.21.tar.gz" } ], "1.1.22": [ { "comment_text": "", "digests": { "md5": "ab125e4d18fb82904d8a4c59d28b2148", "sha256": "7c21b759bd149f98aaa83f80183ea2468abae3fac37225ebf87396ae0300ef01" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.22.tar.gz", "has_sig": false, "md5_digest": "ab125e4d18fb82904d8a4c59d28b2148", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15364, "upload_time": "2019-03-05T10:37:19", "url": "https://files.pythonhosted.org/packages/42/8d/13eb1b859b9e0408729c8e26a1e1e2433f621e27eb36998053032d183c60/apimaticcalculatorpython-1.1.22.tar.gz" } ], "1.1.22008": [ { "comment_text": "", "digests": { "md5": "33d3d409081d95e8306acdb748c1c9cf", "sha256": "356208122d0f3fd5b902e053774254d6ccb1210075e78eba121f15733d8002f9" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.22008.tar.gz", "has_sig": false, "md5_digest": "33d3d409081d95e8306acdb748c1c9cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15370, "upload_time": "2019-03-05T17:25:39", "url": "https://files.pythonhosted.org/packages/a8/f7/73bdebed8d75b4399a36ec4d2c37a0e9e37f304d50d5d27340dc27c3d5e8/apimaticcalculatorpython-1.1.22008.tar.gz" } ], "1.1.23": [ { "comment_text": "", "digests": { "md5": "c12058fdbf591b5f4fc328bb702269b1", "sha256": "e25407a1f91f4a3fe630939cf810bc7ed16f213c3cd56f2f937bf21d808f78dc" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.23.tar.gz", "has_sig": false, "md5_digest": "c12058fdbf591b5f4fc328bb702269b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15354, "upload_time": "2019-03-05T10:40:59", "url": "https://files.pythonhosted.org/packages/48/bb/b5c02281d7b18b8dd4ada85d6ab5d70ccb4277ae1f63a79d38d2b482ab89/apimaticcalculatorpython-1.1.23.tar.gz" } ], "1.1.24": [ { "comment_text": "", "digests": { "md5": "4126ab1c286620dc7826c63532adc812", "sha256": "addce4fc9641f6cbfe2a77b7f93edb0a4c9edc08b85923dee23f9eb7327511f2" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.24.tar.gz", "has_sig": false, "md5_digest": "4126ab1c286620dc7826c63532adc812", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15368, "upload_time": "2019-03-05T10:43:02", "url": "https://files.pythonhosted.org/packages/4f/6a/5035806781b7b61198d9f49c1c2afb5d5dec83387307410f66b3bf91749b/apimaticcalculatorpython-1.1.24.tar.gz" } ], "1.1.25": [ { "comment_text": "", "digests": { "md5": "311e60565b7f578e222e92493b960037", "sha256": "fa1d735636a72fa2bc9c7be2898985ed092a489650c95f654eb92e8997d56f55" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.25.tar.gz", "has_sig": false, "md5_digest": "311e60565b7f578e222e92493b960037", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15356, "upload_time": "2019-03-05T10:44:07", "url": "https://files.pythonhosted.org/packages/a9/d2/f8d8646ded9e74655cc64dda19cf771a4e4b514004f1cd59413d81f3112e/apimaticcalculatorpython-1.1.25.tar.gz" } ], "1.1.25098": [ { "comment_text": "", "digests": { "md5": "6b97458e99781922f0f0ebd5b1b6be0e", "sha256": "5e3b17cd7bbe024c830fdb53f478507e7d37a188e076c0042b8f1025b3b9e446" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.25098.tar.gz", "has_sig": false, "md5_digest": "6b97458e99781922f0f0ebd5b1b6be0e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15364, "upload_time": "2019-03-06T05:28:31", "url": "https://files.pythonhosted.org/packages/5c/be/396c96868c3a309d340673650ebe0175516dae8d3705dbf64cf8c881e703/apimaticcalculatorpython-1.1.25098.tar.gz" } ], "1.1.26": [ { "comment_text": "", "digests": { "md5": "9d83b450e3cba39a3480140b4cc92412", "sha256": "5e72aefc9b91eb48541bf2c2e326b1bc1a4bb4a6087f4eec471bb7fa2b2c72f0" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.26.tar.gz", "has_sig": false, "md5_digest": "9d83b450e3cba39a3480140b4cc92412", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15352, "upload_time": "2019-03-05T10:52:56", "url": "https://files.pythonhosted.org/packages/d2/6e/2ba8ae1a72d14752e7fe2368eb9c5f7791d74854b453d4706d29aca7ddc4/apimaticcalculatorpython-1.1.26.tar.gz" } ], "1.1.27": [ { "comment_text": "", "digests": { "md5": "545a1a3207b3e6c98f516ac3f60b7350", "sha256": "786ac2a287a435b61a6a34264122759ceaa6fa6992f0b291d02737e50f383508" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.27.tar.gz", "has_sig": false, "md5_digest": "545a1a3207b3e6c98f516ac3f60b7350", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15348, "upload_time": "2019-03-05T11:27:02", "url": "https://files.pythonhosted.org/packages/57/19/91c72686a3bc8f4fba2b31c450e7959d98209f34a8404af041525d4b3aa9/apimaticcalculatorpython-1.1.27.tar.gz" } ], "1.1.28": [ { "comment_text": "", "digests": { "md5": "e1313f5412d8859f3dd15e1f210c4359", "sha256": "91354c00e0cd2a6b35613d10f10596e1209e320fd9bf5d9126b13098f85e0bae" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.28.tar.gz", "has_sig": false, "md5_digest": "e1313f5412d8859f3dd15e1f210c4359", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15366, "upload_time": "2019-03-05T11:57:07", "url": "https://files.pythonhosted.org/packages/5d/bc/6e58d2a5150f7e3e67f2d9414ce0f4d28c05fb9525838d8697ece2d4aedb/apimaticcalculatorpython-1.1.28.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "322c736a344f0f6dfa1fe7a2bd72f000", "sha256": "00b799f9509096a3c494fea90f33731a74e2a52c79f93c7e3d1974cf33d33bd5" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.3.tar.gz", "has_sig": false, "md5_digest": "322c736a344f0f6dfa1fe7a2bd72f000", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15333, "upload_time": "2019-03-05T09:05:01", "url": "https://files.pythonhosted.org/packages/d8/b5/cff60581471ce5f0789488329a38a9480e255b53e6d87d0086aea13f3b91/apimaticcalculatorpython-1.1.3.tar.gz" } ], "1.1.33577": [ { "comment_text": "", "digests": { "md5": "a74c275219e83a9f86590f49e013ca57", "sha256": "44d39f087f52344c05aeab8940e626043959bce29d4075ae9727d0579414dac3" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.33577.tar.gz", "has_sig": false, "md5_digest": "a74c275219e83a9f86590f49e013ca57", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15358, "upload_time": "2019-03-05T17:24:22", "url": "https://files.pythonhosted.org/packages/b8/67/4ed14b68719f59cf75b37801dbf116d5955e51969e5331c3c366a48e9705/apimaticcalculatorpython-1.1.33577.tar.gz" } ], "1.1.43521": [ { "comment_text": "", "digests": { "md5": "6f3d087274560712a3b4e39a86774842", "sha256": "ab4461634fa7ba5e5a558f20c2a4ca2ba2f08203adf4f8b9fda784a1967fe467" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.43521.tar.gz", "has_sig": false, "md5_digest": "6f3d087274560712a3b4e39a86774842", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15355, "upload_time": "2019-03-06T05:23:49", "url": "https://files.pythonhosted.org/packages/b3/80/0418bb0f61a32adf5942e3af38488d61d139ab46168018d33a1329e69b37/apimaticcalculatorpython-1.1.43521.tar.gz" } ], "1.1.48846": [ { "comment_text": "", "digests": { "md5": "2186efe15a957d9d21f601b29c3f98da", "sha256": "b8d4a5c60c725e0f08e5aeb495d088bf2a08df569c75f0665d1d77277f3a8d16" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.48846.tar.gz", "has_sig": false, "md5_digest": "2186efe15a957d9d21f601b29c3f98da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15359, "upload_time": "2019-03-06T05:24:49", "url": "https://files.pythonhosted.org/packages/15/f5/9625ce3b21651632911d054de1e6a8bc12aa37b96567338b3c3d974c51b4/apimaticcalculatorpython-1.1.48846.tar.gz" } ], "1.1.50": [ { "comment_text": "", "digests": { "md5": "47c158bf5759599e76528a88c079d803", "sha256": "45d77e530c021b0b828b7014f833fb6e8b8d1d3236bb8dd57b70f65f1427de5a" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.50.tar.gz", "has_sig": false, "md5_digest": "47c158bf5759599e76528a88c079d803", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15361, "upload_time": "2019-03-05T12:22:21", "url": "https://files.pythonhosted.org/packages/ac/f1/4a627dc9c8536e25488331c28142051f2cd2e7693780b8d288a4179df56a/apimaticcalculatorpython-1.1.50.tar.gz" } ], "1.1.5705": [ { "comment_text": "", "digests": { "md5": "bb0fb1a236a68bdd4809fd640275e162", "sha256": "6f75fc03762212bec7fa4b933913ca6efef4cfdcceb9c5294d0ef3f382572fb9" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.5705.tar.gz", "has_sig": false, "md5_digest": "bb0fb1a236a68bdd4809fd640275e162", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15354, "upload_time": "2019-03-06T05:04:18", "url": "https://files.pythonhosted.org/packages/6a/08/0a3bf866efe1fb32c95d9f1359e2498bc5c2fa846f91e23a645d2f138b9e/apimaticcalculatorpython-1.1.5705.tar.gz" } ], "1.1.61087": [ { "comment_text": "", "digests": { "md5": "a1f820b140880694f0cb3cfa305a7d04", "sha256": "70722c65a139c4b3361f6ac96d64bc8669848092316baa24fc1c0562b834443f" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.61087.tar.gz", "has_sig": false, "md5_digest": "a1f820b140880694f0cb3cfa305a7d04", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15374, "upload_time": "2019-03-06T05:30:21", "url": "https://files.pythonhosted.org/packages/50/04/618790d23c87a2c205ed0f37224e9f61cf373a101f2b37464f29fc590080/apimaticcalculatorpython-1.1.61087.tar.gz" } ], "1.1.61932": [ { "comment_text": "", "digests": { "md5": "0762bc4dd5b10baa47a341bb25a6a333", "sha256": "a281a25f51b0b56a98018cb6fa6151d4d0bc18317bdf99389ef6635a11ced478" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.61932.tar.gz", "has_sig": false, "md5_digest": "0762bc4dd5b10baa47a341bb25a6a333", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15355, "upload_time": "2019-03-06T05:30:57", "url": "https://files.pythonhosted.org/packages/fa/93/b9f18fa8e6287f6ffca886179df5bd61845a0a8694fecc83d9b59417ed3d/apimaticcalculatorpython-1.1.61932.tar.gz" } ], "1.1.62133": [ { "comment_text": "", "digests": { "md5": "8254089db132e6ee0a6b6414db79b45e", "sha256": "2f09a275fffa68374e0f05c3661a053c59cd2845111aab43f3a06067316a1803" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.62133.tar.gz", "has_sig": false, "md5_digest": "8254089db132e6ee0a6b6414db79b45e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15361, "upload_time": "2019-03-05T17:27:07", "url": "https://files.pythonhosted.org/packages/70/cc/72ffa9246f8797290188082459f9bce4ee22253f8d497669b4ca89b38ab8/apimaticcalculatorpython-1.1.62133.tar.gz" } ], "1.1.77069": [ { "comment_text": "", "digests": { "md5": "ff892ae7d26a150a44f875a4847532c9", "sha256": "b87983ce19bcc7acf87bc5ec958c6a63829e7b6dc6833478d75ae98cded8c464" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.77069.tar.gz", "has_sig": false, "md5_digest": "ff892ae7d26a150a44f875a4847532c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15374, "upload_time": "2019-03-06T04:58:05", "url": "https://files.pythonhosted.org/packages/e9/46/6aa3baf6dbb766f7411dc22236a1e06b6af792bd7a8b623b066d4de235ae/apimaticcalculatorpython-1.1.77069.tar.gz" } ], "1.1.81306": [ { "comment_text": "", "digests": { "md5": "5a591b0839a28b4aa70c959628ac56af", "sha256": "07506e54189f3af312532a1859ee1366e2f47dc55899a2110a7e046120a56d89" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.81306.tar.gz", "has_sig": false, "md5_digest": "5a591b0839a28b4aa70c959628ac56af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15359, "upload_time": "2019-03-06T05:32:05", "url": "https://files.pythonhosted.org/packages/14/b6/5eed7233b16fcdb3e706d5823299a3d7395c04c65b4775300e4a3b642c69/apimaticcalculatorpython-1.1.81306.tar.gz" } ], "1.1.8247": [ { "comment_text": "", "digests": { "md5": "cf1f0d60cbc8e0f35b014836d4e2d3eb", "sha256": "a76260a26ca8bf755e43c0ded5f2b4135286db36f9818c0ce5466d56cec50a2c" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.8247.tar.gz", "has_sig": false, "md5_digest": "cf1f0d60cbc8e0f35b014836d4e2d3eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15352, "upload_time": "2019-03-06T05:24:22", "url": "https://files.pythonhosted.org/packages/60/12/973ad44e04095b3f1cf9ef21aebc985a921dbbd13d97e87229ee1cb3dcba/apimaticcalculatorpython-1.1.8247.tar.gz" } ], "1.1.82742": [ { "comment_text": "", "digests": { "md5": "9a3382d23259455e472e745af33c0fb6", "sha256": "5e5f4682ea3b535031ef19edf9cf54a119b2671f0087d9d2727be79fbf709336" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.82742.tar.gz", "has_sig": false, "md5_digest": "9a3382d23259455e472e745af33c0fb6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15355, "upload_time": "2019-03-06T05:20:52", "url": "https://files.pythonhosted.org/packages/f8/ea/6a23b21bb718a8bdc4fb5cb5c6c98684b0a18f6eecd3ba48dd1b81903e64/apimaticcalculatorpython-1.1.82742.tar.gz" } ], "1.1.85236": [ { "comment_text": "", "digests": { "md5": "9a988257af785b4ff68e7de8008fd662", "sha256": "ca8cff7d5435a3a6109e5c0c057b53afe49906f3d6c645a82eb7a8030363628e" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.85236.tar.gz", "has_sig": false, "md5_digest": "9a988257af785b4ff68e7de8008fd662", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15362, "upload_time": "2019-03-06T05:18:51", "url": "https://files.pythonhosted.org/packages/34/5e/7d6ae6f3f48ccdfa2557b0fa75e8c25f2de5d93d34c726872f5ac3fc4a62/apimaticcalculatorpython-1.1.85236.tar.gz" } ], "1.1.90969": [ { "comment_text": "", "digests": { "md5": "eae3f70931150bb3bc03602e57aec230", "sha256": "c198fb0759eb1e0ada77e107702701f0593ebb48d113228ca8998383c13cf88d" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.90969.tar.gz", "has_sig": false, "md5_digest": "eae3f70931150bb3bc03602e57aec230", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15358, "upload_time": "2019-03-06T05:19:12", "url": "https://files.pythonhosted.org/packages/8d/56/02101ac9216dda769a6e93fc36c9feb09d1c4f3f28f94c68c9161e7a6b15/apimaticcalculatorpython-1.1.90969.tar.gz" } ], "1.1.97331": [ { "comment_text": "", "digests": { "md5": "7449f8a5fc008c4cad075731dffc3f75", "sha256": "7df27d174d8010603be4ba4abc43ebfab6ed7180b2cd91586fb32505b8cf51ff" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.97331.tar.gz", "has_sig": false, "md5_digest": "7449f8a5fc008c4cad075731dffc3f75", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15356, "upload_time": "2019-03-06T05:23:37", "url": "https://files.pythonhosted.org/packages/93/ac/5a616911d352d34a19d6146c24b3f770b0fa2d54a5193e4f192854ad7d0f/apimaticcalculatorpython-1.1.97331.tar.gz" } ], "1.1.98908": [ { "comment_text": "", "digests": { "md5": "965afc443813a60732e11b4c564e9fc1", "sha256": "1ec7d74f434773403209b7defd49bff8d063d4b784ab4b8c89e32ecf77276bed" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.98908.tar.gz", "has_sig": false, "md5_digest": "965afc443813a60732e11b4c564e9fc1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15362, "upload_time": "2019-03-06T05:30:36", "url": "https://files.pythonhosted.org/packages/62/23/b5d41916dd4cff4c561c5bee44005143e5c01dc1b379ef0fb45ba637d718/apimaticcalculatorpython-1.1.98908.tar.gz" } ], "1.1.99259": [ { "comment_text": "", "digests": { "md5": "47ee36be3c986ca84f741d62ea7809dd", "sha256": "3b8d1bbcf388bf77beda6c3e792f425cbbe1f2eb05cc88dd1aefa080372ace16" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.99259.tar.gz", "has_sig": false, "md5_digest": "47ee36be3c986ca84f741d62ea7809dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15362, "upload_time": "2019-03-06T05:32:16", "url": "https://files.pythonhosted.org/packages/2f/07/9d794ce4a30a026d7688fa338f440d48168da1bb7c5d97e0a3fc55d8802d/apimaticcalculatorpython-1.1.99259.tar.gz" } ], "1.1.99260": [ { "comment_text": "", "digests": { "md5": "b9ca70f44c1a3f3ace3b0aaab7a07ab0", "sha256": "18c9cd9ae1e3444235eeebc57e770826ea36956eeedc2caabef771f73069ec94" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.99260.tar.gz", "has_sig": false, "md5_digest": "b9ca70f44c1a3f3ace3b0aaab7a07ab0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15359, "upload_time": "2019-03-06T05:39:06", "url": "https://files.pythonhosted.org/packages/e1/bd/44afe86e0dd343c4b97ca1c33163f6268353b1f80da6f2f4e66cdb7e3a37/apimaticcalculatorpython-1.1.99260.tar.gz" } ], "1.1.99261": [ { "comment_text": "", "digests": { "md5": "2747e99240396ccf75bc97bf67675dab", "sha256": "0cd62b15a3010c0b9be2b82cb4c9d2996d09b1b2ae6b6af91679d6d9d6f18db2" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.99261.tar.gz", "has_sig": false, "md5_digest": "2747e99240396ccf75bc97bf67675dab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15358, "upload_time": "2019-03-06T05:39:20", "url": "https://files.pythonhosted.org/packages/0c/f1/a1e96eafe0526aec86d6f911546d8c51c342197e3af63d9ba59df034047a/apimaticcalculatorpython-1.1.99261.tar.gz" } ], "1.1.99262": [ { "comment_text": "", "digests": { "md5": "85cc0d96ce6850e7b7cc28d44458ef1e", "sha256": "14318f573e7167723d24e57382b8c60d2fdcc3486fa618486198e02e02a1d615" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.99262.tar.gz", "has_sig": false, "md5_digest": "85cc0d96ce6850e7b7cc28d44458ef1e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15361, "upload_time": "2019-03-06T05:55:59", "url": "https://files.pythonhosted.org/packages/00/78/744bd9ef1ab05c9d815d24e18bd0bdcc47d0d1acfb8547bf5e790da34cbd/apimaticcalculatorpython-1.1.99262.tar.gz" } ], "1.1.99263": [ { "comment_text": "", "digests": { "md5": "ce39a105828003fcf6cbf622e8364398", "sha256": "788183e9e912668387de41a60d7de5e2b742438d5d51f41def4f0ad0215fcc7a" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.99263.tar.gz", "has_sig": false, "md5_digest": "ce39a105828003fcf6cbf622e8364398", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14598, "upload_time": "2019-03-07T15:49:25", "url": "https://files.pythonhosted.org/packages/e8/66/0f5ef84f6f100cf461e12d6565b0b1ad50b7505493a91c5790c15445b3cc/apimaticcalculatorpython-1.1.99263.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ce39a105828003fcf6cbf622e8364398", "sha256": "788183e9e912668387de41a60d7de5e2b742438d5d51f41def4f0ad0215fcc7a" }, "downloads": -1, "filename": "apimaticcalculatorpython-1.1.99263.tar.gz", "has_sig": false, "md5_digest": "ce39a105828003fcf6cbf622e8364398", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14598, "upload_time": "2019-03-07T15:49:25", "url": "https://files.pythonhosted.org/packages/e8/66/0f5ef84f6f100cf461e12d6565b0b1ad50b7505493a91c5790c15445b3cc/apimaticcalculatorpython-1.1.99263.tar.gz" } ] }