Metadata-Version: 2.0
Name: gocd
Version: 0.7.0.2
Summary: A Python API for interacting with Go Continuous Delivery
Home-page: UNKNOWN
Author: Björn Andersson
Author-email: ba@sanitarium.se
License: MIT License
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7

A Python API for interacting with `Go Continuous Delivery`_
===========================================================

.. image:: https://coveralls.io/repos/gaqzi/py-gocd/badge.svg?branch=master&service=github
   :target: https://coveralls.io/github/gaqzi/py-gocd?branch=master
   :alt: Coverage Status

.. image:: https://snap-ci.com/gaqzi/py-gocd/branch/master/build_image
   :target: https://snap-ci.com/gaqzi/py-gocd/branch/master
   :alt: Build Status

.. image:: https://readthedocs.org/projects/py-gocd/badge/?version=latest
   :target: https://readthedocs.org/projects/py-gocd/?badge=latest
   :alt: Documentation Status

.. image:: https://img.shields.io/pypi/v/gocd.svg
   :target: https://pypi.python.org/pypi/gocd/
   :alt: Latest Version

.. image:: https://img.shields.io/pypi/dm/gocd.svg
   :target: https://pypi.python.org/pypi/gocd/
   :alt: Downloads

.. image:: https://img.shields.io/pypi/pyversions/gocd.svg
   :target: https://pypi.python.org/pypi/gocd/
   :alt: Python versions

.. image:: https://img.shields.io/pypi/status/gocd.svg
   :target: https://pypi.python.org/pypi/gocd/
   :alt: Package status

The reason for this project is to provide a wrapper to easily perform operations
against Go. I've been writing a lot of shell scripts to interact with Go using
curl, but when going a little further than the most basic interactions I've
always started to feel the need for doing all of this in a proper programming
language. I.e. something that is not bash.

I've chosen to use Python and version 2.6.6 as my target platform, with no
external dependencies, to make it really straightforward to install/run on RHEL6
and other similar *stable* distributions.

Usage
-----

The main interaction point for this library is the `Server` class,
it contains helpers to instantiate the different API endpoints.

An example interaction:

.. code-block:: python

    >>> from gocd import Server
    >>> server = Server('http://localhost:8153', user='ba', password='secret')
    >>> pipeline = server.pipeline('Example-Pipeline')
    >>> response = pipeline.history()
    >>> bool(response)
    True
    >>> response.status_code
    200
    >>> response.content_type
    'application/json'
    >>> response.is_ok
    >>> response.body
    {"pagination":{"offset":0,"total":1,"page_size":10},"pipelines":[...]"}

Style
-----

This project aims to follow the `Google Python Style Guide`_ and particularly
the section on `commenting the code`_.

License
-------

MIT License.

.. _`Go Continuous Delivery`: http://go.cd/
.. _`Google Python Style Guide`: https://google-styleguide.googlecode.com/svn/trunk/pyguide.html
.. _`commenting the code`: https://google-styleguide.googlecode.com/svn/trunk/pyguide.html?showone=Comments#Comments


