Pearl is a framework for making Google Hangouts bots. It is structured as a set of plugins, which can respond to various events. For example, the hello
plugin replies with a custom greeting whenever a user sends /pearl hello
. Pearl only comes with a few sample plugins, but it's incredibly easy to make custom ones. Pearl is built on hangups.
Pearl requires a Gmail account, which you must independently create. Once you've made an account, add it to conversations that you would like it to interact with.
In the pearl
directory, create a new directory called private
. Inside, create two files, auth.json
and token.txt
. Write the following to auth.json
, but with your own credentials. If you have two-factor authentication enabled, include it in the secret
field; otherwise, leave it as an empty string.
{
"email": "[email protected]",
"password": "pearl",
"secret": "",
"token": "private/token.txt"
}
All it takes to get Pearl up and running is python pearl.py
. The easiest way to permanently run a bot is to build and run a Docker instance from the given Dockerfile
. On some servers, Google may block login requests that Pearl makes. In these situations, first run Pearl on your home computer; you should then see a session cookie stored in token.txt
. With the session cookie, you will be able to connect to Hangouts on any server.
If the program throws an error when generating the token, manually create one from these instructions and place it in token.txt
.
In a conversation with Pearl, try sending /pearl help
. Pearl should respond with a set of available commands.
Generally speaking, pearl.py
should not be modified. Instead, customize Pearl by making new plugins and adding them in config.json
.