pyspi.utils.filter_spis
Filter a pyspi config YAML file using a list of keywords and return a new YAML file containing the reduced set of SPIs in the current working directory.
Example
from pyspi.utils import filter_spis
# using a user-specified source config file
filter_spis(["linear"], "linear_spis", "./myconfig.yaml")
# using the default config file in the pyspi dir
filter_spis(["linear"], "linear_spis")
# using a randomly generated name and default config file
filter_spis(["linear"]")
Parameters:
keywords
List of keywords used to filter SPIs e.g., linear, nonlinear, signed.
output_name
Name of the filtered YAML file to be saved in the current working directory. If no name is provided, a randomly generated name will be used.
configfile
Location of the source config file from which to filter SPIs. If no source file is provided, the config.yaml in the pyspi directory will be used.
Returns
Nothing
- A new file is created in the current working directory.
Raises:
ValueError: Raised in three scenarios:
If the
keywords
parameter is not a list.If any of the provided keywords is not a string.
If no SPIs match the specified keywords.
FileNotFoundError: Triggered if the specified
configfile
cannot be found or if the defaultconfig.yaml
is not present in the expected directory.OError: Occurs if there's an error reading the specified YAML file.
Last updated