Buenas noches a todos.
Estoy dando mis primeros pasos en Python, he conseguido hacer un script para
bajar series de anime, pero me gustaría guardar en un archivo de texto las
descargas ya realizadas, así la próxima vez que se ejecutara, mire en el
archivo de texto para no descargar el mismo episodio.
Este es el código de lo que tengo hecho.
#!/usr/bin/python
import re, urllib
import webbrowser
import time
def descarga_anime():
lista_anime = ["coppelion", "flamenco", "freezing", "hajime",
"log-horizon", "valvrave", "arpeggio"]
myurl = "http://www.animetake.com"
for i in re.findall('''href=["'](.[^"']+)["']''',
urllib.urlopen(myurl).read(), re.I):
#time.sleep(900)
for serie in lista_anime:
if serie in i and "episode" in i:
webbrowser.open(i)
time.sleep(4)
for torrent in re.findall('''href=["'](.[^"']+)["']''',
urllib.urlopen(i).read(), re.I):
if "nyaa.se" in torrent:
if "#038" in torrent:
torrent = torrent.replace("#038;", "")
torrent = torrent.replace("amp;", "").replace(" ", "")
webbrowser.open(torrent)
time.sleep(4)
break
descarga_anime()
Muchas gracias por vuestro tiempo y ayuda.
Manuel.
_______________________________________________
Python-es mailing list
[email protected]
https://mail.python.org/mailman/listinfo/python-es
FAQ: http://python-es-faq.wikidot.com/