Metadata-Version: 2.1
Name: python-qbo
Version: 0.3.0
Summary: UNKNOWN
Home-page: https://github.com/sebrut/python-qbo
Author: Sebastian Rutofski
Author-email: kontakt@sebastian-rutofski.de
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: urllib3

# python-qbo
[![Build Status](https://travis-ci.com/SebRut/python-qbo.svg?branch=master)](https://travis-ci.com/SebRut/python-qbo)
[![PyPI](https://img.shields.io/pypi/v/python-qbo.svg)](https://pypi.org/project/python-qbo/)
[![Coverage Status](https://coveralls.io/repos/github/SebRut/python-qbo/badge.svg?branch=master)](https://coveralls.io/github/SebRut/python-qbo?branch=master)
[![CodeFactor](https://www.codefactor.io/repository/github/sebrut/python-qbo/badge)](https://www.codefactor.io/repository/github/sebrut/python-qbo)

## Installation

`pip install python-qbo`

## Usage
Import the package: 
```python
from qbo import Qbo
```

Obtain a qbo instance:
```python
qbo = Qbo("https://{QBO_URL}/")
```

Get the name of the machine:
```python
print(qbo.name())
```

Get maintenance status:

```python
print(qbo.maintenance_status())
```


