我正在尝试使用import requests
from bs4 import BeautifulSoup
response = requests.get(
'http://finance.naver.com/sise/sise_market_sum.nhn?sosok=0&page=1')
html = response.text
soup = BeautifulSoup(html, 'html.parser')
table = soup.find('table', {'class': 'type_2'})
data = []
for tr in table.find_all('tr'):
tds = list(tr.find_all('td'))
for td in tds:
# where magic happends!
if td.find('a') and td.find('a').text:
company_name = td.find('a').text
price_now = tds[2].text
market_cap = tds[5].text
data.append([company_name, price_now, market_cap])
print(*data, sep="\n")
制作一个角度包。
但是当我运行以下命令:ng-packagr
时,出现以下错误:
ng-packagr -p ng-package.json
我检查了一切。我拥有所有模块以及cannot find module '@angular/compiler-cli'
和@angular/cli
的最新版本。我也安装了node
软件包。但仍然出现此错误,无法创建包。
您还能提出其他解决方案吗?
答案 0 :(得分:0)
尝试先删除node_modules
,然后删除run npm install
检查您可能需要手动安装缺少的软件包的输出,
当我得到Error: Cannot find module 'tsickle/src/tsickle'