"Name the Number" telegram bot translates natural numbers as well as powers of 10 into their nominal names and can convert binary, octal and hex numbers to decimal
Written by @mtrineyev
Live bot @NameTheNumberBot
Installation and running process:
cd install_directory
git clone git@github.com:mtrineyev/namenum.git
cd namenum
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 namenum.pyYou can also start the bot in background:
nohup python namenum.py > /dev/null 2>&1&You can find the process and its process ID with this command:
ps ax | grep namenum.pyIf you want to stop the execution, you can kill it with the kill command:
kill PIDHave a nice journey :)