Skip to content

How to install

n4n5 edited this page Feb 11, 2022 · 1 revision

How to use this PyPI package ?

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 for Pip Installs Packages, it can be used to download PyPI packages
  • csv-to-custom-json is the name of the PyPI 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 !

Clone this wiki locally