Created
June 9, 2017 14:52
-
-
Save captainsafia/556cbda3aa7a9cb9020797d685d7146d to your computer and use it in GitHub Desktop.
Revisions
-
captainsafia created this gist
Jun 9, 2017 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,25 @@ import argparse import csv import sys parser = argparse.ArgumentParser(description='Replace values on a column level in CSV') parser.add_argument('--column', help='The column to replace in', required=True) parser.add_argument('--search', help='The value to search for', required=True) parser.add_argument('--replace', help='The value to replace it with', required=True) args = parser.parse_args() data = sys.stdin.readlines() csv_reader = csv.reader(data) header = next(csv_reader) print(','.join(header)) try: column_index = header.index(args.column) except ValueError as e: raise Exception('Column', args.column, 'not in list.') for row in csv_reader: if row[column_index] == args.search: row[column_index] = args.replace print(','.join(row)) 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,24 @@ import argparse import csv parser = argparse.ArgumentParser(description='Replace values on a column level in CSV') parser.add_argument('--file', help='The file to read from', required=True) parser.add_argument('--column', help='The column to replace in', required=True) parser.add_argument('--search', help='The value to search for', required=True) parser.add_argument('--replace', help='The value to replace it with', required=True) args = parser.parse_args() with open(args.file, 'r', encoding='utf8') as data: csv_reader = csv.reader(data) header = next(csv_reader) try: column_index = header.index(args.column) except ValueError as e: raise Exception('Column', args.column, 'not in list.') for row in csv_reader: if row[column_index] == args.search: row[column_index] = args.replace print(','.join(row))