Telegram answering machine made via Python.
Python 3.9.0+ is recommended.
Install all required libriaries.
pip install -r requirements.txt
Get your own Telegram api data. Go to https://my.telegram.org/apps and create an app. You need api_id and api_hash.
Setup config.json file
{
"message": "<Your message for reply>",
"keys": ["The key by which the message to be answered is determined", "key2", "key3", "key_n"],
"login": {
"api_id": "<your_api_id>",
"api_hash": "<your_api_hash>"
}
}
python main.py