Skip to content

Aniruddhsinh03/ePlanningDemo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ePlanningDemo

This is a Scrapy project to scrape eplanning website and extract agent details from http://eplanning.ie/.

This project is only meant for educational purposes.

Selection

Main Site

Image of MainSite

Country Url Selection

Image of MainSite

Select Received Application

Image of ReceivedApplication

Form Request Data

Image of FormRequestData

Application URL

Image of MainSite

New Page URL

Image of MainSite

Select Agent Button

Image of MainSite

Select Agent Data

Image of MainSite

Extracted data

This project extracts Agent Data. The extracted data looks like this sample:

 {
  "name": "  Sean Boyle Architects",
  "address": [
  "Unit 3, Second Floor",
  "Donohoe Building, Kennedy Centre",
  "Kennedy Road, Navan",
  "Co. Meath "
  ],
  "phone": "046 9023797 ",
  "fax": " ",
  "email": "info@boylearchitects.ie",
 "url": "http://www.eplanning.ie/MeathCC/AppFileRefDetails/aa200649/0"
 }

Spiders

This project contains one spider and you can list them using the list command:

$ scrapy list
eplanningSpider

Spider extract the data from ePlanning Site.

Running the spiders

You can run a spider using the scrapy crawl command, such as:

$ scrapy crawl eplanningSpider

If you want to save the scraped data to a file, you can pass the -o option:

$ scrapy crawl eplanningSpider -o output.json