1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

pip listにあるbeautifulsoup4とbs4の違い

Posted at

Webスクレイピングをするさいにモジュールをインストール。

import requests
from bs4 import BeautifulSoup

モジュールは一体どこからきたのかをコマンドプロンプトで探す。

>pip list
beautifulsoup4            4.12.2
bs4                       0.0.1

beautifulsoupとbs4の違いはなに?

調べる

参考 

引用
どちらでもBeautifulSoup4が利用できますが、”pip install BeautifulSoup”の場合、古いバージョン(3)がインストールされ可能性があります。

BeautifulSoup4は、bs4ライブラリのモジュール(一部)であるためbs4でインストールすれば間違いはないです。

結論
bs4のなかにBeautifulSoup4が存在する。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?