harvester
Plugin group for metadata harvesters.
HarvesterPlugin ¶
Bases: pg.PluginBase
Source code in src/metador_core/harvester/__init__.py
39 40 41 |
|
HarvesterArgs ¶
Bases: BaseModelPlus
Base class for harvester arguments.
Source code in src/metador_core/harvester/__init__.py
47 48 49 50 51 |
|
HarvesterArgsPartial ¶
Bases: PartialFactory
Base class for partial harvester arguments.
Source code in src/metador_core/harvester/__init__.py
54 55 56 57 |
|
HarvesterMetaMixin ¶
Bases: type
Source code in src/metador_core/harvester/__init__.py
60 61 62 63 64 65 66 67 |
|
Harvester ¶
Bases: ABC
Base class for metadata harvesters.
A harvester is a class that can be instantiated to extract
metadata according to some schema plugin (the returned schema
must be defined as the Plugin.returns
attribute)
Override the inner Harvester.Args
class with a subclass to add arguments.
This works exactly like schema definition and is simply
another pydantic model, so you can use both field and root
validators to check whether the arguments are making sense.
If all you need is getting a file path, consider using
FileHarvester
, which already defines a filepath
argument.
Override the run()
method to implement the metadata harvesting
based on a validated configuration located at self.args
.
Source code in src/metador_core/harvester/__init__.py
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 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
|
Args
class-attribute
instance-attribute
¶
Args: TypeAlias = HarvesterArgs
Arguments to be passed to the harvester.
schema
property
¶
schema
Partial schema class returned by this harvester.
Provided for implementation convenience.
__init__ ¶
__init__(**kwargs)
Initialize harvester with (partial) configuration.
Source code in src/metador_core/harvester/__init__.py
111 112 113 |
|
__call__ ¶
__call__(**kwargs)
Return copy of harvester with updated configuration.
Source code in src/metador_core/harvester/__init__.py
115 116 117 118 119 |
|
harvest ¶
harvest()
Check provided arguments and run the harvester.
Call this when a harvester is configured and it should be executed.
Source code in src/metador_core/harvester/__init__.py
124 125 126 127 128 129 130 131 132 133 134 135 |
|
run
abstractmethod
¶
run() -> MetadataSchema
Do the harvesting according to instance configuration and return metadata.
Override this method with your custom metadata harvesting logic, based
on configuration provided in self.args
.
All actual, possibly time-intensive harvesting computations (accessing resources, running external code, etc.) MUST be performed in this method.
Ensure that your harvester does not interfere with anything else, such as other harvesters running on possibly the same data - open resources such as files in read-only mode. You SHOULD avoid creating tempfiles, or ensure that these are managed, fresh and cleaned up when you are done (e.g. if you need to run external processes that dump outputs to a file).
Returns:
Type | Description |
---|---|
MetadataSchema
|
A fresh instance of type |
Source code in src/metador_core/harvester/__init__.py
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
|
FileHarvester ¶
Bases: Harvester
Harvester for processing a single file path.
The file path is not provided or set during init, but instead is passed during harvest_file.
Source code in src/metador_core/harvester/__init__.py
162 163 164 165 166 167 168 169 170 |
|
PGHarvester ¶
Bases: pg.PluginGroup[Harvester]
Harvester plugin group interface.
Source code in src/metador_core/harvester/__init__.py
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 |
|
init_plugin ¶
init_plugin(plugin)
Add harvester to harvester lookup table.
Source code in src/metador_core/harvester/__init__.py
229 230 231 232 233 234 235 236 |
|
for_schema ¶
for_schema(
schema: Union[str, MetadataSchema],
*,
include_children: bool = False,
include_parents: bool = False
) -> Set[str]
List installed harvesters for the given metadata schema.
To extend the query to parent or child schemas, set include_children
and/or include_parents
accordingly.
Harvesters for child schemas are always compatible with the schema. (assuming correct implementation of the child schemas),
Harvesters for parent schemas can be incompatible in some circumstances (specifically, if the parent accepts values for some field that are forbidden in the more specialized schema).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
schema |
Union[str, MetadataSchema]
|
schema name or class for which to return harvesters |
required |
include_children |
bool
|
Also include results for installed children |
False
|
include_parents |
bool
|
Also include results for parent schemas |
False
|
Returns:
Type | Description |
---|---|
Set[str]
|
Set of harvesters. |
Source code in src/metador_core/harvester/__init__.py
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 |
|
def_sidecar_func ¶
def_sidecar_func(path: Path)
Return sidecar filename for a given file path using the default convention.
This means, the path gets a '_meta.yaml' suffix attached.
Source code in src/metador_core/harvester/__init__.py
292 293 294 295 296 297 |
|
metadata_loader ¶
metadata_loader(
schema: Type[MetadataSchema],
*,
use_sidecar: bool = False,
sidecar_func: bool = None
) -> Type[MetadataLoader]
Return harvester for partial metadata files of specified schema.
Will return an empty partial schema in case the file does not exist.
The fields provided in the file must be valid, or an exception will be raised. This is to avoid the situation where a user intends to add or override harvester metadata, but the fields are silently ignored, leading to possible surprise and confusion.
By default, the returned harvester will attempt to parse the provided file.
Set use_sidecar
if you intend to pass it filenames of data files, but
want it to instead load metadata from a sidecar file.
Provide a sidecar_func
if you want to change the used sidecar file convention.
By default, def_sidecar_func
is used to transform the path.
Source code in src/metador_core/harvester/__init__.py
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 |
|
configure ¶
configure(
*harvesters: Union[Harvester, Type[Harvester]],
**kwargs: Union[Harvester, Type[Harvester]]
)
Given a sequence of harvesters, configure them all at once.
Can be used to set the same parameter in all of them easily.
Source code in src/metador_core/harvester/__init__.py
333 334 335 336 337 338 |
|
file_harvester_pipeline ¶
file_harvester_pipeline(
*hvs: Union[FileHarvester, Type[FileHarvester]]
) -> Callable[[Path], Any]
Generate a harvesting pipeline for a file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
hvs |
Union[FileHarvester, Type[FileHarvester]]
|
FileHarvester classes or pre-configured instances to use. The passed objects must be preconfigured as needed, except for fixing a filepath (it will be overwritten). |
()
|
Returns:
Type | Description |
---|---|
Callable[[Path], Any]
|
Function that takes a file path and will return |
Callable[[Path], Any]
|
the harvesters configured for the passed path. |
Source code in src/metador_core/harvester/__init__.py
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 |
|
harvest ¶
harvest(
schema: Type[S],
sources: Iterable[Union[Path, Harvester]],
*,
ignore_invalid: bool = False,
return_partial: bool = False
) -> S
Run a harvesting pipeline and return combined results.
Will run the harvesters in the passed order, combining results.
In general you can expect that if two harvesters provide the same field, the newer value by a later harvester will overwrite an existing one from an earlier harvester, or the values are combined in a suitable way.
If converting some Harvester result to the desired schema fails,
a ValidationError
will be raised. To change that behaviour,
set ignore_invalid
, will make sure that suitable fields are still used,
even if the given object as a whole is not fully parsable.
Note that ignore_invalid
only affects the conversion AFTER running the
harvesters, it does NOT affect the way the harvesters treat invalid metadata.
By default, it is assumed that the result of the whole pipeline can be
converted into a fully valid non-partial schema instance.
If this final conversion fails, an exception will be raised.
To prevent this conversion, set return_partial
. In that case, you will
get the partial instance as-is and can manually call from_partial()
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
schema |
Type[S]
|
Class of schema to be returned. |
required |
sources |
Iterable[Union[Path, Harvester]]
|
List of sources (Paths or Harvester instances). |
required |
ignore_invalid |
bool
|
Whether to ignore invalid fields in Harvester outputs. |
False
|
return_partial |
bool
|
Whether to return raw partial instance (default: False). |
False
|
Returns:
Type | Description |
---|---|
S
|
Metadata object with combined results. |
Source code in src/metador_core/harvester/__init__.py
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 |
|