Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 321 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 321 Bytes

Pytomation

Pytomation is a automation made with python for solve a particular problem of my job

Setup Project

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