table
Attributes¶
EMPTY_COLUMN_NAME_MARKER = '__no_column_name__'
module-attribute
¶
Classes¶
CreateTableModuleConfig
¶
Bases: CreateFromModuleConfig
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
38 39 40 41 42 43 |
|
CreateTableModule
¶
Bases: CreateFromModule
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
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 |
|
Attributes¶
_config_cls = CreateTableModuleConfig
class-attribute
instance-attribute
¶
Functions¶
create_optional_inputs(source_type: str, target_type: str) -> Union[Mapping[str, Mapping[str, Any]], None]
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
|
create__table__from__file(source_value: Value, optional: ValueMap) -> Any
¶
Create a table from a file, trying to auto-determine the format of said file.
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
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 |
|
create__table__from__file_bundle(source_value: Value) -> Any
¶
Create a table value from a text file_bundle.
The resulting table will have (at a minimum) the following columns: - id: an auto-assigned index - rel_path: the relative path of the file (from the provided base path) - content: the text file content
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
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 |
|
DeserializeTableModule
¶
Bases: DeserializeValueModule
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
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 |
|
Functions¶
retrieve_supported_target_profiles() -> Mapping[str, Type]
classmethod
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
171 172 173 |
|
retrieve_serialized_value_type() -> str
classmethod
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
175 176 177 |
|
retrieve_supported_serialization_profile() -> str
classmethod
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
179 180 181 |
|
to__python_object(data: SerializedData, **config: Any)
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
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 |
|
PickColumnModuleConfig
¶
Bases: KiaraModuleConfig
Configuration for the 'table.cut_column' kiara module.
Technically this is not necessary, because we could just use the 'constants' field to set the 'column_name'. But this module is used in the documentation as example, as it's easy enough to understand, and I wanted to show how implement kiara module configuration.
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
221 222 223 224 225 226 227 228 229 230 231 |
|
PickColumnModule
¶
Bases: KiaraModule
Pick one column from a table, returning an array.
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
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 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 |
|
Attributes¶
_config_cls = PickColumnModuleConfig
class-attribute
instance-attribute
¶
Functions¶
create_inputs_schema() -> ValueMapSchema
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
240 241 242 243 244 245 246 247 248 249 250 251 252 |
|
create_outputs_schema() -> ValueMapSchema
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
254 255 256 257 258 259 |
|
process(inputs: ValueMap, outputs: ValueMap) -> None
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
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 |
|
MergeTableConfig
¶
Bases: KiaraModuleConfig
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
291 292 293 294 295 296 297 298 |
|
MergeTableModule
¶
Bases: KiaraModule
Create a table from other tables and/or arrays.
This module needs configuration to be set (for now). It's currently not possible to merge an arbitrary number of tables/arrays, all tables to be merged must be specified in the module configuration.
Column names of the resulting table can be controlled by the 'column_map' configuration, which takes the desired column name as key, and a field-name in the following format as value: - '[inputs_schema key]' for inputs of type 'array' - '[inputs_schema_key].orig_column_name' for inputs of type 'table'
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
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 |
|
Attributes¶
_config_cls = MergeTableConfig
class-attribute
instance-attribute
¶
Functions¶
create_inputs_schema() -> ValueMapSchema
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
316 317 318 319 320 321 |
|
create_outputs_schema() -> ValueMapSchema
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
323 324 325 326 327 328 329 330 331 332 333 |
|
process(inputs: ValueMap, outputs: ValueMap, job_log: JobLog) -> None
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
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 |
|
QueryTableSQLModuleConfig
¶
Bases: KiaraModuleConfig
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
426 427 428 429 430 431 432 433 434 435 |
|
Attributes¶
query: Union[str, None] = Field(description='The query to execute. If not specified, the user will be able to provide their own.', default=None)
class-attribute
instance-attribute
¶
relation_name: Union[str, None] = Field(description='The name the table is referred to in the sql query. If not specified, the user will be able to provide their own.', default='data')
class-attribute
instance-attribute
¶
QueryTableSQL
¶
Bases: KiaraModule
Execute a sql query against an (Arrow) table.
The default relation name for the sql query is 'data', but can be modified by the 'relation_name' config option/input.
If the 'query' module config option is not set, users can provide their own query, otherwise the pre-set one will be used.
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 |
|
Attributes¶
_config_cls = QueryTableSQLModuleConfig
class-attribute
instance-attribute
¶
Functions¶
create_inputs_schema() -> ValueMapSchema
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 |
|
create_outputs_schema() -> ValueMapSchema
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
474 475 476 477 478 |
|
process(inputs: ValueMap, outputs: ValueMap) -> None
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 |
|
ExportTableModule
¶
Bases: DataExportModule
Export table data items.
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
503 504 505 506 507 508 509 510 511 512 513 514 515 516 |
|
Functions¶
export__table__as__csv_file(value: KiaraTable, base_path: str, name: str)
¶
Export a table as csv file.
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
508 509 510 511 512 513 514 515 516 |
|
RenderTableModuleBase
¶
Bases: RenderValueModule
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 |
|
Functions¶
preprocess_table(value: Value, input_number_of_rows: int, input_row_offset: int)
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 |
|
RenderTableModule
¶
Bases: RenderTableModuleBase
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 |
|
Functions¶
render__table__as__string(value: Value, render_config: Mapping[str, Any])
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 |
|
render__table__as__terminal_renderable(value: Value, render_config: Mapping[str, Any])
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/modules/table/__init__.py
642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 |
|