This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # To use: | |
| # python csv-to-ris-format.py csvfile.csv risoutput.txt | |
| # | |
| # Assumes you have removed the header row from the csv file, | |
| # columns are in the same order as the labels list, | |
| # and there are no other columns in the csv. | |
| import csv | |
| from sys import argv |
OlderNewer