Skip to main content

Python client library for openQA API

Project description

openqa_client

This is a client for the openQA API, based on requests. It requires Python 3.6 or later.

Usage

Here's a simple example of reading the status of a job:

from openqa_client.client import OpenQA_Client
client = OpenQA_Client(server='openqa.opensuse.org')
print(client.openqa_request('GET', 'jobs/1'))

Here's an example of triggering jobs for an ISO:

# This is a Fedora server.
client = OpenQA_Client(server='openqa.happyassassin.net')
params = {}
params['ISO'] = '22_Beta_TC2_server_x86_64_boot.iso'
params['DISTRI'] = 'fedora'
params['VERSION'] = '22'
params['FLAVOR'] = 'server_boot'
params['ARCH'] = 'x86_64'
params['BUILD'] = '22_Beta_TC2'
print(cl.openqa_request('POST', 'isos', params))

All methods other than GET require authentication. This client uses the same configuration file format as the reference (perl) client in openQA itself. Configuration will be read from /etc/openqa/client.conf or ~/.config/openqa/client.conf. A configuration file looks like this:

[openqa.happyassassin.net]
key = APIKEY
secret = APISECRET

You can get the API key and secret from the web UI after logging in. Your configuration file may include credentials for multiple servers; each section contains the credentials for the server named in the section title.

If you create an OpenQA_Client instance without passing the server argument, it will use the first server listed in the configuration file if there is one, otherwise it will use 'localhost'. Note: this is a difference in behaviour from the perl client, which always uses 'localhost' unless a server name is passed.

TLS/SSL connections are the default (except for localhost). You can pass the argument scheme to OpenQA_Client to force the use of unencrypted HTTP, e.g. OpenQA_Client(server='openqa.happyassassin.net', scheme='http').

The API always returns JSON responses; this client's request functions parse the response before returning it.

If you need for some reason to make a request which does not fall into the openqa_request() method's expected pattern, you can construct a requests.Request and pass it to do_request(), which will attach the required headers, execute the request, and return the parsed JSON response.

The const module provides several constants that are shadowed from the upstream openQA code, including job states, results, and the 'scenario keys'.

Licensing

This software is available under the GPL, version 2 or any later version. A copy is included as COPYING.

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

openqa_client-4.2.0.tar.gz (32.3 kB view details)

Uploaded Source

Built Distribution

openqa_client-4.2.0-py3-none-any.whl (25.1 kB view details)

Uploaded Python 3

File details

Details for the file openqa_client-4.2.0.tar.gz.

File metadata

  • Download URL: openqa_client-4.2.0.tar.gz
  • Upload date:
  • Size: 32.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.0rc1

File hashes

Hashes for openqa_client-4.2.0.tar.gz
Algorithm Hash digest
SHA256 01e5fb8f9dd07dce1c0acbd37dfdccd8a197fac6f26bbfeac970dd8694167248
MD5 15dc434e06138e75965d1d1337589d07
BLAKE2b-256 6b6b9d5dbcd1938972c10fb067feea60ddabc96eff13810533ec42484e4233dc

See more details on using hashes here.

File details

Details for the file openqa_client-4.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for openqa_client-4.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8466efbeddd144577d41f0270367c36e4292d8760f4b850d0375becde57988f7
MD5 d03e7ade80d848d512bc1507c1701810
BLAKE2b-256 14174086830496784be2bfeb8456999c5fe4fe8d9651375d19d0d3deb95797c4

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