He buscado en Google y sus archivos. Hay varios artículos buenos, pero ninguno parece ayudarme. Así que pensé en venir aquí para obtener una respuesta más específica.Python: ¿cómo se ejecuta un archivo .py?
El objetivo: Quiero ejecutar this code en un sitio web para obtener todos los archivos de imágenes a la vez. Ahorrará un montón de apuntar y hacer clic.
Tengo Python 2.3.5 en una máquina con Windows 7 x64. Está instalado en C: \ Python23.
¿Cómo puedo obtener este script para "ir", por así decirlo?
=====================================
WOW. 35k vistas. En vista de que esta es la parte superior resultado en Google, aquí hay un vínculo útil he encontrado en los últimos años:
http://learnpythonthehardway.org/book/ex1.html
Para la configuración, consulte el ejercicio 0.
========= ============================
FYI: Tengo cero experiencia con Python. Cualquier consejo sería apreciado.
a lo solicitado, aquí está el código que estoy usando:
"""
dumpimages.py
Downloads all the images on the supplied URL, and saves them to the
specified output file ("/test/" by default)
Usage:
python dumpimages.py http://example.com/ [output]
"""
from BeautifulSoup import BeautifulSoup as bs
import urlparse
from urllib2 import urlopen
from urllib import urlretrieve
import os
import sys
def main(url, out_folder="C:\asdf\"):
"""Downloads all the images at 'url' to /test/"""
soup = bs(urlopen(url))
parsed = list(urlparse.urlparse(url))
for image in soup.findAll("img"):
print "Image: %(src)s" % image
filename = image["src"].split("/")[-1]
parsed[2] = image["src"]
outpath = os.path.join(out_folder, filename)
if image["src"].lower().startswith("http"):
urlretrieve(image["src"], outpath)
else:
urlretrieve(urlparse.urlunparse(parsed), outpath)
def _usage():
print "usage: python dumpimages.py http://example.com [outpath]"
if __name__ == "__main__":
url = sys.argv[-1]
out_folder = "/test/"
if not url.lower().startswith("http"):
out_folder = sys.argv[-1]
url = sys.argv[-2]
if not url.lower().startswith("http"):
_usage()
sys.exit(-1)
main(url, out_folder)
Start con el Tutorial de Python: http://docs.python.org/tutorial/interpreter.html –