Skip to content
This repository has been archived by the owner on Jan 15, 2019. It is now read-only.

Commit

Permalink
Update scraper.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lucahammer committed May 1, 2015
1 parent f17bc45 commit 538ba1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scraper.py
Expand Up @@ -27,6 +27,6 @@
for session in sessions['data']:
if len(session['speakers']) > 1:
for i, speaker in enumerate(session['speakers']):
if i < len(session['speakers'])-1:
print session['speakers'][i]['id']+','+session['speakers'][i+1]['id']+','+session['title'].encode('ascii', 'replace')
for y in range (i, len(session['speakers'])-1)
print session['speakers'][i]['id']+','+session['speakers'][y]['id']+','+session['title'].encode('ascii', 'replace')
quit()

0 comments on commit 538ba1d

Please sign in to comment.