Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dlion/go-odbye
Goodbye unfollowers!
https://github.com/dlion/go-odbye
followers golang twitter
Last synced: 8 days ago
JSON representation
Goodbye unfollowers!
- Host: GitHub
- URL: https://github.com/dlion/go-odbye
- Owner: dlion
- License: mit
- Created: 2016-08-09T13:01:51.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2022-10-24T09:25:13.000Z (about 2 years ago)
- Last Synced: 2024-10-13T11:11:01.651Z (24 days ago)
- Topics: followers, golang, twitter
- Language: Go
- Size: 44.9 KB
- Stars: 67
- Watchers: 5
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-odbye
Goodbye unfollowers!A simple tool to check who [un]follow you on twitter.
## Dependencies
To use this tool you need to resolve some dependencies like go-twitter, oauth1, color and go-sqlite3, to do this enter on the directory `cd $GOPATH/src/go-odbye` and type `go get`.If you run into trouble, this is commonly an error pertaining to `int()` or `int64()`, you should update your go dependancies with `go get -u`.
## Building
In the folder `$GOPATH/src/go-odbye` you need to run `go build` to compile the binary `go-odbye`.## Usage
`./go-odbye -nick `## Example
`./go-odbye -nick dlion92`![screenshot](./screenshot.png)
## Option
`-nick Which user you want to track`
`-url If you want to see complete url`## Config
To use this tool you need to add your consumer and token key/secret in a json config file on your `$HOME` dir called `.goodbye.json`, here the structure:
```js
{
"consumerKey": "",
"consumerSecret": "",
"accessToken": "",
"accessSecret": ""
}
```You can also optionally set your default nick in the config file
```js
{
"nick": "",
// …
}
```## Consumer/Token
You can obtain your consumer/token creating a new twitter application, see https://apps.twitter.com/ to more info.## Author
Domenico Luciani aka DLion
https://domenicoluciani.com## License
MIT