show_meta
Display Metadata from GONet Files.
This script provides a simple command-line tool to extract and display metadata from one or more GONet file paths.
Functions
show_meta()
: Display the metadata content of one or more GONet files.
Functions:
- GONet_Wizard.commands.show_meta.show_metadata(files)[source]
Display the metadata content of one or more GONet files.
This function extracts the metadata from GONet file(s), and pretty-prints them to the console. If the file(s) does not exist or cannot be parsed, a warning is shown instead.
- Parameters:
files (
str
orlist
ofstr
) – A single file path or a list of file paths pointing to GONet files.- Return type:
None
Notes
This function is typically used as a CLI utility via the commands/ interface.
The output is printed using
pprint
for readability.