symposion_app/symposion/speakers/management/commands/export_speaker_data.py

20 lines
537 B
Python
Raw Normal View History

2012-07-12 04:38:24 +00:00
import csv
import os
from django.core.management.base import BaseCommand, CommandError
from symposion.speakers.models import Speaker
class Command(BaseCommand):
def handle(self, *args, **options):
csv_file = csv.writer(open(os.path.join(os.getcwd(), "speakers.csv"), "wb"))
csv_file.writerow(["Name", "Bio"])
for speaker in Speaker.objects.all():
csv_file.writerow([
speaker.name.encode("utf-8"),
speaker.biography.encode("utf-8"),
])