Query SPDX 3 data files
Project description
spdx3query
Command line tool for querying SPDX 3 files
Installation
spdx3query
can be installed using pip
:
python3 -m pip install spdx3query
Usage
spdx3query
takes one or mode SPDX 3 JSON files as input using the -i
option
and then a subcommand to query information about it. For example, this command
will list all Build
objects found in my-sdpx.spdx.json
:
spdx3query -i my-spdx.spdx.json find --type build_Build
There are many commands that spdx3query
supports. For a list of commands, see
spdx3query --help
. Each command also implements a --help
which can provide
additional information about what it does, for example spdx3query find --help
Interactive mode
In addition to the top level subcommands of sdpx3query
, there is also an
interactive mode where commands can be run. This can be useful for
interactively exploring SPDX 3 files, particularly if they are very large as
the dataset only needs to be loaded once. To enter interactive mode, the
interactive
subcommand is used, for example:
spdx3query -i my-spdx.spdx.json interactive
From the prompt, any query subcommand can be run in the same way as if it had been specified on the command line, for example:
> find --type build_Build
Object Mnemonic Handles
Objects in SPDX 3 are often assigned IRIs as identifiers (either in the @id
or spdxId
property, depending on the object). These IRI names are often very
long and can be difficult to type in correctly when performing queries on a
data file. To aid in identifying objects, spdx3query
assigns a mnemonic to
each device that can be used in place of the identifier. The mnemonic uses
words from the BIP 39 word list, and by default uses 3 terms. If you are
dealing with a large datafile, you can increase the number of terms using the
--handle-terms
argument to spdx3query
. The mnemonic handle is based on a
hash of the actual ID, and therefore is stable even when loading the same file
multiple times.
As an example, you can see the mnemonic handle for the following build object is "chest-acoustic-phone"
$ spdx3query -i bitbake.spdx.json find --type build_Build --show
Loaded 18 objects in 0.01s
Found 1 object(s):
build_Build - 'chest-acoustic-phone'
spdxId: 'http://spdx.org/spdxdoc/bitbake-addba517-4804-5ae3-87c2-0c3a1a5812ba/bitbake/2ae7c23f5bf50e79d5c97b3a3f2294bb'
This means that you can can use this mnemonic handle in place of the actual spdxId to reference this object, e.g.:
spdx3query -i bitbake.spdx.json show chest-acoustic-phone
For objects that do not have an ID, a mnemonic handle will also be assigned,
but it will have a LOCAL-
prefix prepended to it. These handles are not
guaranteed to remain the same between different invocations of spdx3query
.
For example:
$ spdx3query -i bitbake.spdx.json find --type CreationInfo
Loaded 18 objects in 0.01s
Found 1 object(s):
CreationInfo - 'LOCAL-stereo-window-riot'
Development
Development on spdx3query
can be done by setting up a virtual environment and
installing it in editable mode:
python3 -m venv .venv
. .venv/bin/activate
pip install -e .[dev]
Tests can be run using pytest:
pytest -v
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
Built Distribution
File details
Details for the file spdx3query-0.0.2.tar.gz
.
File metadata
- Download URL: spdx3query-0.0.2.tar.gz
- Upload date:
- Size: 56.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c720c619dad51ff783fa501dfbb614b63caeb56436b523c9bf330bee98de68e2 |
|
MD5 | 36947c1e5cc5c781b57e9e9a4678770d |
|
BLAKE2b-256 | 4e626e388757177d0ceb596d5dda24b560bce8b01338c1c7de5b56180b51b515 |
File details
Details for the file spdx3query-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: spdx3query-0.0.2-py3-none-any.whl
- Upload date:
- Size: 59.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f63bee1c05c368e59640063ebf546e84468836a9ce9ccd0c074d21e73e192168 |
|
MD5 | bc47428a2aeb7e4e13cb7e75e597fce8 |
|
BLAKE2b-256 | 4a004f2c5f38aee05247639f770df678d0f9a4d3d2a8507fd9e3c8e7552c625b |