15 lines
307 B
Python
15 lines
307 B
Python
#!/usr/bin/env python3
|
|
''' Read CSV contacts file exported from hubspot.'''
|
|
|
|
import csv
|
|
|
|
CSV="all-contacts.csv"
|
|
|
|
print("Parsing" + CSV)
|
|
|
|
with open(CSV, newline='') as csvfile:
|
|
contactreader = csv.reader(csvfile, delimiter=',', quotechar='"')
|
|
for row in contactreader:
|
|
print(', '.join(row))
|
|
|