Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2018-02-26 10:31:39 -05:00
parent e5ea5ec632
commit cb44f80b2e
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -77,7 +77,7 @@ class BaseParser:
@property
def full_text(self):
"""The full text content (including links) of the element."""
return self.pq.text_content()
return self.lxml.text_content()
def find(self, selector, first=False, _encoding=None):
"""Given a jQuery selector, returns a list of element objects."""
+1 -1
View File
@@ -17,7 +17,7 @@ DESCRIPTION = 'HTML Parsing for Humans.'
URL = 'https://github.com/kennethreitz/requests-html'
EMAIL = 'me@kennethreitz.org'
AUTHOR = 'Kenneth Reitz'
VERSION = '0.3.0'
VERSION = '0.3.1'
# What packages are required for this module to be executed?
REQUIRED = [