A Go Restful API that scrapes real-time stock data from Yahoo Finance.
$ go get https://github.com/imthaghost/stockapiCreate server.go
package main
import (
"github.com/imthaghost/stockapi/server"
)
func main() {
s := server.NewServer()
s.Start(":8000")
}Start server
$ go run server.goBy contributing, you agree that your contributions will be licensed under its MIT License.
In short, when you submit code changes, your submissions are understood to be under the same MIT License that covers the project. Feel free to contact the maintainers if that's a concern.
