从维基百科中解析S&P 500数据的GoLang代码部分。

huangapple go评论77阅读模式
英文:

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

huangapple
  • 本文由 发表于 2015年8月31日 00:30:37
  • 转载请务必保留本文链接:https://go.coder-hub.com/32298769.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定