go-twitter is a Twitter library package for Go. The interface is similar to python-twitter.
- Make sure you have Go installed and your environment is set up correctly: $GOROOT, $GOARCH, $GOBIN, etc.
- Checkout the code from the repository or extract the source code.
- cd go-twitter && make install
import "twitter" // Prints the public timeline func main() { api := twitter.NewApi(); pubTimeline := <-api.GetPublicTimeline(); for i, status := range pubTimeline { fmt.Printf("#%d %s: %s\n", i, status.GetUser().GetScreenName(), status.GetText()); } }
doc/ - godoc generated files, site coming soon