forked from ronilp/Finding-Influencers-in-Social-Networks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgetLikes.py
56 lines (47 loc) · 1.48 KB
/
getLikes.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import requests
from database import getLikesCollection, getFriendsCollection
from utilities import url, access_token
from Queue import Queue
import threading
import json
idQueue = Queue()
likesCollection = getLikesCollection()
friendsCollection = getFriendsCollection()
for friend in friendsCollection.find():
idQueue.put(friend['id'])
class getLikes(threading.Thread):
def __init__(self):
threading.Thread.__init__(self)
self.queue = idQueue
def run(self):
while True:
try:
fbid = self.queue.get()
rurl = url + '/v2.3/' + fbid
response = requests.get(rurl,params ={'access_token': access_token, 'fields' : 'likes'})
print "Fetching Likes for : ", friendsCollection.find_one({ 'id' : fbid})['name']
all_likes = []
while True:
data = response.json()
if 'likes' not in data:
data['likes'] = data
if 'data' not in data['likes']:
break
likes = data['likes']['data']
if (not 'paging' in data['likes']) or (not 'next' in data['likes']['paging']):
break
rurl = data['likes']['paging']['next']
all_likes.extend(likes)
response = requests.get(rurl)
if len(all_likes) > 0:
print 'Fetched', str(len(all_likes)) + ' liked pages of ', friendsCollection.find_one({ 'id' : fbid})['name']
likesCollection.insert({'id' : fbid, 'data' : all_likes})
except:
self.queue.put(fbid)
time.sleep(2)
self.queue.task_done()
for i in range(20):
t = getLikes()
t.setDaemon(True)
t.start()
idQueue.join()