vittoriotriassi / jobs_scraper

Simple job postings scraper for Indeed based on requests and BeautifulSoup
MIT License
14 stars 3 forks source link

bs4 is not the beautifulsoup package #2

Closed astrowonk closed 2 years ago

astrowonk commented 2 years ago

You are requiring "bs4" but that's the wrong pypi package name. https://pypi.org/project/bs4/

You want to require beautifulsoup4

vittoriotriassi commented 2 years ago

Hi there! As you mentioned, that's a dummy package that would install beautifulsoup4 eventually. As pointed out at your link: "This package ensures that if you type pip install bs4 by mistake you will end up with Beautiful Soup."

I noticed you forked the repo so you may have already replaced it with beautifulsoup4.

Cheers :)