Print all meta tags found in page. Args: soup (object): Processed HTML object.
(soup: BeautifulSoup)
| 181 | |
| 182 | |
| 183 | def 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 | |
| 195 | def writer(datasets, dataset_names, output_dir): |