Skip to main content

Asynchronous library of Jenkins API endpoints based on aiohttp

Project description

aiojenkins

Tests Coveralls github PyPI - Downloads

Asynchronous python library of Jenkins API endpoints based on aiohttp 🥳

Initial version of aiojenkins. Public API is still unstable (work is in progress)

Minimal Python version is 3.6 due async await and f-strings.

Installation

pip install aiojenkins

Usage

Start new build:

import asyncio
import aiojenkins

async def example():
    jenkins = aiojenkins.Jenkins('http://your_server/jenkins', 'login', 'password')
    await jenkins.build_job('job_name', dict(parameter='test'))

asyncio.run(example())

Please look at tests directory for more examples.

Testing

Currently tests aren't using any mocking. I am testing locally with dockerized Jenkins ver. 2.60.3

Prerequisites: docker, pytest pytest-cov pytest-asyncio

docker run -p 8080:8080 jenkins
python3 -m pytest -v --cov=aiojenkins --cov-report=term --cov-report=html

Contributing

Feel free to PR :)

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

aiojenkins-0.2.1.tar.gz (4.5 kB view hashes)

Uploaded Source

Built Distribution

aiojenkins-0.2.1-py3-none-any.whl (5.9 kB view hashes)

Uploaded Python 3

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