You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
900 B

7 years ago
7 years ago
7 years ago
7 years ago
  1. # goTweetsAnalyze
  2. twitter analyzer written in Go lang, insipired on the Python tweets_analyzer by x0rz https://github.com/x0rz/tweets_analyzer
  3. [under development]
  4. #### Current analysis
  5. - word count
  6. - weekly activity distribution
  7. - daily activity distribution
  8. - devices used
  9. ![Alt text](https://raw.githubusercontent.com/arnaucode/goTweetsAnalyze/master/screen3.png "screen")
  10. ![Alt text](https://raw.githubusercontent.com/arnaucode/goTweetsAnalyze/master/screen2.png "screen")
  11. needs a twitterConfig.json file on the /build folder with the content:
  12. ```
  13. {
  14. "consumer_key": "xxxxxxxxxxxxxxxx",
  15. "consumer_secret": "xxxxxxxxxxxxxxxx",
  16. "access_token_key": "xxxxxxxxxxxxxxxx",
  17. "access_token_secret": "xxxxxxxxxxxxxxxx"
  18. }
  19. ```
  20. to run it:
  21. - go to the /build folder
  22. - open terminal
  23. - execute the script with:
  24. ```
  25. ./goTweetsAnalyze
  26. ```
  27. - follow the instructions that appears on the terminal