def get_body()

in modules/url_content_fetcher.py [0:0]


    def get_body(self):
        """
        Get the body of a HTML content
        """
        if self.soup is None:
            self.read_and_soup()
        if not self.success or self.soup.body is None:
            return ""
        return self.soup.body.getText()