mirror of
https://github.com/metafy-social/python-scripts.git
synced 2025-01-30 21:23:46 +00:00
add csv to json script
This commit is contained in:
parent
d231afd19d
commit
b9b97c8c4a
8
scripts/csv_to_json/README.md
Normal file
8
scripts/csv_to_json/README.md
Normal 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`
|
15
scripts/csv_to_json/script.py
Normal file
15
scripts/csv_to_json/script.py
Normal 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()
|
Loading…
Reference in New Issue
Block a user