Use: if "sys" not in dir(): print("sys not imported!")
To check all the installed Python modules, we can use the following two commands with the 'pip': Using 'pip freeze' command. Using 'pip list command.
Running "python -v"from the command line tells you what is being imported and from where. This is useful if you want to know the location of built in modules.
Test for the module name in the sys.modules
dictionary:
import sys
modulename = 'datetime'
if modulename not in sys.modules:
print 'You have not imported the {} module'.format(modulename)
From the documenation:
This is a dictionary that maps module names to modules which have already been loaded.
Note that an import
statement does two things:
sys.modules
), then it is loaded and added to sys.modules
.The expression modulename not in sys.modules
tests if step 1 has taken place. Testing for the result of step 2 requires knowing what exact import
statement was used as they set different names to reference different objects:
import modulename
sets modulename = sys.modules['modulename']
import packagename.nestedmodule
sets packagename = sys.modules['packagename']
(no matter how many addional levels you add)import modulename as altname
sets altname = sys.module['modulename']
import packagename.nestedmodule as altname
sets altname = sys.modules['packagename.nestedmodule']
from somemodule import objectname
sets objectname = sys.modules['somemodule'].objectname
from packagename import nestedmodulename
sets nestedmodulename = sys.modules['packagename.nestedmodulename']
(only when there was no object named nestedmodulename
in the packagename
namespace before this import, an additional name for the nested module is added to the parent package namespace at this point)from somemodule import objectname as altname
sets altname = sys.modules['somemodule'].objectname
from packagename import nestedmodulename as altname
sets altname = sys.modules['packagename.nestedmodulename']
(only when there was no object named nestedmodulename
in the packagename
namespace before this import, an additional name for the nested module is added to the parent package namespace at this point)You can test if the name to which the imported object was bound exists in a given namespace:
# is this name visible in the current scope:
'importedname' in dir()
# or, is this a name in the globals of the current module:
'importedname' in globals()
# or, does the name exist in the namespace of another module:
'importedname' in globals(sys.modules['somemodule'])
This only tells you of the name exists (has been bound), not if it refers to a specific module or object from that module. You could further introspect that object or test if it’s the same object as what’s available in sys.modules
, if you need to rule out that the name has been set to something else entirely since then.
To the sys.modules answers accepted, I'd add one caveat to be careful about renaming modules on import:
>>> import sys
>>> import datetime as dt
>>> 'dt' in sys.modules
False
>>> 'datetime' in sys.modules
True
use sys.modules to test if a module has been imported (I'm using unicodedata as an example):
>>> import sys
>>> 'unicodedata' in sys.modules
False
>>> import unicodedata
>>> 'unicodedata' in sys.modules
True
sys.modules
contains all modules used anywhere in the current instance of the interpreter and so shows up if imported in any other Python module.
dir()
checks whether the name was defined in the current namespace.
The combination of the 2 is more safe than each separate and works as long you didn't define a copy
yourself.
if ('copy' in sys.modules) and ('copy' in dir()):
if "sys" not in dir():
print("sys not imported!")
Edit: Thanks to user vaultah. This works well at the beginning (top) of the code, but should be carefully used, in case another object with name sys is created.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With