add csv to json script

This commit is contained in:
Sarvesh Kumar Dwivedi 2022-10-02 08:32:52 +00:00 committed by Sarvesh Kumar Dwivedi
parent d231afd19d
commit b9b97c8c4a
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,8 @@
# CSV to EXCEL
This simple script will convert CSV file to json.
## Usage
* requires pandas
* Use `pip install pandas`
* Run `python script.py`

View File

@ -0,0 +1,15 @@
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()