Metadata-Version: 2.1
Name: LogoRestClient
Version: 0.0.3
Summary: Logo Rest Client Python package
Home-page: https://github.com/blueromans/Logo-Rest-Client.git
Author: Yaşar Özyurt
Author-email: blueromans@gmail.com
Project-URL: Bug Tracker, https://github.com/blueromans/Logo-Rest-Client/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests

# LogoRestClient PyPackage

## Requirements

* [Python ^3.6.4](https://www.python.org/downloads/release/python-380)

## Setup

```bash
pip install LogoRestClient
```

## Usage

### Credentials

```bash
{
  'LOGO_REST_API': 'api url', 
  'LOGO_USER_NAME': 'username', 
  'LOGO_USER_PASSWORD': 'password',
  'LOGO_GRANT_TYPE': 'grant type', 
  'LOGO_CLIENT_ID': 'client id', 
  'LOGO_CLIENT_NUMBER': 'client number',
  'LOGO_CLIENT_SECRET': 'client secret'
}
```
### Initialize

```bash
from logorestclient import LogoService
logo_service = LogoService(credentials)
result = logo_service.runQuery('sql_query') 
```
