첫 번 째 Beautiful Soup 파충류.

1373 단어 파 이 썬 파충류
BeautifulSoup 을 이용 하여 왕 이 평론 의 글 제목, 시간, 링크 를 캡 처 하고 BeautifulSoup, request 모듈 을 사용 하여 가상 Python 2.7 에서 실행 합 니 다.
# coding=utf-8
import requests
from bs4 import BeautifulSoup


html = requests.get('http://money.163.com/special/pinglun/')
text = html.text


soup = BeautifulSoup(text, "lxml")

# h2 = soup.find('h2')
# print h2

#  div     class item_top   
for link in soup.find_all('div', class_='item_top'):
    #  a      
    print(link.a.get_text())
    #  a   href
    print(link.a.get('href'))
    #  span      ,   
    print(link.span.get_text())

좋은 웹페이지 즐겨찾기