is there any way to extract content-tags from web pages?

Viewed 21

Websites like stackoverflow, github etc. allow users to tag their content;

For example this question is tagged with python, web-scrapping etc.

Similarly, this repo on github is tagged with npm, crawler, scraper, automation etc.

and this article is tagged with Career, tips, motivation, resources etc.

Is there any way or any tool available to extract these tags from html?

1 Answers

I think, 'Yes, You can.' There are some python libraries for web-scrapping. You can install 'requests' and 'beautifulSoup' using pip.

Related