Control your server from Whatsapp
It allows you to control a server or a group of servers using whatsapp. The script is installed on the server and runs in the background. There are two ways of controlling the server:
- Send a command to be executed on the server through
/exec command
, example: sending/exec ls -tr
will execute thels -tr
on the server and return the results as a message on whatsapp.
- Call a predefined python function on the server. At the moment, some dummy functions are present, like
hello
,start_server
,memory_usage
,preparing_demo
..
In order to edit those functions, edit the src/routes.py
file to suit your needs.
It can even send pictures over, or do some text to speech (it can tell jokes)
At the moment, there is no authentication or security, but it's planned. I would not use it in production, it's a work in progress, but it already works well.
For any questions just ask
- Install the image handling system dependencies on
bash opt/system-requirements.sh
- Create a virtualenv and install the requirements
pip install -r opt/requirements.pip
- Follow the instructions on
src/config.py
to get the whatsapp credentials - Edit the
src/routes.py
file to suit your CLI needs - Then just run the server with
python src/server.py
Heavily inspired by joaoricardo000's work - https://github.com/joaoricardo000/whatsapp-bot-seed