現在pythonにてスクレイピングのプログラムを行なっております。
その中で、以下に関するデータのtextデータを抽出しようと試みようとしております。
company = index.find('p',{'class', 'p-result_company'}) row[0] = company.get_text().replace('\n',' ').replace('\r',' ').replace(' ','').replace('\t','').replace('"','') address = index.find('li',{'class', 'c-icon c-icon-result p-result_icon p-result_area'}) row[2] = address.get_text().replace('\n',' ').replace('\r',' ').replace(' ','').replace('\t','').replace('"','')
上記でプログラムを実施すると、row[2]については無事テキスト抽出ができますが、row[0]については
row[0] = company.get_text().replace('\n',' ').replace('\r',' ').replace(' ','').replace('\t','').replace('"','') AttributeError: 'NoneType' object has no attribute 'get_text'
get_text()やtextについてエラーが発生してしまい、上手く抽出が叶わず困っております。
どなたかご教示いただけますでしょうか?よろしくお願い致します。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。