Skip to content

Instantly share code, notes, and snippets.

@drewconway
Created February 25, 2009 18:15
Show Gist options
  • Save drewconway/70326 to your computer and use it in GitHub Desktop.
Save drewconway/70326 to your computer and use it in GitHub Desktop.
N=K.neighbors('your_twitter_id')
F=[]
for u in N:
D=K.neighbors(u)
for i in D:
if N.count(i)<1 and i is not 'your_twitter_id':
F.append(i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment