forked from psychemedia/newt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
basicUserNet.py
58 lines (49 loc) · 1.27 KB
/
basicUserNet.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
57
58
import sys,newt
def report(m):
newt.report(m,True)
api=newt.getTwitterAPI()
print api.test()
#----------------------------------------------------------------
#user settings
user=sys.argv[1]
try:
typ=sys.argv[2]
except:
typ="friends"
try:
extra=sys.argv[3]
except:
extra=-1
try:
sampleSize=int(sys.argv[4])
except:
sampleSize='all'
#----------------------------------------------------------------
tw={}
if typ=="followers":
tw=newt.getTwitterFollowersDetailsByIDs(api,user,sampleSize)
else:
tw=newt.getTwitterFriendsDetailsByIDs(api,user,sampleSize)
f=newt.openTimestampedFile(user+'/'+typ,'sample'+str(sampleSize)+'tweeps.txt')
for tweep in tw:
f.write(str(tweep)+'\n')
f.close()
report("List members:")
for i in tw:
report(tw[i].screen_name)
'''
report("List members:")
for i in tw:
report(tw[i].screen_name)
'''
#newt.gephiOutputFile(api,user+'/'+typ, tw,'outerfriends')
newt.gephiOutputFile(api,user+'/'+typ, tw)
if extra!=-1:
newt.gephiOutputFile(api,user+'/'+typ, tw,'extrafriends')
#newt.gephiOutputFile(api,user+'/'+typ, tw,'outerfollowers')
'''
newt.gephiOutputFile(api,user, tw,'outerfriends')
newt.gephiOutputFile(api,user, tw,'outerfollowers')
newt.googleCSEDefinitionFile("XXX",user, tw)
newt.googleCSEDefinitionFileWeighted("XXX",user, tw)
'''