If we go to: https://pypi.org/project/bs4/ we can read:
This is a dummy package managed by the developer of Beautiful Soup to prevent name squatting. The official name of PyPI’s Beautiful Soup Python package is beautifulsoup4. This package ensures that if you type pip install bs4 by mistake you will end up with Beautiful Soup.
So given the following line in python: from bs4 import BeautifulSoup, Comment
How can I replace it with beautifulsoup4
? ie I don't want to install bs4 package at all as it's just a dummy package as claimed...