hubot-google-trend
v0.1.0
Published
hubot job to show links of recent trend words on Google
Downloads
2
Readme
hubot-google-trend
Show links of recent trend word on Google. Don't miss new trend.
Usage
To know recent trend words:
Or if you want to search another domain, for example jp
(Japan):
Cron
You can set hubot-google-trend
as cronjob:
new Cron('0 0 12 * * 1-5 ', () ->
robot.emit 'google-trend', "jp"
).start()
Just emit google-trend
event with tld
.
Configuration
By default hubot-google-trend
try to show trend on google.com. You can define default domain. For example, if you want to set it google.fr (France) :
export HUBOT_GOOGLE_TREND_TLD=fr
Install
To install, use npm
:
$ npm install --save hubot-google-trend
And add hubot-google-trend
to your external-scripts.json
.
Contribution
- Fork (https://github.com/tcnksm/hubot-google-trend/fork)
- Create a feature branch
- Commit your changes
- Rebase your local changes against the master branch
- Create new Pull Request
Tips
To get google domain with TLD. We parsed http://en.wikipedia.org/wiki/List_of_Google_domains with EricChiang/pub.
$ wget http://en.wikipedia.org/wiki/List_of_Google_domains -O wiki.html
$ cat wiki.html | pup table slice{0} tr td text{} | grep '\.' | egrep -v 'google|g.cn' | sed -e 's/\.//g' | sed 's/^/\"/g' | sed 's/$/\"/g' > tld.txt
$ cat wiki.html | pup table slice{0} tr td text{} | grep '\.' | egrep 'google|g.cn' | sed 's/^/\"/g' | sed 's/$/\"/g' > domain.txt
$ paste -d":" tld.txt domain.txt