Currently, I am attempting to scrape job skills from the Wuzzuf website using the following code snippet:
result = requests.get("https://wuzzuf.net/search/jobs/?q=data+analysis&a=navbl")
src = result.content
soup = BeautifulSoup(src, "lxml")
job_skills = soup.find_all("div", {"class": "css-y4udm8"})
However, the code retrieves all information within the division. My goal is to extract only the elements containing <a>
tags from the same div
with the class = "css-y4udm8"
.