Data conversor from csv to json, to create the fixtures for django apps
Project description
Repository
Download the module from:
http://gitlab.csn.uchile.cl/dpineda/csv2json
CSV to JSON
This module is a conversor from csv data to json.
The main goal is create a json file for Django models.
The csv must have the same fields as the django model
The fields related to another models uses the natural key. So every model must have a natural_key method.
The third argument
How to Install
Using pip
pip install django_csv2json
From the repository
python setup.py install
How to use
This modules dispose a class CSV2JSON, that requires a origin folder, a destiniy folder and a list of files. Every element from this list must be a dictionary with the keys "{model, file, field, opts}".
Also, there are a command to use on the command line.
csv2json --origin "./csn" --destiny "./json" --file_json "./files.json"
For help, type
csv2json --help
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.