difference between response.selector.xpath and response.xpathHeadless Browser and scraping - solutionsWhy am I getting an empty array with (scrapy shell response.xpath())?How does Linkedin make difference between user requests and crawler requests?Pass value between methods through requests in ScrapyWhat is output difference between selectors response.xpath and response.css?How to perform one final request in scrapy after all requests are done?Scrapy : How do i select an element with xpath whose parent element belongs to several classesExtracting data from HTML table using scrapy: response.xpath() yields NoneScrapy - Simple div[@class] response.xpath attribute not returning dataScrapy Splash returns empty list
How can I print the prosodic symbols in LaTeX?
How to not starve gigantic beasts
Initiative: Do I lose my attack/action if my target moves or dies before my turn in combat?
Implications of cigar-shaped bodies having rings?
Are there physical dangers to preparing a prepared piano?
Dynamic SOQL query relationship with field visibility for Users
Apply MapThread to all but one variable
As an international instructor, should I openly talk about my accent?
"The cow" OR "a cow" OR "cows" in this context
Does tea made with boiling water cool faster than tea made with boiled (but still hot) water?
Rivers without rain
Elements other than carbon that can form many different compounds by bonding to themselves?
How to fry ground beef so it is well-browned
Can someone publish a story that happened to you?
Can I grease a crank spindle/bracket without disassembling the crank set?
Multiple options vs single option UI
Why do games have consumables?
Minor Revision with suggestion of an alternative proof by reviewer
What are the steps to solving this definite integral?
Can I criticise the more senior developers around me for not writing clean code?
How much cash can I safely carry into the USA and avoid civil forfeiture?
What makes accurate emulation of old systems a difficult task?
Is there really no use for MD5 anymore?
How did Captain America manage to do this?
difference between response.selector.xpath and response.xpath
Headless Browser and scraping - solutionsWhy am I getting an empty array with (scrapy shell response.xpath())?How does Linkedin make difference between user requests and crawler requests?Pass value between methods through requests in ScrapyWhat is output difference between selectors response.xpath and response.css?How to perform one final request in scrapy after all requests are done?Scrapy : How do i select an element with xpath whose parent element belongs to several classesExtracting data from HTML table using scrapy: response.xpath() yields NoneScrapy - Simple div[@class] response.xpath attribute not returning dataScrapy Splash returns empty list
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
From a performance standpoint, I would like to know the difference between
response.selector.xpath
and
response.xpath
Is there a case where a new http request is made and not the other one?
Thanks
scrapy
add a comment |
From a performance standpoint, I would like to know the difference between
response.selector.xpath
and
response.xpath
Is there a case where a new http request is made and not the other one?
Thanks
scrapy
add a comment |
From a performance standpoint, I would like to know the difference between
response.selector.xpath
and
response.xpath
Is there a case where a new http request is made and not the other one?
Thanks
scrapy
From a performance standpoint, I would like to know the difference between
response.selector.xpath
and
response.xpath
Is there a case where a new http request is made and not the other one?
Thanks
scrapy
scrapy
asked Mar 22 at 17:26
jeanjean
649
649
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
They are the same.
If you look into Scrapy code, response.xpath()
actually uses selector.xpath()
.
def xpath(self, query, **kwargs):
return self.selector.xpath(query, **kwargs)
Is there a case where a new http request is made and not the other
one?
Neither one generate a new http request.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55304889%2fdifference-between-response-selector-xpath-and-response-xpath%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
They are the same.
If you look into Scrapy code, response.xpath()
actually uses selector.xpath()
.
def xpath(self, query, **kwargs):
return self.selector.xpath(query, **kwargs)
Is there a case where a new http request is made and not the other
one?
Neither one generate a new http request.
add a comment |
They are the same.
If you look into Scrapy code, response.xpath()
actually uses selector.xpath()
.
def xpath(self, query, **kwargs):
return self.selector.xpath(query, **kwargs)
Is there a case where a new http request is made and not the other
one?
Neither one generate a new http request.
add a comment |
They are the same.
If you look into Scrapy code, response.xpath()
actually uses selector.xpath()
.
def xpath(self, query, **kwargs):
return self.selector.xpath(query, **kwargs)
Is there a case where a new http request is made and not the other
one?
Neither one generate a new http request.
They are the same.
If you look into Scrapy code, response.xpath()
actually uses selector.xpath()
.
def xpath(self, query, **kwargs):
return self.selector.xpath(query, **kwargs)
Is there a case where a new http request is made and not the other
one?
Neither one generate a new http request.
edited Mar 22 at 19:20
answered Mar 22 at 17:57
Luiz Rodrigues da SilvaLuiz Rodrigues da Silva
2664
2664
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55304889%2fdifference-between-response-selector-xpath-and-response-xpath%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown