File system
FileSystemConf
Bases: BaseModel
File system config.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str
|
Root path to begin walk. |
required |
kwargs
|
dict
|
os walk kwargs. |
{}
|
Source code in stac_generator/plugins/inputs/file_system.py
21 22 23 24 25 26 27 28 29 30 | |
FileSystemInput
Bases: Input
Performs an os.walk to provide a stream of messages for procesing.
Plugin name: file_system
Example Configuration
.. code-block:: yaml
name: file_system conf: path: test_directory
Source code in stac_generator/plugins/inputs/file_system.py
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | |