Last active
          May 3, 2024 16:07 
        
      - 
      
- 
        Save Kiwibp/f5582e790ab1b391318bf921482e9a15 to your computer and use it in GitHub Desktop. 
    Craigslist Spider for Webscraping Projecgt
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import scrapy | |
| class CraigslistWebscrapingItem(scrapy.Item): | |
| name = scrapy.Field() | |
| price = scrapy.Field() | |
| location = scrapy.Field() | |
| date = scrapy.Field() | |
| from scrapy import Spider | |
| from scrapy.selector import Selector | |
| from craigslist_webscraping.items import CraigslistWebscrapingItem | |
| class ProjectSpider(Spider): | |
| name = "craigsspider" | |
| allowed_domains = ["craigslist.org"] | |
| start_urls = ["https://asheville.craigslist.org/search/sss"] | |
| def parse(self, response): | |
| posts = response.xpath('//*[@id="sortable-results"]/ul/li').extract() | |
| for post in posts: | |
| name = Selector(text=post).xpath('//li/p/a/text()').extract() | |
| price = Selector(text=post).xpath('//li/p/span/span[@class="result-price"]/text()').extract() | |
| location = Selector(text=post).xpath('//li/p/span/span[@class="result-hood"]/text()').extract() | |
| date = Selector(text=post).xpath('//li/p/time/text()').extract() | |
| item = CraigslistWebscrapingItem() | |
| item['name'] = name | |
| item['price'] = price | |
| item['location'] = location | |
| item['date'] = date | |
| yield item | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment