Python bindings for accessing OSIDB API
Project description
osidb-bindings
A client library for accessing OSIDB API
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.summary
flaw.impact
# or the flaw can be converted into dict
flaw_dict = flaw.to_dict()
flaw_dict["summary"]
flaw_dict["impact"]
# Retrieving multiple flaws
all_flaws = osidb_session.flaw.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.8.0.tar.gz
(184.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.8.0.tar.gz.
File metadata
- Download URL: osidb_bindings-4.8.0.tar.gz
- Upload date:
- Size: 184.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9e2ec3a0390936967972202e1c5a002a81556fd534799b55a5adf18f9c9b583
|
|
| MD5 |
6c5fe90ce830dd286e87a9f1a5eb697f
|
|
| BLAKE2b-256 |
5272f749491c5e8ef8c66c505aaacbb695459664c94e5306d998a68699d310b4
|
File details
Details for the file osidb_bindings-4.8.0-py3-none-any.whl.
File metadata
- Download URL: osidb_bindings-4.8.0-py3-none-any.whl
- Upload date:
- Size: 496.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1831e757b1cfd3d468a23049e73c672615561040d6120ad04599395d7cdedde
|
|
| MD5 |
d496942618b11ae77b44ca0c83fb5558
|
|
| BLAKE2b-256 |
1a76c4e9dc18aae9c1db34759186a15f6918f3a563e5c7874fa0fe88ecbb7603
|