1. ホーム
  2. パイソン

[解決済み】TypeError: PythonとCSVでは'str'ではなくbytesのようなオブジェクトが必要です。

2022-04-10 04:44:40

質問

<ブロッククオート

TypeError: 'str' ではなく、bytes ライクなオブジェクトが必要です。

HTMLテーブルのデータをCsvファイルに保存するために、以下のPythonコードを実行中に上記のエラーが発生しました。

import csv
import requests
from bs4 import BeautifulSoup

url='http://www.mapsofindia.com/districts-india/'
response=requests.get(url)
html=response.content

soup=BeautifulSoup(html,'html.parser')
table=soup.find('table', attrs={'class':'tableizer-table'})
list_of_rows=[]
for row in table.findAll('tr')[1:]:
    list_of_cells=[]
    for cell in row.findAll('td'):
        list_of_cells.append(cell.text)
    list_of_rows.append(list_of_cells)
outfile=open('./immates.csv','wb')
writer=csv.writer(outfile)
writer.writerow(["SNo", "States", "Dist", "Population"])
writer.writerows(list_of_rows)

を最後の行の上に追加してください。

解決方法は?

Python 3ではなく、Python 2のメソッドを使用しています。

変更してください。

outfile=open('./immates.csv','wb')

へ。

outfile=open('./immates.csv','w')

をクリックすると、以下のような出力のファイルが得られます。

SNo,States,Dist,Population
1,Andhra Pradesh,13,49378776
2,Arunachal Pradesh,16,1382611
3,Assam,27,31169272
4,Bihar,38,103804637
5,Chhattisgarh,19,25540196
6,Goa,2,1457723
7,Gujarat,26,60383628
.....

Python 3 では csv はテキストモードで入力を受け取りますが、Python 2 ではバイナリモードで受け取りました。

を追加編集しました。

以下は実行したコードです。

url='http://www.mapsofindia.com/districts-india/'
html = urllib.request.urlopen(url).read()
soup = BeautifulSoup(html)
table=soup.find('table', attrs={'class':'tableizer-table'})
list_of_rows=[]
for row in table.findAll('tr')[1:]:
    list_of_cells=[]
    for cell in row.findAll('td'):
        list_of_cells.append(cell.text)
    list_of_rows.append(list_of_cells)
outfile = open('./immates.csv','w')
writer=csv.writer(outfile)
writer.writerow(['SNo', 'States', 'Dist', 'Population'])
writer.writerows(list_of_rows)