utils
Various helper functions that packers can use.
check_metadata_file ¶
check_metadata_file(path: Path, **kwargs: Path)
Check a metadata file, return error object.
If required
is set, will add an error if file is missing.
If schema
is passed and file exists, will validate the file and log errors.
Combine both to check that a file does exist and is valid according to a schema.
Source code in src/metador_core/packer/utils.py
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
|
pack_file ¶
pack_file(
node: Union[MetadorContainer, MetadorGroup],
file_path: Union[Path, str],
*,
target: Optional[str] = None,
metadata: Optional[MetadataSchema] = None
) -> MetadorDataset
Embed a file, adding minimal generic metadata to it.
Will also ensure that the attached metadata has RO-Crate compatible @id set correctly.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
node |
Union[MetadorContainer, MetadorGroup]
|
Container where to embed the file contents |
required |
file_path |
Union[Path, str]
|
Path of an existing file to be embedded |
required |
target |
Optional[str]
|
Fresh path in container where to place the file |
None
|
metadata |
Optional[MetadataSchema]
|
If provided, will attach this instead of harvesting defaults. |
None
|
Returns:
Type | Description |
---|---|
MetadorDataset
|
Dataset of new embedded file. |
Source code in src/metador_core/packer/utils.py
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 |
|