Metadata-Version: 2.1
Name: apiComs
Version: 1.0.3
Summary: This is a package to stremaline api method calls
Home-page: https://github.com/demecode/winter-api-commons
Author: Deme Xavier
Author-email: clabsvc@gmail.com
License: MIT
Keywords: api automation,api testing,api commons,python api,api automation using pythoncommon repo
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Education
Description-Content-Type: text/markdown
License-File: LICENCE.txt

# winter-api-commons


This is a package to stremaline api method calls

This module containes the major reusable functions which can be imported and accessed directly which will reduce the time and code redundancy.

Installation
```
pip install apiCom
```


> Sample code:
```
import apiCom
url = "https://api.car.com/teslar/model1"
header = {}
resp = apiCom.get_api(url, header)
print(resp.json())
```


