Reading
tabbed.reading
A reader of text delimited files that supports the following features:
- Identification of metadata & header file sections.
- Automated type conversion to ints, floats, complex numbers, times, dates and datetime instances.
- Selective reading of rows and columns satisfying equality, membership, regular expression, and rich comparison conditions.
- Iterative reading of rows from the input file.
tabbed.reading.Reader
Bases: ReprMixin
An iterative reader of irregular text files supporting selective value-based reading of rows and columns.
A common variant to the RFC-4180 CSV standard includes metadata prior to a possible header and data section. This reader sniffs files for these sections advancing to the most-likely start position of the data. Additionally, it uses type inference to automatically convert data cells into strings, integers, floats, complex, time, date or datetime instances. Finally, this reader supports selective reading of rows using equality, membership, comparison, & regular expression value-based conditions supplied as keyword arguments to the 'tab' method.
Attributes:
Name | Type | Description |
---|---|---|
infile |
An I/O stream instance returned by open. |
|
tabulator |
A callable container of Tab instances; callables that will filter rows based on equality, membership, rich comparison and regular expression conditions. |
|
errors |
A container of casting and ragged length errors detected during reading. |
Examples:
Source code in src/tabbed/reading.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 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 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 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 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 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 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 |
|
sniffer
property
Returns this Reader's sniffer instance.
Any time the sniffer is accessed we reset this reader's header and tabulator if the header is built by the sniffer.
header
property
writable
Fetches this Reader's current header.
__init__(infile, poll=20, exclude=['', ' ', '-', 'nan', 'NaN', 'NAN'], **sniffing_kwargs)
Initialize this Reader.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
infile
|
IO[str]
|
An IO stream instance returned by open builtin. |
required |
poll
|
int
|
The number of last sample rows to use for the Sniffer to detect header, metadata and data types. |
20
|
exclude
|
List[str]
|
A sequence of characters indicating missing values in the file. Rows containing these values will be disqualified from use for header, metadata and data type detection. However, this Reader's read method will still read and return rows with this exclusion values. |
['', ' ', '-', 'nan', 'NaN', 'NAN']
|
sniffing_kwargs
|
Any valid kwarg for a tabbed Sniffer instance including: start, amount, skips and delimiters. Please see Sniffer initializer. |
{}
|
Notes
During initialization, this reader will use the poll and exclude arguments to make an initial guess of the header. If this guess is wrong, the header may be explicitly set via the 'header' setter property.
Source code in src/tabbed/reading.py
metadata()
Returns this Reader's current metadata.
Returns:
Type | Description |
---|---|
MetaData
|
A sniffed metadata instance. |
tab(columns=None, **tabs)
Set the Tabulator instance that will filter infile's rows & columns.
A tabulator is a container of tab instances that when called on a row, sequentially applies each tab to that row. Additionally after applying the row tabs it filters the result by columns. Implementation details may be found in the tabbed.tabs module.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
columns
|
Optional[List[str] | List[int] | Pattern]
|
Columns in each row to return during reading as a list of string names, a list of column indices or a compiled regular expression pattern to match against header names. If None, all the columns in the header will be read during a read call. |
None
|
tabs
|
CellType | Sequence[CellType] | Pattern | Callable[[Dict[str, CellType], str], bool]
|
name = value keyword argument pairs where name is a valid header column name and value may be of type string, int, float, complex, time, date, datetime, regular expression or callable.
|
{}
|
Returns:
Type | Description |
---|---|
None
|
None |
Source code in src/tabbed/reading.py
read(start=None, skips=None, indices=None, chunksize=int(200000.0), skip_empty=True, raise_ragged=False)
Iteratively read dictionary rows that satisfy this Reader's tabs.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
start
|
Optional[int]
|
A line number from the start of the file to begin reading data from. If None and this reader's header has a line number, the line following the header is the start. If None and the header line number is None, the line following the last line in the metadata is the start. If None and there is no header or metadata, the start line is 0. |
None
|
skips
|
Optional[Sequence[int]]
|
A sequence of line numbers to skip during reading. |
None
|
indices
|
Optional[Sequence]
|
A sequence of line numbers to read rows from. If None. all rows from start not in skips will be read. If attempting to read a slice of a file a range instance may be provided and will have improved performance over other sequence types like lists. |
None
|
chunksize
|
int
|
The number of data lines to read for each yield. Lower values consume less memory. The default is 200,000 rows. |
int(200000.0)
|
skip_empty
|
bool
|
A boolean indicating if rows with no values between the delimiters should be skipped. Default is True. |
True
|
raise_ragged
|
bool
|
Boolean indicating if a row with more or fewer columns than expected should raise an error and stop reading. The default is False. Rows with fewer columns than the header will have None as the fill value. Rows with more columns than the header will have None keys. |
False
|
Yields:
Type | Description |
---|---|
List[Dict[str, CellType]]
|
Chunksize number of dictionary rows with header names as keys. |
Raises:
Type | Description |
---|---|
Error
|
A csv.Error is issued if a ragged row is encountered and raise_ragged is True. Casting problems do not raise errors but gracefully return strings when encountered. |
Source code in src/tabbed/reading.py
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 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 |
|
peek(count=10)
Prints count number of lines from the first line of the file.
This method can be used to ensure this Reader identifies the correct metadata, header and data start locations.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
count
|
int
|
The number of lines to print. |
10
|
Returns:
Type | Description |
---|---|
None
|
None |