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 Apr 29, 2015
1 parent bf42970 commit 2477780
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scraper.py
Expand Up @@ -72,7 +72,7 @@ def next(nextUrl):
for i, attendee in enumerate(attendeesIds):
print "element", i, "is", attendee
for y in range (i+1, len(attendeesIds)):
rUrl = baseUrl+'/'+attendee+'/friends/'+attendeesIds[y]+'?access_token=fbToken'
rUrl = baseUrl+'/'+str(attendee)+'/friends/'+str(attendeesIds[y])+'?access_token=fbToken'
print rUrl
rel = requests.get(rUrl).content
rr = json.loads(rel)
Expand Down

0 comments on commit 2477780

Please sign in to comment.