Using scrapy on ENFAST Europe’s Most Wanted List
ENFAST publishes a list of most wanted criminals here: https://eumostwanted.eu/
- use some web extraction technique to extract information from each individual on the list.
- the script should contain some error logging, making it possible to trace errors by reading the log file
- the result should be a well formed table, one row per individual, containing various data points, including name, first name, last name, date of birth, gender, nationality, crime, and state of case.
Task was solved by using python scrapy package:
$ pip install scrapy
file 1 containing scraper and file 2 data wrangling