scripts/fetch_name_gender.py
author anoop
Sun, 08 Aug 2010 15:30:23 +0530
branchanoop
changeset 228 c3de3493f55d
parent 204 a190811581a8
permissions -rw-r--r--
updated first page.

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