Skip to content

ivkos/botyo-command-reverse-image-search

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Reverse Image Search Command for Botyo

npm npm npm

The Reverse Image Search Command for Botyo runs a reverse image search on the last uploaded picture and posts links to the results on Google Images, Bing Images, and TinEye.

Usage

#reverse

Install

Step 1. Install the module from npm.

npm install --save botyo-command-reverse-image-search

Step 2. Register the module.

import Botyo from "botyo";
import ReverseImageSearchCommand from "botyo-command-reverse-image-search"

Botyo.builder()
    ...
    .registerModule(ReverseImageSearchCommand)
    ...
    .build()
    .start();

Configuration & URL Shortening

The Reverse Image Search Command has some sensible defaults and need not be explicitly configured. However, the module supports URL shortening using goo.gl. If you want to use this feature, you need to obtain an API key and configure it in your configuration file config.yaml:

modules:
  ReverseImageSearchCommand:
    recentMessagesCount: 20          # how many recent messages to search for photos (default: 20)
    shortenUrls: false               # should it shorten result URLs (default: false)
    googlApiKey: YOUR_GOOGL_API_KEY  # goo.gl API key (optional if shortenUrls is false, otherwise required)

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published