【python】【爬虫】爬取Fate Grand Order wiki所有英灵礼装图鉴
生活随笔
收集整理的這篇文章主要介紹了
【python】【爬虫】爬取Fate Grand Order wiki所有英灵礼装图鉴
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
import requests
from lxml import etreefor i in range(1,895):''' url0="https://fgowiki.com/guide/equipdetail/894?p=pc" #網(wǎng)頁地址res=requests.get(url0)content=res.contenthtml=etree.HTML(content)name=html.xpath('//*[@id="row-move"]/div[2]/div/div[2]/div/div/table[1]/tbody/tr[1]/th[1]') #得到文件名'''url = "https://img.fgowiki.com/fgo/card/equip/"+str(i)+"A.png" #圖片地址img = requests.get(url)f = open("E:\\fgo\\" + str(i)+".png", 'wb')f.write(img.content) #寫入到文件f.close()print(i, "finished")
?
總結(jié)
以上是生活随笔為你收集整理的【python】【爬虫】爬取Fate Grand Order wiki所有英灵礼装图鉴的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Lenb函数计算中文字节出错处理办法
- 下一篇: 20行Python代码开发植物识别 ap