forked from ronilp/Finding-Influencers-in-Social-Networks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgetData.py
36 lines (28 loc) · 900 Bytes
/
getData.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
import requests
from database import getFriendsCollection
from utilities import url, access_token
friendscollection = getFriendsCollection()
def getFriends():
global url, access_token,count
rurl = url + '/v2.3/me'
response = requests.get(rurl, params = {'access_token' : access_token, 'fields' : 'friends'})
while True:
data = response.json()
if not 'friends'in data:
data['friends'] = data
insertFriends(data['friends']['data'])
if 'next' in data['friends']['paging']:
rurl = data['friends']['paging']['next']
else:
break
response = requests.get(rurl)
def insertFriends(data):
global friendscollection,count
for person in data:
if not friendscollection.find_one({"id" : person['id']}):
count = count + 1
friendscollection.insert(person)
print person['name'], person['id']
count = 0
allFriends = getFriends()
print 'Fetched ' + str(count) + ' friends'