Metadata-Version: 1.1
Name: pyjenkins
Version: 0.1.0
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://jenkins.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.0 (2013-08-11)
        ++++++++++++++++++
        
        * 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
