MCPcopy Index your code
hub / github.com/DedSecInside/TorBot / display_webpage_description

Function display_webpage_description

torbot/modules/info.py:183–192  ·  view source on GitHub ↗

Print all meta tags found in page. Args: soup (object): Processed HTML object.

(soup: BeautifulSoup)

Source from the content-addressed store, hash-verified

181
182
183def display_webpage_description(soup: BeautifulSoup) -> None:
184 """Print all meta tags found in page.
185
186 Args:
187 soup (object): Processed HTML object.
188 """
189 cprint("[*]Checking for meta tag", 'yellow')
190 metatags = soup.find_all('meta')
191 for meta in metatags:
192 print("Meta : ", meta)
193
194
195def writer(datasets, dataset_names, output_dir):

Callers 1

execute_allFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected