-
Notifications
You must be signed in to change notification settings - Fork 0
How to install
n4n5 edited this page Feb 11, 2022
·
1 revision
First have Python3 installed. If it's isn't the case, you can download it on the official website
Then install the package with
pip3 install csv-to-custom-json
# or
python3 -m pip install csv-to-custom-json
Caption :
pip
stands forPip Installs Packages
, it can be used to downloadPyPI packages
csv-to-custom-json
is the name of thePyPI packages
Then if you want to use it, you can for example copy and paste this code :
from csv_to_custom_json import parseFile
result = parseFile("myfile.csv")
Caption :
- the name
myfile.csv
can be different, just change it with the correct name of your file
Now you are ready to check Options !