jenkins 파이썬 라이브러리를 사용해 API를 호출할 때 사용할 수 있는 예시이다.
간단히 아래 문서를 통해 파이썬으로 사용할 수 있다.
https://python-jenkins.readthedocs.io/en/latest/examples.html#example-3-working-with-jenkins-jobs
예시에서는 토큰이 아니라 user 이름, password를 사용했다. 가벼운 배치이니.
server = jenkins.Jenkins(self.host, username=self.user, password=self.password)
그냥 사용하면 403에러가 난다.
urllib.error.HTTPError: HTTP Error 403: Forbidden
제대로 동작시킬려면 configure security 수정이 필요하다.
'python' 카테고리의 다른 글
[python] pretty table 사용기 (0) | 2019.10.11 |
---|---|
[python] http url 끝에 //////를 지우기 (0) | 2019.09.27 |
[python3] list/set/dict comprehension 예시 (0) | 2019.08.20 |
구글에서 만든 파이썬 CLI 예시 (0) | 2019.04.23 |
[flask] request의 get_json(force=True) 추가 (0) | 2019.01.24 |