Advertisement
Guest User

Untitled

a guest
May 24th, 2015
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. crew_csv = ''
  2. crew_rows = get_rows_from_csv(crew_csv)
  3. for c in crew_rows:
  4. participant = Participant(fullname=c[0], email=c[1], company=c[2], twitter=c[3], proposal_space_id=space.id)
  5. db.session.add(participant)
  6. db.session.commit()
  7. sync_attendee_records(participant, event)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement