Metadata-Version: 2.1
Name: arikaim-client
Version: 1.0.7
Summary: Arikaim CMS api client
Home-page: http://arikaim.com
Author: Konstantin Atanasov
Author-email: info@arikaim.com
License: UNKNOWN
Project-URL: Source, https://github.com/arikaim/api-client-py
Keywords: arikaim,arikaim cms,api client
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt

## 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())

POST request 

response = client.post(url,data)

GET request

response = client.get(url,data)

PUT request

response = client.put(url,data)


```


