From 44e86f34d02dbec891cceca9474977dcd8dc1af4 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 27 Feb 2018 20:30:04 -0500 Subject: [PATCH] learn more Signed-off-by: Kenneth Reitz --- requests_html.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/requests_html.py b/requests_html.py index 6e699a7..d5890a2 100644 --- a/requests_html.py +++ b/requests_html.py @@ -220,7 +220,9 @@ class Element(BaseParser): @property def attrs(self) -> dict: - """Returns a dictionary of the attributes of the :class:`Element `.""" + """Returns a dictionary of the attributes of the :class:`Element ` + (`learn more `_). + """ attrs = {k: self.pq.attr[k].strip() for k in self.element.keys()} # Split class up, as there are ussually many of them: