20 lines
388 B
Python
20 lines
388 B
Python
|
#!/usr/bin/env python3
|
||
|
import os
|
||
|
import sys
|
||
|
|
||
|
import pandas as pd
|
||
|
|
||
|
|
||
|
def __main(json_file):
|
||
|
df = pd.read_json(json_file)
|
||
|
print('done')
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
if len(sys.argv) != 2:
|
||
|
print('You must specify the raw_dataset json file')
|
||
|
exit(1)
|
||
|
if not os.path.isfile(sys.argv[1]):
|
||
|
print(f'File {sys.argv[1]} is not exists')
|
||
|
__main(sys.argv[1])
|