mirror of
https://github.com/metafy-social/python-scripts.git
synced 2024-11-23 20:11:10 +00:00
Delete scripts/csv_to_json directory
This commit is contained in:
parent
816b98ec75
commit
82399872d4
|
@ -1,8 +0,0 @@
|
|||
# CSV to EXCEL
|
||||
This simple script will convert CSV file to json.
|
||||
|
||||
## Usage
|
||||
|
||||
* requires pandas
|
||||
* Use `pip install pandas`
|
||||
* Run `python script.py`
|
|
@ -1,15 +0,0 @@
|
|||
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