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;








0















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










share|improve this question




























    0















    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










    share|improve this question
























      0












      0








      0








      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










      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 22 at 17:26









      jeanjean

      649




      649






















          1 Answer
          1






          active

          oldest

          votes


















          2














          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.






          share|improve this answer

























            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
            );



            );













            draft saved

            draft discarded


















            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









            2














            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.






            share|improve this answer





























              2














              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.






              share|improve this answer



























                2












                2








                2







                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.






                share|improve this answer















                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.







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Mar 22 at 19:20

























                answered Mar 22 at 17:57









                Luiz Rodrigues da SilvaLuiz Rodrigues da Silva

                2664




                2664





























                    draft saved

                    draft discarded
















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript