使用python从internet下载编号文件夹中的编号图像文件

使用python从internet下载编号文件夹中的编号图像文件,python,image,http,loops,Python,Image,Http,Loops,问题 我有一个这种类型的链接,其中1980是正在更改的初始文件夹,其次是格式为IMG_2524.jpg的图像文件名正在更改 我想做的是从这些url下载所有图像,对于文件夹,迭代并更改1900-2000范围内的数字,对于文件名,将IMG_2000.jpg更改为IMG_4000.jpg。 下载的文件必须保存在其来源的文件夹编号内 我认为for-loop应该是一个选择,但作为一个新手,我有点迷失了方向。 请帮忙,谢谢 更新 多亏了anmol,实际上你需要两个for循环,嵌套for循环,所以现在我们有了

问题

我有一个这种类型的链接,其中1980是正在更改的初始文件夹,其次是格式为IMG_2524.jpg的图像文件名正在更改

我想做的是从这些url下载所有图像,对于文件夹,迭代并更改1900-2000范围内的数字,对于文件名,将IMG_2000.jpg更改为IMG_4000.jpg。 下载的文件必须保存在其来源的文件夹编号内

我认为for-loop应该是一个选择,但作为一个新手,我有点迷失了方向。 请帮忙,谢谢

更新


多亏了anmol,实际上你需要两个for循环,嵌套for循环,所以现在我们有了给定年份1900-2001范围内的所有2000-4000张图像

样本输出:

http://www.fdci.org/imagelibrary/EventCollection/2000/Big/IMG_3994.jpg
http://www.fdci.org/imagelibrary/EventCollection/2000/Big/IMG_3995.jpg
http://www.fdci.org/imagelibrary/EventCollection/2000/Big/IMG_3996.jpg
http://www.fdci.org/imagelibrary/EventCollection/2000/Big/IMG_3997.jpg
http://www.fdci.org/imagelibrary/EventCollection/2000/Big/IMG_3998.jpg
http://www.fdci.org/imagelibrary/EventCollection/2000/Big/IMG_3999.jpg
http://www.fdci.org/imagelibrary/EventCollection/2000/Big/IMG_4000.jpg

请尝试编写一些代码,并向我们展示您到目前为止的成果。或者简单地考虑使用WGET或者程序或Python模块,它可以完成这样的操作。谢谢。很快就会尝试它的更新。它返回一个表错误-在缩进中有什么不一致的标签和空格的使用吗?我已经附加了示例输出,它在我的机器上很好地工作。我认为在复制和粘贴过程中出现了一些错误,请尝试自己编写这段代码,并给出相关缩进。嗨,谢谢你,我已经编写了一段代码,将字符串存储在filename output.txt中,但其返回选项卡错误请经常检查updateAnks,最后一件事,如何让他们写下一行没问题,我自己修好了,非常感谢你摇滚老兄!为python干杯
for i in xrange(1900,2001):
    for j in xrange(2000, 4001):
        year = str(i)
        image = str(j)
        new_link = 'http://www.fdci.org/imagelibrary/EventCollection/'+year+'/Big/IMG_'+image+'.jpg'
        print new_link
        #Now you will get the possible links within the given ranges,
        #then you can use urllib2 to fetch the response from the link 
        # and do whatever you wanna do 
http://www.fdci.org/imagelibrary/EventCollection/2000/Big/IMG_3994.jpg
http://www.fdci.org/imagelibrary/EventCollection/2000/Big/IMG_3995.jpg
http://www.fdci.org/imagelibrary/EventCollection/2000/Big/IMG_3996.jpg
http://www.fdci.org/imagelibrary/EventCollection/2000/Big/IMG_3997.jpg
http://www.fdci.org/imagelibrary/EventCollection/2000/Big/IMG_3998.jpg
http://www.fdci.org/imagelibrary/EventCollection/2000/Big/IMG_3999.jpg
http://www.fdci.org/imagelibrary/EventCollection/2000/Big/IMG_4000.jpg