Skip to main content

Jenkins Python Client

Project description

Tests CodeQL Coverage Status codecov PyPI PyPI - Python Version PyPI - Wheel Documentation Status GitHub

Jenkins Python Client

Python3 client library for Jenkins API.

Features

  • Object oriented, each Jenkins item has corresponding class, easy to use and extend
  • Base on api/json, easy to query/filter attribute of item
  • Setup relationship between class just like Jenkins item
  • Support api for almost every Jenkins item
  • Pythonic
  • Test with latest Jenkins LTS

Installation

python3 -m pip install api4jenkins

Quick start

>>> from api4jenkins import Jenkins
>>> client = Jenkins('http://127.0.0.1:8080/', auth=('admin', 'admin'))
>>> client.version
'2.176.2'
>>> xml = """<?xml version='1.1' encoding='UTF-8'?>
... <project>
...   <builders>
...     <hudson.tasks.Shell>
...       <command>echo $JENKINS_VERSION</command>
...     </hudson.tasks.Shell>
...   </builders>
... </project>"""
>>> client.create_job('path/to/job', xml)
>>> import time
>>> item = client.build_job('path/to/job')
>>> while not item.get_build():
...      time.sleep(1)
>>> build = item.get_build()
>>> for line in build.progressive_output():
...     print(line)
...
Started by user admin
Running as SYSTEM
Building in workspace /var/jenkins_home/workspace/freestylejob
[freestylejob] $ /bin/sh -xe /tmp/jenkins2989549474028065940.sh
+ echo $JENKINS_VERSION
2.176.2
Finished: SUCCESS
>>> build.building
False
>>> build.result
'SUCCESS'

Documentation

User Guide and API Reference is available on Read the Docs

Project details


Download files

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

Source Distribution

api4jenkins-1.10.tar.gz (20.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

api4jenkins-1.10-py3-none-any.whl (25.9 kB view details)

Uploaded Python 3

File details

Details for the file api4jenkins-1.10.tar.gz.

File metadata

  • Download URL: api4jenkins-1.10.tar.gz
  • Upload date:
  • Size: 20.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.10.4

File hashes

Hashes for api4jenkins-1.10.tar.gz
Algorithm Hash digest
SHA256 f245d5c766d6fce70fedf500cc96555b8a073f38dce0c7f8d1956bfd76c06714
MD5 5910c3895589957bd2b47d3b6d7e8ece
BLAKE2b-256 826a427949cfeda7f21999cd0d9a09438ac742c3a9bf5745ec20cc7192267c78

See more details on using hashes here.

File details

Details for the file api4jenkins-1.10-py3-none-any.whl.

File metadata

  • Download URL: api4jenkins-1.10-py3-none-any.whl
  • Upload date:
  • Size: 25.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.10.4

File hashes

Hashes for api4jenkins-1.10-py3-none-any.whl
Algorithm Hash digest
SHA256 fa9983418615e87acbe8374aa1cf2b49bf6160bcf47848cc62218ddf78f101f1
MD5 918b6ae624d04e59aca5b457d2d815b6
BLAKE2b-256 bbb3afe09743aad1549e6ac6f49bd4eae3346f9362c273e426dce451354206de

See more details on using hashes here.

Supported by

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