pycontribs / jenkinsapi

A Python API for accessing resources and configuring Hudson & Jenkins continuous-integration servers
http://pypi.python.org/pypi/jenkinsapi
MIT License
857 stars 485 forks source link

Is there any way in Python Jenkins module to know Jenkins is in quiet mode ? #785

Open desalehemant87 opened 4 years ago

desalehemant87 commented 4 years ago

Is there any way in Python Jenkins module to know Jenkins is in quiet mode ?

joelee2012 commented 3 years ago

try https://api4jenkins.readthedocs.io/en/latest/user/example.html#jenkins,

from api4jenkins import Jenkins
j = Jenkins(url, auth=(user, password))
print(j.quieting_down)