Pytomation is a automation made with python for solve a particular problem of my job
On Windows:
py -m venv .venv
.venv/Scripts/activate
pip install -r requirements.txt
On Linux:
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt