18 lines
393 B
Python
18 lines
393 B
Python
|
import argparse
|
||
|
import tabula
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
#parser = argparse.ArgumentParser()
|
||
|
#parser.add_argument("filename")
|
||
|
#args = parser.parse_args()
|
||
|
|
||
|
table = tabula.io.read_pdf(
|
||
|
"../sources/2018_Torres-Benitez_Metabolomic analysis Parmotrema.pdf",
|
||
|
pages=[5],
|
||
|
lattice=False,
|
||
|
multiple_tables=True,
|
||
|
)
|
||
|
print(table)
|
||
|
print("test")
|