OTEAPI DLite Plugin Strategies¶
This page provides documentation for the oteapi_dlite.strategies
submodule, where all the OTEAPI DLite Plugin strategies are located.
These strategies will be available when setting up a server in an environment with oteapi-dlite installed.
convert
¶
Generic function strategy that converts zero or more input instances to zero or more new output instances.
DLiteConvertConfig
¶
Bases: FunctionConfig
DLite convert strategy resource config.
Source code in oteapi_dlite/strategies/convert.py
125 126 127 128 129 130 131 |
|
configuration: Annotated[DLiteConvertStrategyConfig, Field(description='DLite convert strategy-specific configuration.')]
instance-attribute
¶
DLiteConvertInputConfig
¶
Bases: AttrDict
Configuration for input instance to generic DLite converter.
At least one of label
or datamodel
should be given.
Source code in oteapi_dlite/strategies/convert.py
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
|
datamodel: Annotated[Optional[str], Field(description='URI of data model.')] = None
class-attribute
instance-attribute
¶
label: Annotated[Optional[str], Field(description='Label of the instance.')] = None
class-attribute
instance-attribute
¶
property_mappings: Annotated[bool, Field(description='Whether to infer instance from property mappings.')] = False
class-attribute
instance-attribute
¶
DLiteConvertOutputConfig
¶
Bases: AttrDict
Configuration for output instance to generic DLite converter.
Source code in oteapi_dlite/strategies/convert.py
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
|
DLiteConvertStrategy
¶
Generic DLite convert strategy for converting zero or more input instances to zero or more output instances.
Registers strategies:
("functionType", "application/vnd.dlite-convert")
Source code in oteapi_dlite/strategies/convert.py
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 184 185 186 187 188 189 190 191 192 193 194 195 196 197 |
|
function_config: DLiteConvertConfig
instance-attribute
¶
get()
¶
Execute the strategy.
This method will be called through the strategy-specific endpoint of the OTE-API Services.
Returns:
Type | Description |
---|---|
DLiteResult
|
SessionUpdate instance. |
Source code in oteapi_dlite/strategies/convert.py
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 184 185 186 187 188 189 190 191 192 193 194 195 196 197 |
|
initialize()
¶
Initialize.
Source code in oteapi_dlite/strategies/convert.py
147 148 149 150 151 152 153 |
|
DLiteConvertStrategyConfig
¶
Bases: DLiteResult
Configuration for generic DLite converter.
Source code in oteapi_dlite/strategies/convert.py
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 |
|
function_name: Annotated[str, Field(description='Name of convert function. It will be pased the input instances as arguments and should return a sequence of output instances.')]
instance-attribute
¶
inputs: Annotated[Sequence[DLiteConvertInputConfig], Field(description='Input instances.')] = []
class-attribute
instance-attribute
¶
kwargs: Annotated[Optional[dict], Field(description='Additional keyword arguments passed to the convert function.')] = {}
class-attribute
instance-attribute
¶
module_name: Annotated[str, Field(description='Name of Python module containing the convertion function.')]
instance-attribute
¶
outputs: Annotated[Sequence[DLiteConvertOutputConfig], Field(description='Output instances.')] = []
class-attribute
instance-attribute
¶
package: Annotated[Optional[str], Field(description='Used when performing a relative import of the converter function. It specifies the package to use as the anchor point from which to resolve the relative import to an absolute import.')] = None
class-attribute
instance-attribute
¶
pypi_package: Annotated[Optional[str], Field(description='Package name on PyPI. This field is currently only informative, but might be used in the future for automatic package installation.')] = None
class-attribute
instance-attribute
¶
filter
¶
Filter that removes all but specified instances in the collection.
DLiteFilterConfig
¶
Bases: FilterConfig
DLite generate strategy config.
Source code in oteapi_dlite/strategies/filter.py
79 80 81 82 83 84 85 |
|
configuration: Annotated[DLiteQueryConfig, Field(description='DLite filter strategy-specific configuration.')]
instance-attribute
¶
DLiteFilterStrategy
¶
Filter that removes all but specified instances in the collection.
The query
configuration should be a regular expression matching labels
to keep in the collection. All other labels will be removed.
Registers strategies:
("filterType", "application/vnd.dlite-filter")
Source code in oteapi_dlite/strategies/filter.py
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 |
|
filter_config: DLiteFilterConfig
instance-attribute
¶
get()
¶
Execute the strategy.
Source code in oteapi_dlite/strategies/filter.py
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 |
|
initialize()
¶
Initialize.
Source code in oteapi_dlite/strategies/filter.py
103 104 105 106 107 108 109 |
|
DLiteQueryConfig
¶
Bases: DLiteResult
Configuration for the DLite filter strategy.
First the remove_label
and remove_datamodel
configurations are
used to mark matching instances for removal. If neither
remove_label
or remove_datamodel
are given, all instances are
marked for removal.
Then instances matching keep_label
and keep_datamodel
are unmarked
for removal.
If keep_referred
is true, any instance that is referred to by
an instance not marked for removal is also unmarked for removal.
Finally, the instances that are still marked for removal are removed from the collection.
Source code in oteapi_dlite/strategies/filter.py
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 |
|
keep_datamodel: Annotated[Optional[str], Field(description='Regular expression matching datamodel URIs to keep in collection. This configuration overrides `remove_label` and `remove_datamodel`.')] = None
class-attribute
instance-attribute
¶
keep_label: Annotated[Optional[str], Field(description='Regular expression matching labels to keep. This configuration overrides `remove_label` and `remove_datamodel`. Alias for the FilterStrategy `query` configuration, that is inherited from the oteapi-core Filter data model.')] = None
class-attribute
instance-attribute
¶
keep_referred: Annotated[bool, Field(description='Whether to keep all instances in the collection that are directly or indirectly referred to (via ref-types or collections) by kept instances.')] = True
class-attribute
instance-attribute
¶
remove_datamodel: Annotated[Optional[str], Field(description='Regular expression matching datamodel URIs to remove.')] = None
class-attribute
instance-attribute
¶
remove_label: Annotated[Optional[str], Field(description='Regular expression matching labels to remove.')] = None
class-attribute
instance-attribute
¶
generate
¶
Generic generate strategy using DLite storage plugin.
hasInput = 'https://w3id.org/emmo#EMMO_36e69413_8c59_4799_946c_10b05d266e22'
module-attribute
¶
hasOutput = 'https://w3id.org/emmo#EMMO_c4bace1d_4db0_4cd3_87e9_18122bae2840'
module-attribute
¶
DLiteGenerateConfig
¶
Bases: FunctionConfig
DLite generate strategy config.
Source code in oteapi_dlite/strategies/generate.py
236 237 238 239 240 241 242 |
|
configuration: Annotated[DLiteStorageConfig, Field(description='DLite generate strategy-specific configuration.')]
instance-attribute
¶
DLiteGenerateStrategy
¶
Generic DLite generate strategy utilising DLite storage plugins.
Registers strategies:
("mediaType", "application/vnd.dlite-generate")
Source code in oteapi_dlite/strategies/generate.py
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 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 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 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 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 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 |
|
function_config: DLiteGenerateConfig
instance-attribute
¶
get()
¶
Execute the strategy.
This method will be called through the strategy-specific endpoint of the OTE-API Services.
Returns:
Type | Description |
---|---|
DLiteResult
|
SessionUpdate instance. |
Source code in oteapi_dlite/strategies/generate.py
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 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 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 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 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 |
|
initialize()
¶
Initialize.
Source code in oteapi_dlite/strategies/generate.py
257 258 259 260 261 262 263 |
|
DLiteStorageConfig
¶
Bases: DLiteConfiguration
Configuration for a generic DLite storage filter.
The DLite storage driver to can be specified using either the driver
or mediaType
field.
Where the output should be written, is specified using either the
location
or datacache_config.accessKey
field.
Either label
or datamodel
should be provided.
Source code in oteapi_dlite/strategies/generate.py
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 184 185 186 187 188 189 190 191 192 193 194 195 196 197 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 |
|
allow_incomplete: Annotated[Optional[bool], Field(description='Whether to allow incomplete property mappings.')] = False
class-attribute
instance-attribute
¶
datacache_config: Annotated[Optional[DataCacheConfig], Field(description='Configuration options for the local data cache.')] = None
class-attribute
instance-attribute
¶
datamodel: Annotated[Optional[str], Field(description='URI to the datamodel of the new instance. Needed when generating the instance from mappings. Cannot be combined with `label`')] = None
class-attribute
instance-attribute
¶
driver: Annotated[Optional[str], Field(description='Name of DLite driver (ex: "json").')] = None
class-attribute
instance-attribute
¶
kb_document_base_iri: Annotated[str, Field(description='Base IRI or prefix for created individuals.')] = ':'
class-attribute
instance-attribute
¶
kb_document_class: Annotated[Optional[str], Field(description="IRI of a class in the ontology.\n\nIf given, the generated DLite instance is documented in the knowledge base as an instance of this class.\n\nExpects that the 'tripper.triplestore' setting has been set using the SettingsStrategy (vnd.dlite-settings). This settings should be a dict that can be passed as keyword arguments to `tripper.Triplestore()`.\n\nExample of adding expected settings using OTELib:\n\n\n>>> kb_settings = client.create_filter(\n... filterType='application/vnd.dlite-settings',\n... configuration={\n... 'label': 'tripper.triplestore',\n... 'settings': {\n... 'backend': 'rdflib',\n... 'triplestore_url': '/path/to/local/kb.ttl',\n... },\n... },\n... )\n>>> generate = client.create_function(\n... functionType='application/vnd.dlite-generate'\n... configuration={\n... kb_document_class='http://example.com#MyClass'\n... ...\n... },\n... )\n>>> pipeline = ... >> generate >> kb_settings\n>>> pipeline.get()\n")] = None
class-attribute
instance-attribute
¶
kb_document_computation: Annotated[Optional[str], Field(description='IRI of a computation subclass.\n\nRequires `kb_document_class`, and is used to document the computation (model) that the individual (of `kb_document_class`) to be documented is output of.When `kb_document_computation` is given a new individual of the computation subclass is created. Input and output datasets are documented using the relation `emmo:hasInput` and `emmo:hasOutput`, respectively. The individual of `kb_document_class` is one of the output individuals.\n\nNote: This configuration relies on several assumptions:\n - The `kb_document_computation` class exists in the knowledge base and is related to its input and output dataset classes via `emmo:hasInput` and `emmo:hasOutput` restrictions, respectively.\n - There exists only one individual of each input dataset class.\n - There exists at most one individual of each output dataset class.\n')] = None
class-attribute
instance-attribute
¶
kb_document_context: Annotated[Optional[dict], Field(description='If `kb_document_class` is given, this configuration will add additional context to the documentation of the generated individual.\n\nThis might be useful to make it easy to later access the generated individual.\n\nThis configuration should be a dict mapping providing the additional documentation of the driver. It should map OWL properties to either tripper literals or IRIs.\n\nExample: `{RDF.type: ONTO.MyDataSet, EMMO.isDescriptionFor: ONTO.MyMaterial}`')] = None
class-attribute
instance-attribute
¶
kb_document_update: Annotated[Optional[dict], Field(description=('Dict updating the documentation (partial pipeline) created with `kb_document_class`.\n\nThis dict should be structured as follows: \n\n {\n "dataresource": {...},\n "parse": {...}\n "mapping": {...}\n }\n\nwhere the provided items will override the the default configurations in respective partial pipeline created by `kb_document_class`. Any of the items "dataresource", "parse" and "mapping" are optional.'))] = None
class-attribute
instance-attribute
¶
label: Annotated[Optional[str], Field(description='Label of DLite instance in the collection to serialise.')] = None
class-attribute
instance-attribute
¶
location: Annotated[Optional[str], Field(description="Location of storage to write to. If unset to store in data cache using the key provided with `datacache_config.accessKey` (defaults to 'generate_data').")] = None
class-attribute
instance-attribute
¶
mediaType: Annotated[Optional[str], Field(description='Media type for DLite driver (ex: "application/json").')] = None
class-attribute
instance-attribute
¶
options: Annotated[Optional[str], Field(description='Comma-separated list of options passed to the DLite storage plugin.')] = None
class-attribute
instance-attribute
¶
store_collection: Annotated[bool, Field(description='Whether to store the entire collection in the session instead of a single instance. Cannot be combined with `label` or `datamodel`.')] = False
class-attribute
instance-attribute
¶
store_collection_id: Annotated[Optional[str], Field(description='Used together with `store_collection` If given, store a copy of the collection with this id.')] = None
class-attribute
instance-attribute
¶
KBError
¶
Bases: ValueError
Invalid data in knowledge base.
Source code in oteapi_dlite/strategies/generate.py
30 31 |
|
individual_iri(class_iri, base_iri=':', randbytes=6)
¶
Return an IRI for an individual of a class.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
class_iri
|
str
|
IRI of the class to create an individual of. |
required |
base_iri
|
str
|
Base IRI of the created individual. |
':'
|
randbytes
|
int
|
Number of random bytes to include in the returned IRI. |
6
|
Returns:
Type | Description |
---|---|
str
|
IRI of a new individual. |
Source code in oteapi_dlite/strategies/generate.py
464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 |
|
mapping
¶
Mapping filter strategy.
DLiteMappingConfig
¶
Bases: MappingConfig
DLite mapping strategy config.
Source code in oteapi_dlite/strategies/mapping.py
34 35 36 37 38 39 40 41 42 |
|
configuration: Annotated[DLiteMappingStrategyConfig, Field(description='DLite mapping strategy-specific configuration.')] = DLiteMappingStrategyConfig()
class-attribute
instance-attribute
¶
DLiteMappingStrategy
¶
Strategy for a mapping.
Registers strategies:
("mappingType", "mappings")
Source code in oteapi_dlite/strategies/mapping.py
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 |
|
mapping_config: DLiteMappingConfig
instance-attribute
¶
get()
¶
Execute strategy and return a dictionary.
Source code in oteapi_dlite/strategies/mapping.py
95 96 97 98 99 100 101 |
|
initialize()
¶
Initialize strategy.
Source code in oteapi_dlite/strategies/mapping.py
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 |
|
DLiteMappingStrategyConfig
¶
Bases: DLiteConfiguration
Configuration for a DLite mapping filter.
Source code in oteapi_dlite/strategies/mapping.py
23 24 25 26 27 28 29 30 31 |
|
datamodel: Annotated[Optional[AnyUrl], Field(description='URI of the datamodel that is mapped.')] = None
class-attribute
instance-attribute
¶
parse
¶
Generic parse strategy using DLite storage plugin.
DLiteParseConfig
¶
Bases: DLiteResult
Configuration for generic DLite parser.
Source code in oteapi_dlite/strategies/parse.py
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 |
|
datacache_config: Annotated[Optional[DataCacheConfig], Field(description='Configuration options for the local data cache.')] = None
class-attribute
instance-attribute
¶
datamodel: Annotated[Optional[str], Field(description='DLite datamodel documenting the structure of the data set. Often unused, since the datamodel is implicitly defined in the DLite driver (DLite plugin), but for a documentation point of view this is a very important field.')] = None
class-attribute
instance-attribute
¶
downloadUrl: Annotated[Optional[HostlessAnyUrl], Field(description=ResourceConfig.model_fields['downloadUrl'].description)] = None
class-attribute
instance-attribute
¶
download_config: Annotated[AttrDict, Field(description='Configurations provided to a download strategy.')] = AttrDict()
class-attribute
instance-attribute
¶
driver: Annotated[str, Field(description='Name of DLite driver (ex: "json").')]
instance-attribute
¶
id: Annotated[Optional[str], Field(description='If given, the id of the instance in the storage.')] = None
class-attribute
instance-attribute
¶
label: Annotated[Optional[str], Field(description='Optional label of the new DLite instance in the collection.')] = None
class-attribute
instance-attribute
¶
location: Annotated[Optional[str], Field(description="Explicit location of storage. Normally data is read from the data cache using `datacache_config.accessKey` (default: 'key').")] = None
class-attribute
instance-attribute
¶
mediaType: Annotated[Optional[str], Field(description=ResourceConfig.model_fields['mediaType'].description)] = None
class-attribute
instance-attribute
¶
options: Annotated[Optional[str], Field(description='Comma-separated list of options passed to the DLite storage plugin.')] = None
class-attribute
instance-attribute
¶
DLiteParseParserConfig
¶
Bases: ParserConfig
DLite parse strategy resource config.
Source code in oteapi_dlite/strategies/parse.py
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 |
|
configuration: Annotated[DLiteParseConfig, Field(description='DLite parse strategy-specific configuration.')]
instance-attribute
¶
entity: Annotated[Optional[AnyHttpUrl], Field(description=ParserConfig.model_fields['entity'].description)] = None
class-attribute
instance-attribute
¶
parserType: Annotated[Literal['application/vnd.dlite-parse'], Field(description=ParserConfig.model_fields['parserType'].description)]
instance-attribute
¶
DLiteParseStrategy
¶
Generic DLite parse strategy utilising DLite storage plugins.
Registers strategies:
("mediaType", "application/vnd.dlite-parse")
Source code in oteapi_dlite/strategies/parse.py
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 184 185 186 187 188 189 190 191 192 193 194 195 196 197 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 |
|
parse_config: DLiteParseParserConfig
instance-attribute
¶
get()
¶
Execute the strategy.
This method will be called through the strategy-specific endpoint of the OTE-API Services.
Returns:
Type | Description |
---|---|
DLiteResult
|
Reference to a DLite collection ID. |
Source code in oteapi_dlite/strategies/parse.py
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 184 185 186 187 188 189 190 191 192 193 194 195 196 197 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 |
|
initialize()
¶
Initialize.
Source code in oteapi_dlite/strategies/parse.py
139 140 141 142 143 144 145 |
|
parse_excel
¶
Strategy for parsing an Excel spreadsheet to a DLite instance.
DLiteExcelParseConfig
¶
Bases: DLiteResult
Configuration for DLite Excel parser.
Source code in oteapi_dlite/strategies/parse_excel.py
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 |
|
downloadUrl: Annotated[Optional[HostlessAnyUrl], Field(description=ResourceConfig.model_fields['downloadUrl'].description)] = None
class-attribute
instance-attribute
¶
excel_config: Annotated[XLSXParseConfig, Field(description='DLite-specific excel configurations.')]
instance-attribute
¶
id: Annotated[Optional[str], Field(description='Optional id on new instance.')] = None
class-attribute
instance-attribute
¶
label: Annotated[Optional[str], Field(description='Optional label for new instance in collection.')] = 'excel-data'
class-attribute
instance-attribute
¶
mediaType: Annotated[Literal['application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'], Field(description=ResourceConfig.model_fields['mediaType'].description)] = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
class-attribute
instance-attribute
¶
storage_path: Annotated[Optional[str], Field(description='Path to metadata storage')] = None
class-attribute
instance-attribute
¶
DLiteExcelParserConfig
¶
Bases: ParserConfig
DLite excel parse strategy resource config.
Source code in oteapi_dlite/strategies/parse_excel.py
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
|
configuration: Annotated[DLiteExcelParseConfig, Field(description='DLite excel parse strategy-specific configuration.')]
instance-attribute
¶
entity: Annotated[Optional[AnyHttpUrl], Field(description='URI of DLite metadata to return. If not provided, the metadata will be inferred from the excel file.')] = None
class-attribute
instance-attribute
¶
parserType: Annotated[Literal['application/vnd.dlite-xlsx'], Field(description=ParserConfig.model_fields['parserType'].description)] = 'application/vnd.dlite-xlsx'
class-attribute
instance-attribute
¶
DLiteExcelSessionUpdate
¶
Bases: DLiteResult
Class for returning values from DLite excel parser.
Source code in oteapi_dlite/strategies/parse_excel.py
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 |
|
DLiteExcelStrategy
¶
Parse strategy for Excel files.
Registers strategies:
("mediaType", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet")
Source code in oteapi_dlite/strategies/parse_excel.py
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 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 |
|
parse_config: DLiteExcelParserConfig
instance-attribute
¶
get()
¶
Execute the strategy.
This method will be called through the strategy-specific endpoint of the OTE-API Services.
Returns:
Type | Description |
---|---|
DLiteExcelSessionUpdate
|
DLite instance. |
Source code in oteapi_dlite/strategies/parse_excel.py
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 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 |
|
initialize()
¶
Initialize.
Source code in oteapi_dlite/strategies/parse_excel.py
127 128 129 130 131 132 133 |
|
infer_metadata(rec, units)
¶
Infer dlite metadata from recarray rec
.
Source code in oteapi_dlite/strategies/parse_excel.py
214 215 216 217 218 219 220 221 222 223 224 225 226 227 |
|
split_column_name(column)
¶
Split column name into a (name, unit) tuple.
Source code in oteapi_dlite/strategies/parse_excel.py
205 206 207 208 209 210 211 |
|
parse_image
¶
Strategy class for parsing an image to a DLite instance.
LOGGER = logging.getLogger('oteapi_dlite.strategies')
module-attribute
¶
DLiteImageConfig
¶
Bases: ImageConfig
, DLiteResult
Configuration for DLite image parser.
Source code in oteapi_dlite/strategies/parse_image.py
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 |
|
image_label: Annotated[str, Field(description='Label to assign to the image in the collection.')] = 'image'
class-attribute
instance-attribute
¶
mediaType: Annotated[Optional[Literal['image/vnd.dlite-jpg', 'image/vnd.dlite-jpeg', 'image/vnd.dlite-jp2', 'image/vnd.dlite-png', 'image/vnd.dlite-gif', 'image/vnd.dlite-tiff', 'image/vnd.dlite-eps']], Field(description=ResourceConfig.model_fields['mediaType'].description)] = None
class-attribute
instance-attribute
¶
DLiteImageParseStrategy
¶
Parse strategy for image files.
Registers strategies:
("mediaType", "image/vnd.dlite-gif")
("mediaType", "image/vnd.dlite-jpeg")
("mediaType", "image/vnd.dlite-jpg")
("mediaType", "image/vnd.dlite-jp2")
("mediaType", "image/vnd.dlite-png")
("mediaType", "image/vnd.dlite-tiff")
Source code in oteapi_dlite/strategies/parse_image.py
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 |
|
parse_config: DLiteImageParserConfig
instance-attribute
¶
get()
¶
Execute the strategy.
This method will be called through the strategy-specific endpoint of the OTE-API Services. It assumes that the image to parse is stored in a data cache, and can be retrieved via a key that is supplied in the parser configuration.
Returns:
Type | Description |
---|---|
DLiteResult
|
Reference to a DLite collection ID. |
Source code in oteapi_dlite/strategies/parse_image.py
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 |
|
initialize()
¶
Initialize.
Source code in oteapi_dlite/strategies/parse_image.py
107 108 109 110 111 112 113 |
|
DLiteImageParserConfig
¶
Bases: ParserConfig
Parser config for DLite image parser.
Source code in oteapi_dlite/strategies/parse_image.py
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 |
|
configuration: Annotated[DLiteImageConfig, Field(description='Image parse strategy-specific configuration.')] = DLiteImageConfig()
class-attribute
instance-attribute
¶
entity: Annotated[AnyHttpUrl, Field(description=ParserConfig.model_fields['entity'].description)] = AnyHttpUrl('http://onto-ns.com/meta/1.0/Image')
class-attribute
instance-attribute
¶
parserType: Annotated[Literal['image/vnd.dlite-image'], Field(description=ParserConfig.model_fields['parserType'].description)] = 'image/vnd.dlite-image'
class-attribute
instance-attribute
¶
serialise
¶
Filter for serialisation using DLite.
SerialiseConfig
¶
Bases: DLiteResult
DLite serialise-specific configurations.
Source code in oteapi_dlite/strategies/serialise.py
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 |
|
driver: Annotated[str, Field(description='Name of DLite plugin used for serialisation.')]
instance-attribute
¶
labels: Annotated[Optional[Sequence[str]], Field(None, description='Optional sequence of labels in the collection to serialise. The default is to serialise the entire collection.')] = None
class-attribute
instance-attribute
¶
location: Annotated[Path, Field(description='Path or URL to serialise to.')]
instance-attribute
¶
options: Annotated[Optional[str], Field(description='Options passed to the driver.')] = ''
class-attribute
instance-attribute
¶
SerialiseFilterConfig
¶
Bases: FilterConfig
Filter config for serialise.
Source code in oteapi_dlite/strategies/serialise.py
51 52 53 54 55 56 57 58 59 |
|
configuration: Annotated[SerialiseConfig, Field(description='Serialise-specific configurations.')]
instance-attribute
¶
SerialiseStrategy
¶
Filter for serialisation using DLite.
Registers strategies:
("filterType", "dlite_serialise")
Source code in oteapi_dlite/strategies/serialise.py
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 |
|
filter_config: SerialiseFilterConfig
instance-attribute
¶
get()
¶
Execute the strategy.
Source code in oteapi_dlite/strategies/serialise.py
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
|
initialize()
¶
Initialize.
Source code in oteapi_dlite/strategies/serialise.py
74 75 76 77 78 79 80 |
|
settings
¶
Generic strategy for adding configurations to the session.
NoneType = type(None)
module-attribute
¶
SettingsConfig
¶
Bases: AttrDict
Configuration for a generic "settings" filter.
This strategy stores settings in the session such that they are
available for other strategies. For this to work, this strategy
should be added to the end of the pipeline (since it uses the
initiate()
method).
The settings are stored as a JSON string which can be accessed by its label.
Source code in oteapi_dlite/strategies/settings.py
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 |
|
SettingsFilterConfig
¶
Bases: FilterConfig
Settings strategy config.
Source code in oteapi_dlite/strategies/settings.py
48 49 50 51 52 53 54 |
|
configuration: Annotated[SettingsConfig, Field(description='Settings strategy-specific configuration.')]
instance-attribute
¶
SettingsStrategy
¶
Generic settings strategy for storing settings for other strategies.
Registers strategies:
("mediaType", "application/vnd.dlite-settings")
Source code in oteapi_dlite/strategies/settings.py
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
|
filter_config: SettingsFilterConfig
instance-attribute
¶
get()
¶
Do nothing.
Source code in oteapi_dlite/strategies/settings.py
76 77 78 |
|
initialize()
¶
Store settings.
Source code in oteapi_dlite/strategies/settings.py
70 71 72 73 74 |
|