Habbo News Articles Scanner


/ Published in: Python
Save to your folder(s)

Un scanner simple de noticias para Habbo, supongo que funciona solo para Win32 por la libreria WinSound pero se puede adecuar a cualquier sistema operativo facilmente editando la alerta de "nueva noticia" por un Print o por cualquier otra cosa.


Copy this code and paste it in your HTML
  1. import urllib
  2. import winsound
  3. import time
  4.  
  5. ############################
  6. ############################
  7. #### #### #### ####
  8. #### #### #### ####
  9. #### #### #### ####
  10. #### #### ####
  11. #### #### ####
  12. #### #### ############
  13. #### #### #### ####
  14. #### #### #### ####
  15. ############################
  16. ############################
  17.  
  18. print "Habbo News Scanner.\nBasado en la idea de Physlet\n"
  19. hotel = raw_input(">>Ingresa Hotel URL (Ej: www.habbo.es): ")
  20. url = urllib.urlopen("http://" + hotel + "/articles")
  21. a = url.read()
  22. titulo1 = a[a.find("<title>")+7:a.find("</title>")]
  23. print "Noticia actual: " + titulo1
  24.  
  25. while True:
  26. url = urllib.urlopen("http://" + hotel + "/articles")
  27. a = url.read()
  28. titulo2 = a[a.find("<title>")+7:a.find("</title>")]
  29. if titulo2 != titulo1:
  30. winsound.Beep(5000, 5000)
  31. print "Noticia nueva: " + titulo2
  32. time.sleep(3)

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.