atlassian-api / atlassian-python-api

Atlassian Python REST API wrapper
https://atlassian-python-api.readthedocs.io
Apache License 2.0
1.29k stars 642 forks source link

#1295 BUGFIX - bs4 vs beautifulsoup4 #1300

Closed zbika73 closed 5 months ago

zbika73 commented 5 months ago

beautifulsoup4 is a package name, while import must be from bs4 - according to BS docs Correct: from bs4 import BeautifulSoup Wrong: from beautifulsoup4 import BeautifulSoup

Dependency on package beautifulsoup4 - as in requirements.txt file (not used up to now for wheel build)