-1
from urllib.request import urlopen
from bs4 import BeautifulSoup
html = urlopen("http://companyinfo.stock.naver.com/v1/company/c1010001.aspx?cmp_cd=056190")
bsj = BeautifulSoup(html, 'html.parser')
table = bsj.find_all("table" , {"class" : "gHead01 all-width"}).
しかし、テーブルのcaption属性はブラインドです。soup.find( "table"、{"caption": "blind"})
私はテーブルを取得するにはどうすればよいですか..