This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Tables makes the tables for a given png. It does this with TableMaker and can be | |
| run through 'png_to_tables(png_loc)'. | |
| """ | |
| import os | |
| import subprocess | |
| from collections import defaultdict | |
| def png_to_tables(png): |
NewerOlder