Using Beautiful Soup module, how can I get data of a div tag whose class name is feeditemcontent cxfeeditemcontent? Is it:
soup.cla
soup.findAll("div", class_="feeditemcontent cxfeeditemcontent")
So, If I want to get all div tags of class header It is already in bs4 documentation.from bs4 import BeautifulSoup as bs
import requests
url = "http://stackoverflow.com/"
html = requests.get(url).text
soup = bs(html)
tags = soup.findAll("div", class_="header")