第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

在 Python 中從 URL 讀取 XML 文件

在 Python 中從 URL 讀取 XML 文件

米琪卡哇伊 2023-02-22 15:50:17
我想讀取 count 中存在的整數(shù)tags。這是我寫的代碼:import xml.etree.ElementTree as ETimport urllib.request, urllib.parse, urllib.errorfrom bs4 import BeautifulSoupimport sslctx = ssl.create_default_context()ctx.check_hostname = Falsectx.verify_mode = ssl.CERT_NONEurl =  'http://py4e-data.dr-chuck.net/comments_42.xml'content1 = urllib.request.urlopen(url, context = ctx).read()soup = BeautifulSoup(content1, 'html.parser')tree = ET.fromstring(soup)tags = tree.findall('count')print(tags)它拋出一個(gè)錯(cuò)誤:Traceback (most recent call last):  File "C:\Users\Name\Desktop\Py4e\Me\Assi_15_01.py", line 15, in <module>    tree = ET.fromstring(soup)  File "C:\Users\Name\AppData\Local\Programs\Python\Python38-32\lib\xml\etree\ElementTree.py", line 1320, in XML    parser.feed(text)TypeError: a bytes-like object is required, not 'BeautifulSoup'我能做些什么?更多信息:http://py4e-data.dr-chuck.net/comments_42.xml
查看完整描述

2 回答

?
SMILET

TA貢獻(xiàn)1796條經(jīng)驗(yàn) 獲得超4個(gè)贊

無需使用xml.etree,只需使用<count>BeautifulSoup 選擇所有標(biāo)簽即可:


import requests

from bs4 import BeautifulSoup



url =  'http://py4e-data.dr-chuck.net/comments_42.xml'

soup = BeautifulSoup(requests.get(url).content, 'html.parser')


for c in soup.select('count'):

    print(int(c.text))

印刷:


97

97

90

90

88

87

87

80

79

79

78

76

76

72

72

66

66

65

65

64

61

61

59

58

57

57

54

51

49

47

40

38

37

36

36

32

25

24

22

21

19

18

18

14

12

12

9

7

3

2


查看完整回答
反對(duì) 回復(fù) 2023-02-22
?
白衣非少年

TA貢獻(xiàn)1155條經(jīng)驗(yàn) 獲得超0個(gè)贊

我認(rèn)為您不需要使用 ElementTreee。只需將 BeautiflulSoup 更改為使用 lxml 解析器(將“html-parser”更改為“l(fā)xml”)并在湯上調(diào)用 findall 方法,而不是樹(即 soup.findall('count'))。



查看完整回答
反對(duì) 回復(fù) 2023-02-22
  • 2 回答
  • 0 關(guān)注
  • 226 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)