Skip to main content

Python wrapper for the Jenkins CI REST API

Project description

Overview

Downloads License Wheel Status Latest Version

Extensible, user and developer friendly Python interface to the Jenkins CI tool, wrapping the features exposed by the standard REST API using Pythonic objects and functions. Tested against the latest 2.x and 3.x versions of Python, and the latest trunk and LTS editions of Jenkins.

With an intuitive and well thought out interface, PyJen offers anyone familiar with the Python programming language an easy way to manage Jenkins dashboards from a simple command prompt. All core primitives of Jenkins, including views, jobs and builds are easily accessible and can be loaded, analyzed and even modified or created via simple Python commands.

Comments, suggestions and bugs may be reported to the project maintainer

Full API documentation can be found at TheFriendlyCoder.com.

Quick start guide

  1. First, we recommend that you install the pip package manager as described here

  2. Install PyJen directly from PyPI using PIP:

# pip install pyjen
  1. import the pyjen module and start scripting! See below for some common examples.

Examples

Display a list of all jobs on the default view

from pyjen import *
jk = jenkins.easy_connect("http://localhost:8080")
vw = jk.get_default_view()
jobs = vw.get_jobs()

for j in jobs:
    print j.get_name()

Disable all jobs in a view named “My View”

from pyjen import *
jk = jenkins.easy_connect("http://localhost:8080")
vw = jk.find_view("My View")
vw.disable_all_jobs()

Get all upstream dependencies of a job named “JobA”

from pyjen import *
j = job.easy_connect("http://localhost:8080/job/JobA")
upstream = j.get_upstream_jobs(True)

for u in upstream:
    print u.get_name()

Clone all jobs in a view who are named with a ‘trunk’ identifier for a new branch configuration

from pyjen import *
v = view.easy_connect("http://localhost:8080/views/trunk_builds")
v.clone_all_jobs(".*trunk.*", "branch")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

pyjen-0.0.8dev-py2.py3-none-any.whl (32.1 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file pyjen-0.0.8dev-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for pyjen-0.0.8dev-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 77502b248b092bbd5027e903e25e115395bb2776e9a2c8ec0a3a5e3056f474ea
MD5 b27c129be86f9bb8ba7828f6ac1d0d60
BLAKE2b-256 dff1b523105ff619a1379ecc2ab934eb685e7dc56c11c89c6efee45af994220b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page