搜索谷歌财务中的股票代码

时间:2017-06-13 01:39:32

标签: python web-crawler

我试图通过谷歌财务验证股票代码。例如:当我输入" IBEX"时,我期待谷歌财务回归第二选择而不是第一选择。我该如何存档?

ticker = 'IBEX'    
url="https://www.google.com/finance?q={}".format(ticker)

Explicit waits

Searching stock ticker in google finance

Default result, not expected

2 个答案:

答案 0 :(得分:2)

正确的代码是[{1}},您需要LON:IBEXurlencode

相关:How to create a stock quote fetching app in python

答案 1 :(得分:0)

这个问题最终通过使用硒来解决。 Firefox驱动程序和PhantomJS都运行良好。使用selenium,我无需担心Google对短期内可以提交的请求数量的限制。