I have wrote a small script using twython for python that randomly unfollows people however whenever I run the code nothing happens.
mfriends = twitter.get_followers_ids(screen_name='myscreenname', count=50)
try:
for unfollo in mfriends ['ids']:
twitter.destroy_friendship(user_id=unfollo)
except TwythonError as e:
print(e)