Metadata-Version: 2.1
Name: NetGsm
Version: 0.0.1
Summary: NetGsm Sms Client Python package
Home-page: https://github.com/blueromans/netgsm.git
Author: Yaşar Özyurt
Author-email: blueromans@gmail.com
Project-URL: Bug Tracker, https://github.com/blueromans/netgsm/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

# LogoRestClient PyPackage

Logo is the most popular Erp desktop application at Turkey. LogoRestClient is a Python library to access logo rest services quickly.

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install foobar.

```bash
pip install LogoRestClient
```

## Usage

```python
from logorestclient import LogoService

credentials = {
    'GRANT_TYPE': 'grant type',
    'USER_NAME': 'username',
    'CLIENT_NUMBER': 'client number',
    'PASSWORD': 'password',
    'REST_URL': 'rest url',
}
logo_service = LogoService(credentials)
# returns 'query result'
result = logo_service.runQuery('sql_query')

```

## Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

## License

[MIT](https://choosealicense.com/licenses/mit/)
