in scripts/qs-users.py [0:0]
def create_quick_sight_groups_bulk(bucket,key):
existing_groups=get_existing_groups()
input_file = get_file_contents(bucket,key)
for row in input_file:
row=row['Group'].replace(' ','_')
if row not in existing_groups:
row=row.replace(' ','_')
create_quick_sight_group(row)
existing_groups.append(row)