如何使用 Perl 从 yahoo 下载选项数据?
我正在尝试使用 perl 将 yahoo 选项数据导入 mysql。我找到了下载股票价格的模块,但没有找到期权数据。有人知道最简单的方法是什么吗?如果我必须自己开发,我应该使用哪些模块? 谢谢, CP
I am trying to get yahoo options data into mysql using perl. I found modules to download stock prices, but not options data. Anyone know what would be the easiest way to do that? If I have to roll my own, what modules should I use?
Thanks,
CP
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不知道 Yahoo! 的任何特定模块。财务选项,但如果您想自己推出,您可以使用 LWP::UserAgent 下载有问题的页面以及类似 HTML::TreeBuilder 来解析它。如果您需要某一特定选项的数据,Yahoo!甚至可能提供其数据的 RSS 提要,在这种情况下,使用 XML::RSS 来解析提要。
您是否有指向您想要获取的数据类型页面的链接?
I don't know of any specific modules for Yahoo! Finance options, but if you want to roll your own you can usw LWP::UserAgent to download the page in question and something like HTML::TreeBuilder to parse it. If a specific option is the one you need data for, Yahoo! may even offer an RSS feed of its data in which case it's probably more robust to use something like XML::RSS to parse the feed.
Do you have a link to a page of the kind of data you'd like to get?
Finance::Quote 模块实现了对 Yahoo 和许多其他来源的查找。
The Finance::Quote module implements the lookup on Yahoo and a number of other sources.