.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
searx.utils._HTMLTextExtractor Class Reference
+ Inheritance diagram for searx.utils._HTMLTextExtractor:
+ Collaboration diagram for searx.utils._HTMLTextExtractor:

Public Member Functions

 __init__ (self)
 
 handle_starttag (self, tag, attrs)
 
 handle_endtag (self, tag)
 
 is_valid_tag (self)
 
 handle_data (self, data)
 
 handle_charref (self, name)
 
 handle_entityref (self, name)
 
 get_text (self)
 
 error (self, message)
 

Public Attributes

list result = []
 
list tags = []
 

Detailed Description

Internal class to extract text from HTML

Definition at line 83 of file utils.py.

Constructor & Destructor Documentation

◆ __init__()

searx.utils._HTMLTextExtractor.__init__ ( self)

Definition at line 86 of file utils.py.

86 def __init__(self):
87 HTMLParser.__init__(self)
88 self.result = []
89 self.tags = []
90

Member Function Documentation

◆ error()

searx.utils._HTMLTextExtractor.error ( self,
message )

Definition at line 132 of file utils.py.

132 def error(self, message):
133 # error handle is needed in <py3.10
134 # https://github.com/python/cpython/pull/8562/files
135 raise AssertionError(message)
136
137

◆ get_text()

searx.utils._HTMLTextExtractor.get_text ( self)

Definition at line 129 of file utils.py.

129 def get_text(self):
130 return ''.join(self.result).strip()
131

References result.

◆ handle_charref()

searx.utils._HTMLTextExtractor.handle_charref ( self,
name )

Definition at line 113 of file utils.py.

113 def handle_charref(self, name):
114 if not self.is_valid_tag():
115 return
116 if name[0] in ('x', 'X'):
117 codepoint = int(name[1:], 16)
118 else:
119 codepoint = int(name)
120 self.result.append(chr(codepoint))
121

References is_valid_tag(), and result.

+ Here is the call graph for this function:

◆ handle_data()

searx.utils._HTMLTextExtractor.handle_data ( self,
data )

Definition at line 108 of file utils.py.

108 def handle_data(self, data):
109 if not self.is_valid_tag():
110 return
111 self.result.append(data)
112

References is_valid_tag(), and result.

+ Here is the call graph for this function:

◆ handle_endtag()

searx.utils._HTMLTextExtractor.handle_endtag ( self,
tag )

Definition at line 96 of file utils.py.

96 def handle_endtag(self, tag):
97 if not self.tags:
98 return
99
100 if tag != self.tags[-1]:
101 raise _HTMLTextExtractorException()
102
103 self.tags.pop()
104

References tags.

◆ handle_entityref()

searx.utils._HTMLTextExtractor.handle_entityref ( self,
name )

Definition at line 122 of file utils.py.

122 def handle_entityref(self, name):
123 if not self.is_valid_tag():
124 return
125 # codepoint = htmlentitydefs.name2codepoint[name]
126 # self.result.append(chr(codepoint))
127 self.result.append(name)
128

References is_valid_tag(), and result.

+ Here is the call graph for this function:

◆ handle_starttag()

searx.utils._HTMLTextExtractor.handle_starttag ( self,
tag,
attrs )

Definition at line 91 of file utils.py.

91 def handle_starttag(self, tag, attrs):
92 self.tags.append(tag)
93 if tag == 'br':
94 self.result.append(' ')
95

References result, and tags.

◆ is_valid_tag()

searx.utils._HTMLTextExtractor.is_valid_tag ( self)

Definition at line 105 of file utils.py.

105 def is_valid_tag(self):
106 return not self.tags or self.tags[-1] not in _BLOCKED_TAGS
107

References tags.

Referenced by handle_charref(), handle_data(), and handle_entityref().

+ Here is the caller graph for this function:

Member Data Documentation

◆ result

searx.utils._HTMLTextExtractor.result = []

Definition at line 88 of file utils.py.

Referenced by get_text(), handle_charref(), handle_data(), handle_entityref(), and handle_starttag().

◆ tags

list searx.utils._HTMLTextExtractor.tags = []

Definition at line 89 of file utils.py.

Referenced by handle_endtag(), handle_starttag(), and is_valid_tag().


The documentation for this class was generated from the following file: