Skip to content

jb55/go-twitter

Repository files navigation

go-twitter

go-twitter is a Twitter library package for Go. The interface is similar to python-twitter.

Installation

  1. Make sure you have Go installed and your environment is set up correctly: $GOROOT, $GOARCH, $GOBIN, etc.
  2. Checkout the code from the repository or extract the source code.
  3. cd go-twitter && make install

Quick Start

import (
  "go-twitter"
  "fmt"

)
// 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());
  }
}

Documentation

doc/ - godoc generated files, site coming soon

About

🐦 One of the first go libraries, targets the old Twitter API which no longer works

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages