scripts/fetch_name_gender.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Fri, 06 Aug 2010 14:24:22 +0530
branchanoop
changeset 216 34512198cad4
parent 204 a190811581a8
permissions -rw-r--r--
Made style changes and added accommodation venue information for the list.

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