Metadata-Version: 2.1
Name: bytesviewapi
Version: 0.0.1
Summary: Python library for bytesview client-API Call
Home-page: https://github.com/algodommedia/bytesviewapi-python
Author: Bytesview
Author-email: contact@bytesview.com
License: MIT
Keywords: byteviewapi,senitment
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Customer Service
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Requires-Dist: requests (<3.0.0)

# Bytesviewapi Python Client
Bytesviewapi allows you to create a library for accessing http services easily, in a centralized way. An API defined by bytesviewapi will return a JSON object when called.

# Installation

## Supported Python Versions
Python >= 3.5 fully supported and tested.

## Install Package
```
pip install bytesviewapi
```
## Quick Start

`POST 1/static/sentiment`

```
from bytesviewapi import BytesviewapiClient

# API key authorization, Initialize the client with your API key:
api = BytesviewapiClient(api_key="API key")

# pass your desired strings in a dictionary with unique key
data = {"key1": "We are good here", "key2": "this is not what we expect"}

response = api.sentiment_api(data = data , lang = "en")

```
`API key` : Your private Bytesview API key. 

`data` : You can pass your desired strings in the dictionary format where each string has some unique key. 

`lang` : Language Code (English - en, Arabic - ar), Default laguage is english(en).


