«beautifulsoup» 태그된 질문

뷰티플 수프는 HTML / XML 파싱을위한 파이썬 패키지입니다. 이 패키지의 최신 버전은 bs4로 가져온 버전 4입니다.


4
python BeautifulSoup 구문 분석 테이블
저는 파이썬 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", …

8
ImportError : BeautifulSoup이라는 모듈이 없습니다.
easy_install을 사용하여 BeautifulSoup을 설치하고 다음 스크립트를 실행하려고합니다. 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 …

6
특정 속성 만있는 태그를 찾는 방법-BeautifulSoup
BeautifulSoup을 사용하여 내가 검색하는 속성 만 포함 된 태그를 어떻게 검색합니까? 예를 들어 모든 <td valign="top">태그 를 찾고 싶습니다 . 다음 코드 : raw_card_data = soup.fetch('td', {'valign':re.compile('top')}) 원하는 모든 데이터를 가져 오지만 <td>속성이 있는 태그 도 가져 옵니다.valign:top 나는 또한 시도했다 : raw_card_data = soup.findAll(re.compile('<td valign="top">')) 그리고 이것은 아무것도 반환하지 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.