Python
でモジュールのパスを取得するには、__file__
を使うのが一般的です。以下のコードでモジュールのパスを確認できます。
import some_module
print(some_module.__file__)
inspect
モジュールも利用できます。例えば、inspect.getfile(some_module)
を使えば、モジュールのソースファイルのパスが取得できます。
Python
でモジュールのパスを取得するには、__file__
を使うのが一般的です。以下のコードでモジュールのパスを確認できます。
import some_module
print(some_module.__file__)
inspect
モジュールも利用できます。例えば、inspect.getfile(some_module)
を使えば、モジュールのソースファイルのパスが取得できます。