英文:
Parsing S&P 500 Data from Wikipedia in GoLang
问题
我正在尝试弄清楚如何解析这个页面上的标准普尔500股票表格:https://en.wikipedia.org/wiki/List_of_S%26P_500_companies。
Python有一些很好的库,比如lxml,可以帮助处理这个问题,但我正在尝试在Go语言中做同样的事情。我已经研究了如何使用"net/http"进行GET请求,但不确定如何执行实际的解析操作。
谢谢。
英文:
I am trying to figure out how to parse the table of S&P 500 stock from this page: https://en.wikipedia.org/wiki/List_of_S%26P_500_companies.
Python has nice libraries like lxml that help to take care of this but I'm trying to do the same thing in GoLang. I have already looked into making GET requests with "net/http" but am not sure how to perform the actual parsing.
Thank you.
答案1
得分: 6
我会使用这个库:https://github.com/PuerkitoBio/goquery
它提供了易于使用的类似于jQuery的选择器。
我用你的数据做了一个示例:
http://play.golang.org/p/KdWUiiPxSU
英文:
I'd use this lib: https://github.com/PuerkitoBio/goquery
It gives you easy to use jquery like selectors.
I made an example with your data:
http://play.golang.org/p/KdWUiiPxSU
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论