mirror of
https://github.com/metafy-social/python-scripts.git
synced 2024-11-24 12:31:11 +00:00
15 lines
310 B
Python
15 lines
310 B
Python
import pandas as pd
|
|
import os,json
|
|
|
|
def csv_to_json():
|
|
file = input("Enter csv path: ")
|
|
df = pd.read_csv(file)
|
|
name=os.path.basename(file).replace("csv","json")
|
|
data =df.to_dict("r")
|
|
with open(file,'w') as f:
|
|
json.dump(df, d)
|
|
|
|
print(f"file saved at {name}")
|
|
|
|
|
|
csv_to_json() |