scripts/fetch_name_gender.py
author Anoop Jacob Thomas<anoop@fossee.in>
Tue, 09 Nov 2010 13:40:41 +0530
branchanoop
changeset 248 73ad1c61bb74
parent 204 a190811581a8
permissions -rw-r--r--
Fixed a bug.

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()