Module
Module for managing koza runs through the CLI
get_koza_app
Return a KozaApp object for a given source
Parameters:
Name | Type | Description | Default |
---|---|---|---|
source_name |
str
|
Name of source |
required |
Source code in src/koza/cli_utils.py
27 28 29 30 31 32 33 34 35 36 |
|
get_translation_table
Create a translation table object from two file paths
Parameters:
Name | Type | Description | Default |
---|---|---|---|
global_table |
str
|
Path to global translation table. Defaults to None. |
None
|
local_table |
str
|
Path to local translation table. Defaults to None. |
None
|
Returns:
Name | Type | Description |
---|---|---|
TranslationTable |
TranslationTable
|
TranslationTable object |
Source code in src/koza/cli_utils.py
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 |
|
transform_source
Create a KozaApp object, process maps, and run the transform
Parameters:
Name | Type | Description | Default |
---|---|---|---|
source |
str
|
Path to source metadata file |
required |
output_dir |
str
|
Path to output directory |
required |
output_format |
OutputFormat
|
Output format. Defaults to OutputFormat('tsv'). |
OutputFormat('tsv')
|
global_table |
str
|
Path to global translation table. Defaults to None. |
None
|
local_table |
str
|
Path to local translation table. Defaults to None. |
None
|
schema |
str
|
Path to schema file. Defaults to None. |
None
|
row_limit |
int
|
Number of rows to process. Defaults to None. |
None
|
verbose |
bool
|
Verbose logging. Defaults to None. |
None
|
log |
bool
|
Log to file. Defaults to False. |
False
|
Source code in src/koza/cli_utils.py
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 |
|
validate_file
Runs a file through one of the Koza readers For csv files will return header and row length
For json and jsonl just validates them
Source code in src/koza/cli_utils.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 |
|