Metadata-Version: 2.1
Name: polarion
Version: 0.1.2
Summary: Polarion client for Python
Home-page: https://github.com/jesper-raemaekers/python-polarion
Author: Jesper Raemaekers
Author-email: j.raemaekers@relek.nl
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/jesper-raemaekers/python-polarion/issues
Project-URL: Documentation, https://python-polarion.readthedocs.io/
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 3 - Alpha
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: zeep
Requires-Dist: lxml

# python-polarion
[![Documentation Status](https://readthedocs.org/projects/python-polarion/badge/?version=latest)](https://python-polarion.readthedocs.io/en/latest/?badge=latest)


This package allows access to a Polarion server.
Note that this is the first release and that updates will change the interface in the near future.

# Installation

```
pip install polarion
```

# Getting started

Creating the Polarion client and getting workitems or test runs:

```python
from polarion import polarion
client = polarion.Polarion('http://example.com/polarion', 'user', 'password')
project = client.getProject('Python')
workitem = project.getWorkitem('PYTH-510')
run = project.getTestRun('SWQ-0001')
```


More examples to be found in the quick start section of the documentation.
[Go to the documentation](https://python-polarion.readthedocs.io/en/latest/index.html)

# Known issues or missing features
No way of knowing the test run possible statuses.
Sessions not being checked on validity
No access to the live docs




