You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
349 B
19 lines
349 B
# Environnement virtuel pour python
|
|
python3 -m venv scrapy-env
|
|
|
|
(unix-like) source scrapy-env/bin/activate
|
|
|
|
(windows) tutorial-env\Scripts\activate.bat
|
|
|
|
# Installation des dépendances
|
|
python -m pip install --upgrade pip
|
|
|
|
python -m pip install regex
|
|
|
|
python -m pip install scrapy
|
|
|
|
# Lancement de scrapy
|
|
cd src
|
|
|
|
scrapy crawl perils -O perils.csv
|