3
5

More than 3 years have passed since last update.

pythonモジュールがimport済みかどうかを確認する方法

Posted at

標準ライブラリ sys で確認できる.

チェックのためだけのスクリプトを用意.
module_checker.py

import sys
import subprocess

if "subprocess" in sys.modules:
    print("module already imported")
else:
    print("module not imported")
$ python module_checker.py
module already imported
import sys
# import subprocess

if "subprocess" in sys.modules:
    print("module already imported")
else:
    print("module not imported")
$ python module_checker.py
module not imported
3
5
1

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
3
5