Metadata-Version: 2.1
Name: concoursepy
Version: 0.0.2
Summary: library to interface with concourse
Home-page: https://github.com/arwineap/concoursepy
Author: Alex Arwine
Author-email: arwineap@gmail.com
License: UNKNOWN
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

# concoursepy
concoursepy gives you a way to interact with the concourse api through python

currently supports
 * concourse's basic auth mechanism
 * the endpoints used by the concourse web ui

## Examples
```python3
import concoursepy

ci = concoursepy.api('https://ci.example.com', 'team_a', 'username', 'password')
print(ci.jobs('example_pipeline'))
```


