Some tools to retrieve and manage SEO data
It can be done in two ways
-
(Recomended) use requirements.txt (*)
pip install -r requirements.txt
-
(Manual) install each python library individually
pip install beautifulsoup4 pip install requests pip install lxml pip install cloudscraper
NOTE: in wsl enviroment could be necesary to create a virtual env, in this case proceded as follow:
python3 -m venv path/to/venv
cd path/to/venv
source bin/activate