Metadata-Version: 2.1
Name: arikaim-client
Version: 1.0.18
Summary: Arikaim CMS api client
Home-page: https://github.com/arikaim/api-client-py
Download-URL: 
Author: Intersoft Ltd
Author-email: info@arikaim.com
License: MIT License
Keywords: arikaim,arikaim cms,api client
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: requests

## Arikaim CMS Api Client for python
![version: 1.0.0](https://img.shields.io/github/release/arikaim/api-client-py.svg)
![license: MIT](https://img.shields.io/badge/License-MIT-blue.svg)


This repo is part of  [Arikaim CMS](http://arikaim.com)  project.


### Installation

```sh
pip install arikaim-client
```

### Usage

```python

from arikaim.client.client import ArikaimClient

client = ArikaimClient(host,apiKey)

data = {
    request data fields  key: value
}

response = client.request(method,url,data)

print(response.status)
print(response.to_dictonary())


#Add header
client.add_header({ 'key': 'value' })


#POST request 
response = client.post(url,data)

#GET request
response = client.get(url)

#PUT request
response = client.put(url,data)


```
