Updated guestbook_export.py so that the export

This commit is contained in:
Steve Dogiakos 2025-04-01 22:17:18 -06:00
parent 5d71d778f8
commit 79bbb02388

View File

@ -1,24 +1,25 @@
import csv
import sqlite3
# Update the database file path if needed.
DATABASE = 'guestbook.db'
EXPORT_FILE = 'mailchimp_export.csv'
def export_guestbook_to_csv():
conn = sqlite3.connect(DATABASE)
cursor = conn.cursor()
# Select only entries that have an email address (if that's required)
# Select only entries that have an email address, if that's required.
cursor.execute('''
SELECT email, first_name, last_name
SELECT email, first_name, last_name, comment
FROM guests
WHERE email IS NOT NULL AND email <> ''
''')
rows = cursor.fetchall()
with open(EXPORT_FILE, 'w', newline='') as csvfile:
with open(EXPORT_FILE, 'w', newline='', encoding='utf-8') as csvfile:
writer = csv.writer(csvfile)
# Write headers matching Mailchimp's expected column names
writer.writerow(['Email Address', 'First Name', 'Last Name'])
# Write headers matching Mailchimp's expected column names (and including comment)
writer.writerow(['Email Address', 'First Name', 'Last Name', 'Comment'])
for row in rows:
writer.writerow(row)