TypeError: বাইট-এর মতো অবজেক্ট প্রয়োজন, 'স্ট্র' নয়
সিএসভি ফাইলে এইচটিএমএল টেবিলের ডেটা সংরক্ষণ করার জন্য পাইথন কোডের নিচে কার্যকর করার সময় ত্রুটি পেয়েছে। রাইডআপ কীভাবে পাবেন তা জানেন না p
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)
শেষ লাইন উপরে।