Files
qvd-utils/py_test.py
2020-11-28 17:48:36 +00:00

12 lines
177 B
Python

from qvd import reader
import sys
args = sys.argv[1:]
for file in args:
df = reader.read(file)
print(df)
dict = reader.read_to_dict(file)
print(f'\n {dict}')