Tagged Questions
Scrapy is a fast high-level screen scraping and web crawling framework, used to crawl websites and extract structured data from their pages. It can be used for a wide range of purposes, from data mining to monitoring and automated testing.
12
votes
2answers
1k views
Is it worth learning Scrapy?
I'm a big fan of Python and currently I have taken a lot of interest in web-scraping.
At the moment I rely on the elegant combination of Mechanize and Beautiful Soup to automate almost all of my ...
9
votes
2answers
1k views
Access django models inside of Scrapy
Is it possible to access my django models inside of a Scrapy pipeline, so that I can save my scraped data straight to my model?
I've seen this, but I don't really get how to set it up?
7
votes
4answers
1k views
Best way for a beginner to learn screen scraping with python
This might be one of thoose questions that are difficult to answer, but here goes:
I dont consider my self programmer - but I would like to :-) I've learned R, because I was sick and tired of spss, ...
7
votes
3answers
940 views
Scrapy SgmlLinkExtractor is ignoring allowed links
Please take a look at this spider example in Scrapy documentation. The explanation is:
This spider would start crawling example.com’s home page, collecting category links, and item links, parsing ...
6
votes
2answers
988 views
Scrapy - how to manage cookies/sessions
I'm a bit confused as to how cookies work with Scrapy, and how you manage those cookies.
This is basically a simplified version of what I'm trying to do:
The way the website works:
When you ...
6
votes
1answer
1k views
How to use CrawlSpider from scrapy to click a link with javascript onclick?
I want scrapy to crawl pages where going to the next one link looks like this:
Next
Will scrapy be able to interpret javascript code of that?
With livehttpheaders extension I found out that ...
6
votes
4answers
2k views
Using one Scrapy spider for several websites
I need to create a user configurable web spider/crawler, and I'm thinking about using Scrapy. But, I can't hard-code the domains and allowed URL regex:es -- this will instead be configurable in a GUI.
...
6
votes
1answer
1k views
Python Scrapy , how to define a pipeline for an item?
I am using scrapy to craw diferent sites, for each site I have an Item (different information is extracted)
Well, for example I have a generic pipeline (most of information is the same) but now I am ...
5
votes
1answer
199 views
Replay a Scrapy spider on stored data
I have started using Scrapy to scrape a few websites. If I later add a new field to my model or change my parsing functions, I'd like to be able to "replay" the downloaded raw data offline to scrape ...
5
votes
2answers
304 views
Click a Button in Scrapy
I'm using Scrapy to crawl a webpage. Some of the information I need only pops up when you click on a certain button (of course also appears in the HTML code after clicking).
I found out that Scrapy ...
5
votes
1answer
210 views
Scrapy Unit Testing
I'd like to implement some unit tests in a Scrapy (screen scraper/web crawler). Since a project is run through the "scrapy crawl" command I can run it through something like nose. Since scrapy is ...
5
votes
2answers
497 views
Websocket Server with twisted and Python doing complex jobs in the background
I want to code a Server which handles Websocket Clients while doing mysql selects via sqlalchemy and scraping several Websites on the same time (scrapy). The received data has to be calculated, saved ...
5
votes
3answers
647 views
Crawling with an authenticated session in Scrapy
In my previous question, I wasn't very specific over my problem (scraping with an authenticated session with Scrapy), in the hopes of being able to deduce the solution from a more general answer. I ...
5
votes
2answers
782 views
Scrapy - parse a page to extract items - then follow and store item url contents
I have a question on how to do this thing in scrapy. I have a spider that crawls for listing pages of items.
Every time a listing page is found, with items, there's the parse_item() callback that is ...
5
votes
2answers
1k views
recursive crawling with Python and Scrapy
I'm using scrapy to crawl a site. The site has 15 listings per page and then has a next button. I am running into an issue where my Request for the next link is being called before I am finished ...
5
votes
2answers
2k views
How to build a web crawler based on Scrapy to run forever?
I want to build a web crawler based on Scrapy to grab news pictures from several news portal website. I want to this crawler to be:
Run forever
Means it will periodical re-visit some portal pages ...
4
votes
1answer
218 views
How can I stop a scrapy CrawlSpider and later resume where it left-off?
I have a Scrapy CrawlSpider that has a very large list of URLs to crawl. I would like to be able to stop it, saving the current status and resume it later without having to start over. Is there a way ...
4
votes
4answers
825 views
Best web graph crawler for speed?
For the past month I've been using Scrapy for a web crawling project I've begun.
This project involves pulling down the full document content of all web pages in a single domain name that are ...
4
votes
2answers
689 views
Scrapy - Follow RSS links
I was wondering if anyone ever tried to extract/follow RSS item links using
SgmlLinkExtractor/CrawlSpider. I can't get it to work...
I am using the following rule:
rules = (
...
4
votes
5answers
2k views
Scrapy SgmlLinkExtractor question
I am trying to make the SgmlLinkExtractor to work.
This is the signature:
SgmlLinkExtractor(allow=(), deny=(), allow_domains=(), deny_domains=(), restrict_xpaths(), tags=('a', 'area'), ...
3
votes
2answers
180 views
Being a good citizen and web-scraping
I have a two part question.
First, I'm writing a web-scraper based on the CrawlSpider spider in Scrapy. I'm aiming to scrape a website that has many thousands (possible into the hundreds of ...
3
votes
1answer
43 views
Python Regular Expression- Selecting value based on surounding patterns
I have scraped a webpage using Scrapy and need to extract the background color from certain objects. Because inline-css is not part of the DOM, or so I have read, I need to create a regex that will ...
3
votes
2answers
239 views
Saving Django model from Scrapy project
I have a Scrapy project and I am trying to save the output items as an object from a Django model definition (I am not using DjangoItem).
I am importing Django settings as specified here.
def ...
3
votes
4answers
444 views
Scrapy Crawl URLs in Order
So, my problem is relatively simple. I have one spider crawling multiple sites, and I need it to return the data in the order I write it in my code. It's posted below.
from scrapy.spider import ...
3
votes
1answer
702 views
Using Scrapy with authenticated (logged in) user session
In the Scrapy docs, there is the following example to illustrate how to use an authenticated session in Scrapy:
class LoginSpider(BaseSpider):
name = 'example.com'
start_urls = ...
3
votes
1answer
342 views
Using multiple spiders at in the project in Scrapy
I wanna know if it is possible to use multiple spiders within the same project together. Actually I need 2 spiders. The first one gathers the links on which the second spider should scrape. They both ...
3
votes
2answers
460 views
Force my scrapy spider to stop crawling
is there a chance to stop crawling when specific if condition is true (like scrap_item_id == predefine_value ). My problem is similar to Scrapy - how to identify already scraped urls but I want to ...
3
votes
3answers
911 views
How to install libxml2 in virtualenv?
I have virtualenv with --no-site-packages option. I'm using scrapy in it. Scrapy uses libxml2 by import libxml2. How to install libxml2 in virtualenv using pip or easy_install?
3
votes
2answers
657 views
Error installing scrapy on Mac Os X 10.6
Trying to install Scrapy on Mac OSX 10.6 using this guide:
When running these commands from Terminal:
cd libxml2-2.7.3/python
sudo make install
I get the following error:
Making install in .
...
3
votes
2answers
908 views
How to remove expired items from database with Scrapy
I am using spidering a video site that expires content frequently. I am considering using scrapy to do my spidering, but am not sure how to delete expired items.
Strategies to detect if an item is ...
2
votes
1answer
58 views
How to retry for 404 link not found in scrapy?
Some sites give 404 error temporarily. But I paste in on browser it works.
How to tell scrapy to retry the 404 status code links for 5 times.
2
votes
0answers
57 views
Managing multiple spiders with scrapy
I am creating an aggregator and I started with scrapy as my initial tool set.
First I only had a few spiders, but as the project grows it seems like I may have hundreds or even a thousand different ...
2
votes
2answers
156 views
Can scrapy be used to scrape dynamic content from websites that are using AJAX?
I have recently been learning Python and am dipping my hand into building a web-scraper. It's nothing fancy at all; its only purpose is to get the data off of a betting website and have this data put ...
2
votes
1answer
100 views
Scrapy is following and scraping non-allowed links
I have a CrawlSpider set up to following certain links and scrape a news magazine where the links to each issue follow the following URL scheme:
http://example.com/YYYY/DDDD/index.htm where YYYY is ...
2
votes
1answer
153 views
Scrapy on Windows XP ImportError: No module named w3lib.html
I just tried installing and running scrapy on my PC at work, which runs Windows XP.
If I run scrapy startproject myproject I will get the following error:
ImportError: No module named w3lib.html
...
2
votes
2answers
219 views
python's scrapy doesn't seem to get data from all available URLs
I'm trying to scrape thesession.org to create a table of how many times each tune has been added to memeber's tunebooks so I can find some popular pieces to learn. I've started with the scrapy ...
2
votes
1answer
151 views
How to combine scrapy and htmlunit to crawl urls with javascript
I'm working on Scrapy to crawl pages,however,I can't handle the pages with javascript.
People suggest me to use htmlunit, so I got it installed,but I don't know how to use it at all.Dose anyone can ...
2
votes
1answer
261 views
Python site crawler, saving files with Scrapy
I'm attempting to write a crawler that will take a certain search entry and saving a whole bunch of .CSV files correlated to the results.
I already have the spider logging in, parsing all the html ...
2
votes
1answer
441 views
Problem logging into Facebook with Scrapy
(I have asked this question on the Scrapy google-group without luck.)
I am trying to log into Facebook using Scrapy. I tried the following in the interactive shell:
I set the headers and created a ...
2
votes
1answer
60 views
Why would you open an xml file in binary mode for editing in Python?
According to Pydocs,
fp = file('blah.xml', 'w+b')
or
fp = file('blah.xml', 'wb')
means open the file in write and binary mode. This is an xml file, however, so why do these two chaps
...
2
votes
3answers
148 views
How do you extract an embedded attribute value from a previous attribute value in an XPath query?
I'm trying to "select" the link from the onclick attribute in the following portion of html
<span onclick="Javascript:document.quickFindForm.action='/blah_blah'"
...
2
votes
3answers
474 views
Python Scrapy: Convert relative paths to absolute paths
I have amended the code based on solutions offered below by the great folks here; I get the error shown below the code here.
from scrapy.spider import BaseSpider
from scrapy.selector import ...
2
votes
1answer
456 views
Running Scrapy from a script - Hangs
I'm trying to run scrapy from a script as discussed here. It suggested using this snippet, but when I do it hangs indefinitely. This was written back in version .10; is it still compatible with the ...
2
votes
1answer
200 views
Python Scrapy : allowed_domains adding new domains from database
I need to add more domains to allowed_domains , so I dnt get the " Filtered offsite request to ".
My app gets urls to fetch from a database, so I cant add them manually.
I tried to override the ...
2
votes
1answer
342 views
Scrapy output feed international unicode characters (e.g. Japanese chars)
I'm a newbie to python and scrapy and I'm following the dmoz tutorial. As a minor variant to the tutorial's suggested start URL, I chose a Japanese category from the dmoz sample site and noticed that ...
2
votes
1answer
451 views
Ruby alternative to Scrapy?
Is there a Ruby-based alternative to Scrapy? http://doc.scrapy.org/intro/overview.html
2
votes
3answers
720 views
Unicode and UTF-8 encoding issue with Scrapy XPath selector text
I'm using Scrapy and Python (as part of a Django project) to scrape a site with German content. I've libxml2 installed as the backend for Scrapy selectors. If I extract the word 'Hüftsitz' (this is ...
2
votes
2answers
475 views
XPath: Select Current and Next Node's text by Current Node Attributes
First of all, this is a spawn from my previous question. I have posted this again because I was advised to do so by the person whose answer I accepted in the original post as he felt that the question ...
2
votes
1answer
249 views
Dynamically add to allowed_domains in a Scrapy spider
I have a spider that starts with a small list of allowed_domains at the beginning of the spidering. I need to add more domains dynamically to this whitelist as the spidering continues from within a ...
2
votes
1answer
617 views
Problem using scrapy to scrape a yahoo group
I'm new to web scraping and just started experimenting with Scrapy, a scraping framework written in Python. My goal is to scrape an old Yahoo Group since they don't provide an API or any other means ...