Skip to content

Latest commit

 

History

History
31 lines (18 loc) · 703 Bytes

README.md

File metadata and controls

31 lines (18 loc) · 703 Bytes

Twitter Bot

This is a small and very simple twitter bot, which retweets based on search queries.

How to run this bot

Add a settings.yaml file, same structure as settings.example.yaml and add your API Tokens etc. plus the search strings you want to retweet.

When done, you can run it by doing:

$ go run tweetbot.go

You can also compile a binary, depending on where it has to run

$ go build tweetbot.go

or if you want it to run on you raspberry pi.

env GOOS=linux GOARCH=arm GOARM=5 go build tweetbot.go

Credits

Thanks to Miloskrca for helping with the initial development and for introducing me to Golang.