$ go get -u github.com/mlabouardy/9gag
package main
import (
"fmt"
"github.com/mlabouardy/9gag"
)
func main() {
gag9 := gag9.New()
for _, meme := range gag9.Find() {
fmt.Printf("Description: %s\nImage: %s\n", meme.Description, meme.Image)
}
}
package main
import (
"fmt"
"github.com/mlabouardy/9gag"
)
func main() {
gag9 := gag9.New()
for _, meme := range gag9.FindByTag("got") {
fmt.Printf("Description: %s\nImage: %s\n", meme.Description, meme.Image)
}
}
http://www.blog.labouardy.com/create-9gag-android-application/
You are more than welcome to contribute to this project. Fork and make a Pull Request, or create an Issue if you see any problem.