Metadata-Version: 1.1
Name: pyjenkins
Version: 0.1.2
Summary: Python wrapper around the Jenkins JSON API
Home-page: https://github.com/stylecaster/pyjenkins
Author: Chris Lawlor
Author-email: chris.lawlor@stylecaster.com
License: MIT
Description: ===============================
        PyJenkins
        ===============================
        
        Python wrapper around the Jenkins JSON API
        
        * Free software: MIT license
        * Documentation: http://pyjenkins.rtfd.org.
        
        Features
        --------
        
        Query Jenkins jobs and builds, and trigger a build.
        
        
        Installation
        ------------
        
            pip install pyjenkins
        
        Usage
        -----
        
            >>> from pyjenkins import Jenkins
            >>> jenkins = Jenkins("http://jenkins.example.com/", 'username', 'password')
            >>> job = jenkins.get_job_by_name('my-job')
            >>> build = job.build('auth-token')
            >>> build.started
            False
            ...
            >>> build.refresh()
            >>> build.started
            True
            >>> build.complete
            False
            >>> build.estimated_duration
            60234
            ...
            >>> build.complete
            True
            >>> build.successful
            True
        
        
        
        
        History
        -------
        
        0.1.2 (2013-10-01)
        +++++
        
        * Build.get_build() now accepts a job url and optional auth kwarg
          instead of a Job instance.
        * Adds unit tests.
        
        
        
        0.1.1 (2013-09-28)
        ++++++++++++++++++
        
        * Bugfix for url transformation to API urls.
        * Bugfix for some Build status information always returning False
        * Python3 support
        * Adds .get_job() to JobSummary
        * Adds .get_build() to BuildSummary
        
        0.1.0 (2013-09-27)
        ++++++++++++++++++
        
        * First release on PyPI.
        
Keywords: jenkins
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
