scripts/fetch_name_gender.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Fri, 06 Aug 2010 14:22:10 +0530
branchanoop
changeset 212 5c71757e7e0e
parent 204 a190811581a8
permissions -rw-r--r--
Edited mail contents and added another function to send wait-listed email.

from sdi.models import ParticipantInfo

f = open('names.txt', 'w')
for participant in participants:
    f.write('%s %s, %s\n' % (participant.participant.first_name, participant.participant.last_name, participant.participant.gender))

f.close()