คำถามติดแท็ก beautifulsoup

Beautiful Soup เป็นแพ็คเกจ Python สำหรับแยกวิเคราะห์ HTML / XML เวอร์ชันล่าสุดของแพ็คเกจนี้คือเวอร์ชัน 4 ซึ่งนำเข้าเป็น bs4


5
ตารางวิเคราะห์ python BeautifulSoup
ฉันเรียน python requestsและ BeautifulSoup สำหรับการออกกำลังกายฉันเลือกที่จะเขียนโปรแกรมแยกวิเคราะห์ตั๋วจอดรถ NYC ฉบับย่อ ฉันได้รับการตอบสนอง html ซึ่งค่อนข้างน่าเกลียด ฉันต้องการที่จะคว้าlineItemsTableและแยกตั๋วทั้งหมด คุณสามารถสร้างหน้าซ้ำได้โดยไปที่นี่: https://paydirect.link2gov.com/NYCParking-Plate/ItemSearchและป้อนNYจานT630134C soup = BeautifulSoup(plateRequest.text) #print(soup.prettify()) #print soup.find_all('tr') table = soup.find("table", { "class" : "lineItemsTable" }) for row in table.findAll("tr"): cells = row.findAll("td") print cells ใครช่วยฉันหน่อยได้ไหม การค้นหาที่เรียบง่ายtrไม่ทำให้ฉันไปไหน

8
ImportError: ไม่มีโมดูลชื่อ BeautifulSoup
ฉันได้ติดตั้ง BeautifulSoup โดยใช้ easy_install และพยายามเรียกใช้สคริปต์ต่อไปนี้ from BeautifulSoup import BeautifulSoup import re doc = ['<html><head><title>Page title</title></head>', '<body><p id="firstpara" align="center">This is paragraph <b>one</b>.', '<p id="secondpara" align="blah">This is paragraph <b>two</b>.', '</html>'] soup = BeautifulSoup(''.join(doc)) print soup.prettify() แต่ไม่แน่ใจว่าเหตุใดจึงเกิดขึ้น Traceback (most recent call last): File "C:\Python27\reading and writing xml file from web1.py", line 49, in …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.