Skip to content

Instantly share code, notes, and snippets.

@fitoria
Created April 20, 2010 04:00
Show Gist options
  • Save fitoria/372011 to your computer and use it in GitHub Desktop.
Save fitoria/372011 to your computer and use it in GitHub Desktop.
#Script para spamear a los de twittnic
#author: @fitoria
#Bajo los terminos de la WTFPL http://sam.zoy.org/wtfpl/
import twitter
api = twitter.api(username = 'twittnic', password = 'insertar la pass')
twitteros_nicas = api.GetFriends()
mensaje_evil = 'todos son gays!!'
for twittero in twitteros_nicas:
update = 'd ' + twittero.screen_name + ' ' + mensaje_evil
status = api.postUpdate(update)
print 'se mando mensaje a %s' % twittero.screen_name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment