"Guess the Number" telegram game by Cold-Hot method ❄️☀️ by @mtrineyev
Telegram bot https://t.me/ColdHotGameBot
Installation and running process:
cd install_directory
git clone git@github.com:mtrineyev/coldhot.git
cd coldhot
sudo apt install python3-venv
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
cp settings.example settings.py
nano settings.py
python coldhot.pyYou can also start the bot in background:
nohup python coldhot.py > /dev/null 2>&1&You can find the process and its process ID with this command:
ps ax | grep coldhot.pyIf you want to stop the execution, you can kill it with the kill command:
kill PIDApplication uses pyTelegramBotAPI Python module
Have a nice game :)