Python bindings for accessing OSIDB API
Project description
osidb-bindings
A client library for accessing OSIDB API
Requirements
- gcc
- krb5-devel
- pip
- python3
- python3-devel
Installation
pip install osidb-bindings
Usage
import osidb_bindings
# Basic auth
osidb_session = osidb_bindings.new_session(osidb_server_uri="http://localhost:8000/", username="username", password="password")
or
# Default kerberos auth
osidb_session = osidb_bindings.new_session(osidb_server_uri="http://localhost:8000/")
# Get status
osidb_session.status()
# Retrieve flaw
flaw = osidb_session.flaws.retrieve(id="CVE-1111-2222")
# Fields can be accessed directly via attributes
flaw.title
flaw.impact
# or the flaw can be converted into dict
flaw_dict = flaw.to_dict()
flaw_dict["title"]
flaw_dict["impact"]
# Retrieving multiple flaws
all_flaws = osidb_session.flaws.retrieve_list()
# All query params listed in OpenAPI schema can be passed as well
filtered_flaws = osidb_session.flaws.retrieve_list(impact="IMPORTANT", tracker_ids=["111111", "222222"])
# number of results
filtered_flaws.count
# list with the results
filtered_flaws.results
For more details read tutorial
For development details read developer guide
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
osidb_bindings-4.15.0.tar.gz
(198.2 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file osidb_bindings-4.15.0.tar.gz.
File metadata
- Download URL: osidb_bindings-4.15.0.tar.gz
- Upload date:
- Size: 198.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.23
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b46ce3c770f285c70c12450babdda2433746d79383eee30a3d81b1ecac9f85ba
|
|
| MD5 |
39302265108e448ce620179d150ccfc0
|
|
| BLAKE2b-256 |
a92b27845c7692284816020822e51355f708eb5dfbbea9c6f6f1decef1acc0d4
|
File details
Details for the file osidb_bindings-4.15.0-py3-none-any.whl.
File metadata
- Download URL: osidb_bindings-4.15.0-py3-none-any.whl
- Upload date:
- Size: 577.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.23
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b1cbea7c2da8be9272c142bbf5d5e57ef54ead6e78ad1a877c88edb19a08e9d
|
|
| MD5 |
91bf1daa7400aae21416af962b770b3a
|
|
| BLAKE2b-256 |
af9ca48655d14992d2aa2453acb2ce6c20d96cddc4eea151e7a1e86e973ced87
|