Created
June 9, 2017 14:52
-
-
Save captainsafia/556cbda3aa7a9cb9020797d685d7146d to your computer and use it in GitHub Desktop.
This file contains 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
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 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
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)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
👍 Thanks for posting this for those who missed the Office Hour!