BeautifulSoup, select text to extract












0















I would like to scrape some quotes and authors but haven't found a way to separate the quote from the author during scraping.



import requests
from bs4 import BeautifulSoup

#url = 'https://www.goodreads.com/quotes'
#r = requests.get(url)
#soup = BeautifulSoup(r.content, 'html.parser')

html = """
<div class="quoteText">&ldquo;Insanity is doing the same thing, over and over again, but expecting different results.&rdquo; <br> ―
<span class="authorOrTitle">Narcotics Anonymous</span>
</div>
"""

soup = BeautifulSoup(html, 'html.parser')

quotes = soup.find_all('div', {'class': 'quoteText'})

for quote in quotes:
if quote.text is not None:
print(quote.text)









share|improve this question



























    0















    I would like to scrape some quotes and authors but haven't found a way to separate the quote from the author during scraping.



    import requests
    from bs4 import BeautifulSoup

    #url = 'https://www.goodreads.com/quotes'
    #r = requests.get(url)
    #soup = BeautifulSoup(r.content, 'html.parser')

    html = """
    <div class="quoteText">&ldquo;Insanity is doing the same thing, over and over again, but expecting different results.&rdquo; <br> ―
    <span class="authorOrTitle">Narcotics Anonymous</span>
    </div>
    """

    soup = BeautifulSoup(html, 'html.parser')

    quotes = soup.find_all('div', {'class': 'quoteText'})

    for quote in quotes:
    if quote.text is not None:
    print(quote.text)









    share|improve this question

























      0












      0








      0








      I would like to scrape some quotes and authors but haven't found a way to separate the quote from the author during scraping.



      import requests
      from bs4 import BeautifulSoup

      #url = 'https://www.goodreads.com/quotes'
      #r = requests.get(url)
      #soup = BeautifulSoup(r.content, 'html.parser')

      html = """
      <div class="quoteText">&ldquo;Insanity is doing the same thing, over and over again, but expecting different results.&rdquo; <br> ―
      <span class="authorOrTitle">Narcotics Anonymous</span>
      </div>
      """

      soup = BeautifulSoup(html, 'html.parser')

      quotes = soup.find_all('div', {'class': 'quoteText'})

      for quote in quotes:
      if quote.text is not None:
      print(quote.text)









      share|improve this question














      I would like to scrape some quotes and authors but haven't found a way to separate the quote from the author during scraping.



      import requests
      from bs4 import BeautifulSoup

      #url = 'https://www.goodreads.com/quotes'
      #r = requests.get(url)
      #soup = BeautifulSoup(r.content, 'html.parser')

      html = """
      <div class="quoteText">&ldquo;Insanity is doing the same thing, over and over again, but expecting different results.&rdquo; <br> ―
      <span class="authorOrTitle">Narcotics Anonymous</span>
      </div>
      """

      soup = BeautifulSoup(html, 'html.parser')

      quotes = soup.find_all('div', {'class': 'quoteText'})

      for quote in quotes:
      if quote.text is not None:
      print(quote.text)






      python python-3.x web-scraping beautifulsoup






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 18 at 16:14









      ReneRene

      231111




      231111
























          2 Answers
          2






          active

          oldest

          votes


















          2














          You can try to use stripped_strings property:



          for quote in quotes:
          if quote.text is not None:
          strings = [string for string in quote.stripped_strings]
          quote_body = strings[0]
          quote_author = strings[2]
          print(quote_body)
          print(quote_author)





          share|improve this answer



















          • 1





            Very handy. I didn't know about this +

            – QHarr
            Jan 18 at 17:56



















          0














          import requests
          from bs4 import BeautifulSoup

          #url = 'https://www.goodreads.com/quotes'
          #r = requests.get(url)
          #soup = BeautifulSoup(r.content, 'html.parser')

          html = """
          <div class="quoteText">&ldquo;Insanity is doing the same thing, over and over again, but expecting different results.&rdquo; <br> ―
          <span class="authorOrTitle">Narcotics Anonymous</span>
          </div>
          """

          soup = BeautifulSoup(html, 'html.parser')

          quotes = soup.find_all('div', {'class': 'quoteText'})

          for quote in quotes:
          if quote.text is not None:
          quote_ = quote.text
          quote_data = quote_.split(" ―")
          quote_without_author = quote_data[0]
          quote_author = quote_data[1]
          print(quote_without_author.strip())
          print(quote_author.strip())


          You can split the data on ―, so is the [0] element your quote and [1] your author.



          Output:



          “Insanity is doing the same thing, over and over again, but expecting different results.”
          Narcotics Anonymous





          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%2f54257688%2fbeautifulsoup-select-text-to-extract%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            2














            You can try to use stripped_strings property:



            for quote in quotes:
            if quote.text is not None:
            strings = [string for string in quote.stripped_strings]
            quote_body = strings[0]
            quote_author = strings[2]
            print(quote_body)
            print(quote_author)





            share|improve this answer



















            • 1





              Very handy. I didn't know about this +

              – QHarr
              Jan 18 at 17:56
















            2














            You can try to use stripped_strings property:



            for quote in quotes:
            if quote.text is not None:
            strings = [string for string in quote.stripped_strings]
            quote_body = strings[0]
            quote_author = strings[2]
            print(quote_body)
            print(quote_author)





            share|improve this answer



















            • 1





              Very handy. I didn't know about this +

              – QHarr
              Jan 18 at 17:56














            2












            2








            2







            You can try to use stripped_strings property:



            for quote in quotes:
            if quote.text is not None:
            strings = [string for string in quote.stripped_strings]
            quote_body = strings[0]
            quote_author = strings[2]
            print(quote_body)
            print(quote_author)





            share|improve this answer













            You can try to use stripped_strings property:



            for quote in quotes:
            if quote.text is not None:
            strings = [string for string in quote.stripped_strings]
            quote_body = strings[0]
            quote_author = strings[2]
            print(quote_body)
            print(quote_author)






            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Jan 18 at 16:28









            AnderssonAndersson

            38.5k103266




            38.5k103266








            • 1





              Very handy. I didn't know about this +

              – QHarr
              Jan 18 at 17:56














            • 1





              Very handy. I didn't know about this +

              – QHarr
              Jan 18 at 17:56








            1




            1





            Very handy. I didn't know about this +

            – QHarr
            Jan 18 at 17:56





            Very handy. I didn't know about this +

            – QHarr
            Jan 18 at 17:56













            0














            import requests
            from bs4 import BeautifulSoup

            #url = 'https://www.goodreads.com/quotes'
            #r = requests.get(url)
            #soup = BeautifulSoup(r.content, 'html.parser')

            html = """
            <div class="quoteText">&ldquo;Insanity is doing the same thing, over and over again, but expecting different results.&rdquo; <br> ―
            <span class="authorOrTitle">Narcotics Anonymous</span>
            </div>
            """

            soup = BeautifulSoup(html, 'html.parser')

            quotes = soup.find_all('div', {'class': 'quoteText'})

            for quote in quotes:
            if quote.text is not None:
            quote_ = quote.text
            quote_data = quote_.split(" ―")
            quote_without_author = quote_data[0]
            quote_author = quote_data[1]
            print(quote_without_author.strip())
            print(quote_author.strip())


            You can split the data on ―, so is the [0] element your quote and [1] your author.



            Output:



            “Insanity is doing the same thing, over and over again, but expecting different results.”
            Narcotics Anonymous





            share|improve this answer




























              0














              import requests
              from bs4 import BeautifulSoup

              #url = 'https://www.goodreads.com/quotes'
              #r = requests.get(url)
              #soup = BeautifulSoup(r.content, 'html.parser')

              html = """
              <div class="quoteText">&ldquo;Insanity is doing the same thing, over and over again, but expecting different results.&rdquo; <br> ―
              <span class="authorOrTitle">Narcotics Anonymous</span>
              </div>
              """

              soup = BeautifulSoup(html, 'html.parser')

              quotes = soup.find_all('div', {'class': 'quoteText'})

              for quote in quotes:
              if quote.text is not None:
              quote_ = quote.text
              quote_data = quote_.split(" ―")
              quote_without_author = quote_data[0]
              quote_author = quote_data[1]
              print(quote_without_author.strip())
              print(quote_author.strip())


              You can split the data on ―, so is the [0] element your quote and [1] your author.



              Output:



              “Insanity is doing the same thing, over and over again, but expecting different results.”
              Narcotics Anonymous





              share|improve this answer


























                0












                0








                0







                import requests
                from bs4 import BeautifulSoup

                #url = 'https://www.goodreads.com/quotes'
                #r = requests.get(url)
                #soup = BeautifulSoup(r.content, 'html.parser')

                html = """
                <div class="quoteText">&ldquo;Insanity is doing the same thing, over and over again, but expecting different results.&rdquo; <br> ―
                <span class="authorOrTitle">Narcotics Anonymous</span>
                </div>
                """

                soup = BeautifulSoup(html, 'html.parser')

                quotes = soup.find_all('div', {'class': 'quoteText'})

                for quote in quotes:
                if quote.text is not None:
                quote_ = quote.text
                quote_data = quote_.split(" ―")
                quote_without_author = quote_data[0]
                quote_author = quote_data[1]
                print(quote_without_author.strip())
                print(quote_author.strip())


                You can split the data on ―, so is the [0] element your quote and [1] your author.



                Output:



                “Insanity is doing the same thing, over and over again, but expecting different results.”
                Narcotics Anonymous





                share|improve this answer













                import requests
                from bs4 import BeautifulSoup

                #url = 'https://www.goodreads.com/quotes'
                #r = requests.get(url)
                #soup = BeautifulSoup(r.content, 'html.parser')

                html = """
                <div class="quoteText">&ldquo;Insanity is doing the same thing, over and over again, but expecting different results.&rdquo; <br> ―
                <span class="authorOrTitle">Narcotics Anonymous</span>
                </div>
                """

                soup = BeautifulSoup(html, 'html.parser')

                quotes = soup.find_all('div', {'class': 'quoteText'})

                for quote in quotes:
                if quote.text is not None:
                quote_ = quote.text
                quote_data = quote_.split(" ―")
                quote_without_author = quote_data[0]
                quote_author = quote_data[1]
                print(quote_without_author.strip())
                print(quote_author.strip())


                You can split the data on ―, so is the [0] element your quote and [1] your author.



                Output:



                “Insanity is doing the same thing, over and over again, but expecting different results.”
                Narcotics Anonymous






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Jan 18 at 16:17









                madik_atmamadik_atma

                305116




                305116






























                    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%2f54257688%2fbeautifulsoup-select-text-to-extract%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

                    Liquibase includeAll doesn't find base path

                    How to use setInterval in EJS file?

                    Petrus Granier-Deferre