hubot-google-trend

0.1.0 • Public • Published

hubot-google-trend NPM MIT License

Show links of recent trend word on Google. Don't miss new trend.

Usage

To know recent trend words:

us

Or if you want to search another domain, for example jp (Japan):

jp

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

  1. Fork (https://github.com/tcnksm/hubot-google-trend/fork)
  2. Create a feature branch
  3. Commit your changes
  4. Rebase your local changes against the master branch
  5. 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

Authors

Readme

Keywords

Package Sidebar

Install

npm i hubot-google-trend

Weekly Downloads

1

Version

0.1.0

License

MIT

Last publish

Collaborators

  • tcnksm