Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 975 Bytes

README.md

File metadata and controls

24 lines (14 loc) · 975 Bytes

What's this

This is a simple python 3 script that parses all the project links on https://www.cantierecreativo.net/portfolio/, then scrapes the project name and the brief description. The information is then stored in a .csv file, in the format "Name (Description)".

This script uses the libraries BeautifulSoup4 and requests, which can be installed via pip

pip install beautifulsoup4
pip install requests

or using

pip install -r requirements.txt

Click here to download Python 3.6. pip is already bundled with the Python package since 2.7.9+ or 3.4+, so there's no need to install it. Still, to make sure you have the last version, you can run

pip install -U pip

on macOS/Linux, or

python -m pip install -U pip

on Windows.