mirror of
https://github.com/injoyai/tdx.git
synced 2025-11-26 21:25:35 +08:00
增加extend.ListenCodesHTTP,因为北交所代码是网页爬虫,爬被封ip,感觉好像用处也不大
This commit is contained in:
20
example/CodesHTTP/main.go
Normal file
20
example/CodesHTTP/main.go
Normal file
@@ -0,0 +1,20 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"github.com/injoyai/logs"
|
||||
"github.com/injoyai/tdx/extend"
|
||||
"time"
|
||||
)
|
||||
|
||||
func main() {
|
||||
go extend.ListenCodesHTTP(10033)
|
||||
|
||||
<-time.After(time.Second * 3)
|
||||
c := extend.DialCodesHTTP("http://localhost:10033")
|
||||
stocks, err := c.GetStocks()
|
||||
logs.PanicErr(err)
|
||||
|
||||
for _, v := range stocks {
|
||||
println(v)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user