Skip to content

Instantly share code, notes, and snippets.

@KatieHoban
Last active August 29, 2015 14:03
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save KatieHoban/4648be8e5a87606a5b28 to your computer and use it in GitHub Desktop.
Save KatieHoban/4648be8e5a87606a5b28 to your computer and use it in GitHub Desktop.
Unfollower Detector
#While this particular version takes files of the text on my followers and following pages,
#it can be easily modified to check a past list of followers against a more recent list -
#just replace following.txt with the "past followers" file and followers.txt with "present followers".
#encoding may be 'utf-8' depending on the type of files you are using
with open('following.txt', 'r', encoding = 'latin-1') as following_file:
with open('followers.txt', 'r', encoding = 'latin-1') as followers_file:
discrepancy = set(following_file).difference(followers_file)
discrepancy.discard('\n')
with open('difference.txt', 'w', encoding = 'utf-8') as difference:
for line in discrepancy:
difference.write(line)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment