文章詳情頁
新手 - Python 爬蟲 問題 求助
瀏覽:59日期:2022-06-26 16:21:19
問題描述
問題描述: ValueError:unsupported format character ’j’ (0x6a) at index 21即倒數第6行 .jpg j出什么問題了???import urllib.requestfrom bs4 import BeautifulSoupdef get_content(url):
html = urllib.request.urlopen(url)content = html.read().decode(’utf-8’)html.close()return content
def get_image(info):
soup = BeautifulSoup(info,'lxml')all_image = soup.find_all(’img’,class_='BDE_Image') #一個一個保存x=1for image in all_image: print(image) urllib.request.urlretrieve(image[’src’],'C:Usersjack Lees%.jpg' %(x)) x+=1
url = 'https://tieba.baidu.com/p/2218566379'info = get_content(url)print (info)get_image(info)
問題解答
回答1:是%s ,而不是 s%
相關文章:
1. php - 想要遠程推送emjio ios端怎么搞 需要怎么配合2. python沒入門,請教一個問題3. python - 速度最快的啟動界面GUI4. mysql - 關于時間的入庫問題,大神們你們存數據庫的時間是取本地的時間,還是取utc的時間?5. python - 如何把152753這個字符串轉變成時間格式15:27:536. mysql - 類似于之類的通知系統如何設計數據庫7. Javascript 比較不同編碼的字符串8. mysql優化 - mysql EXPLAIN之后怎么看結果進行優化 ?9. python - 關于beautifulsoup獲取文檔內容10. python - 數據無法插入到mysql表里
排行榜
