how to uchoose to scrape particular tag in python code example
Example: scrape all the p tags in a python
article = ''for i in content.findAll('p'): article = article + ' ' + i.text
article = ''for i in content.findAll('p'): article = article + ' ' + i.text