base
DataCollection
An Abstract base class with common interface for data collection classes.
It represents a collection of data assets on a filesystem, though in the future it would make sense that we also allow use for object storage etc.
This also handles automatic egress/ingress and validation of the configurations for these collections.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
_identifier
|
The identifier of the data collection. |
required | |
_path
|
The base path of the data collection. |
required |
Raises:
| Type | Description |
|---|---|
AssertionError
|
Raised if identifier is not specified, or no hemispheres are selected. |
Source code in download_toolbox/base.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 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 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 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 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 | |
identifier
property
writable
The identifier (label) for this data collection.
path
property
writable
The base path of the data collection.
copy_to(new_identifier, base_path=None, skip_copy=False)
Args: new_identifier: base_path: skip_copy:
Source code in download_toolbox/base.py
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | |
get_config(config_funcs=None, strip_keys=None)
get_config returns the implementation configuration for re-instantiation
get_config returns a configuration dictionary that provides not just a reference but also a portability layer for recreating classes.
For things that aren't serialisable natively, use config_funcs to serialise or represent values that allow recreation (it's on you to recreate those appropriately). An example is available at ...download_toolbox.interface.get_dataset_config_implementation
If you supply any arguments in a derived implementation, use strip_keys to prevent them being exported into configurations that would then result in duplicate arguments when the class is recreated from config
TODO: documenting get_config in derived implementations TODO: schema and validation for this library and others, helping to control implementations to aid portability of pipelines
Args: config_funcs: strip_keys:
Returns:
Source code in download_toolbox/base.py
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 | |