Skip to content

Retrieve assessement data for a charter school network via a spider to follow hyperlinks that will download files containing testing results.

Notifications You must be signed in to change notification settings

Scipio94/State-Assessment-Data-Spider

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

State Assessment Data Spider

There are three parts to creating this Spider:

1. Importing the proper packagaes:

  • import scrapy
  • from scrapy import Selector
  • import requests as r
  • from scrapy.crawler import CrawlerProcess

2. Creating the Spider:

class SpiderClassName(scrapy.Spider):
  name = 'SpiderName'
  def start_requests(self):
    # code here
  def parse(self, response):
    #code here

3. Running Spider

process = CrawlerProcess()  #--> instansiating process
process.crawl(SpiderClassName) #--> telling process which Spider to run
process.start() #--> running spider

About

Retrieve assessement data for a charter school network via a spider to follow hyperlinks that will download files containing testing results.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published