Python BeautifulSoup提取文本输入(在html中不可见)

时间:2018-04-05 16:22:48

标签: python input beautifulsoup extract

我正试图从这个网站中提取一个数字

http://www.mycryptobuddy.com/BitcoinMiningCalculator

website and html picture

我正在尝试使用beautifulsoup在输入字段中提取此数字,其中显示“3511.0”(如图所示)但是这在html中不可见。

我怎么能用beautifulsoup提取这个数字?

我的代码:

None
{'type': 'number', 'ng-model': 'difficulty', 'ng-change': 'computeProfits(); turnAutoUpdateOff()'}
Process finished with exit code 0

输出:

{{1}}

1 个答案:

答案 0 :(得分:3)

你在html中找不到这个号码的原因是它不在那里,它通过javascript接收它通过位于ws:://185.185.40.128:1235 / socket.io /的websocket接收它 正如你在这张照片上看到的那样:

如果你想获得这些数字,你应该连接到那个websocket,并解析收到的消息。