Skip to content
This repository has been archived by the owner on Aug 4, 2022. It is now read-only.
/ itab Public archive

Python tab files parsing and validating schema tools.

License

Notifications You must be signed in to change notification settings

bbglab/itab

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

itab

Python tab files parsing and validating schema tools.

Install

pip install itab

Usage example

import itab

reader = itab.open(file)

for row, errors in reader:
  if len(errors) > 0:
    print("[line {}] ERRORS: {}".format(reader.num_line, errors))
    continue
  else:
    for cell in row:
      print(cell)

See more detailed examples [here](examples/Python usage examples.ipynb)

About

Python tab files parsing and validating schema tools.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages