私はウェブスクラップするのがとても新しいです。私はBeautifulSoupについて読んで、それを使ってみました。しかし、私は与えられたクラス名 "company-desc-and-sort-container"でテキストを抽出することができません。私はhtmlページからタイトルを抽出することさえできません。これは私が試したコードです:Pythonのhtmlページからテキストを抽出できません
from BeautifulSoup import BeautifulSoup
import requests
url= 'http://fortune.com/best-companies/'
r = requests.get(url)
soup = BeautifulSoup(r.text)
#print soup.prettify()[0:1000]
print soup.find_all("title")
letters = soup.find_all("div", class_="company-desc-and-sort-container")
私は、次のエラーを取得しています:
print soup.find_all("title")
TypeError: 'NoneType' object is not callable
あなたの美しいバージョンは何ですか? – eLRuLL