Data Retrival
Budget: £20 – £250 GBP
This is a python scraping job to gather data from a url and put into a clean csv including a link to the original image url.
Objective is to scrape the data from this url
https://apps.proni.gov.uk/ulstercovenant/
and collect the following fields
Surname
Forename(s)
Address, Division
District
Place of Signing
Agent
View (url link to image file)
In addition impute if the row is male or female by imputation based on the first letter of the image url
(Female can be imputed by looking at the first letter of the image=’W or M’ https://apps.proni.gov.uk/ulstercovenant/image.aspx?image=W0048330010
where the prefix of the letter 'W' would indicate its from the female database
https://apps.proni.gov.uk/ulstercovenant/image.aspx?image=M0046130010
where the prefix of the letter 'M' would indicate its from the male database of images )
Outputs
csv data file with one header row denoting field names incl female / male designation
Scraping Code in python
Objective is to scrape the data from this url
https://apps.proni.gov.uk/ulstercovenant/
and collect the following fields
Surname
Forename(s)
Address, Division
District
Place of Signing
Agent
View (url link to image file)
In addition impute if the row is male or female by imputation based on the first letter of the image url
(Female can be imputed by looking at the first letter of the image=’W or M’ https://apps.proni.gov.uk/ulstercovenant/image.aspx?image=W0048330010
where the prefix of the letter 'W' would indicate its from the female database
https://apps.proni.gov.uk/ulstercovenant/image.aspx?image=M0046130010
where the prefix of the letter 'M' would indicate its from the male database of images )
Outputs
csv data file with one header row denoting field names incl female / male designation
Scraping Code in python