Typically, developers import modules in python script by mentioning their name literally. Sometimes you may need to import python modules using string variables that contain their name. In this article, we will learn how to import python modules by string name.
How to Import Python Modules by String Name
If you are using python <2.7, then you can use __import__ command to import modules using string variables that contain their names.
Let us say you have the following list of strings where each string is a module name, as string.
moduleNames = ['sys', 'os', 're', 'unittest']
If you want to import only a single module using __import__ you can do so using the __import__ function directly. Here is an example to import only unittest module.
__import__('unittest', globals=globals())
Here is the command to easily import all the modules mentioned in the above list, using __import__.
modules = map(__import__, moduleNames)
Alternatively, and also for python >2.7 you can use importlib module to import modules by their name strings. Here is an example to import module os.path.
module = importlib.import_module('os.path')
In this article, we have learnt how to import python modules using their name string.
Also read:
Call Python Function by Name String
How to Save Git Username & Password
How to Get Classname of Instance in Python
How to Lock File in Python
How to Use Boolean Variables in Shell Script
Related posts:
How to Merge Folders & Directories in Python
How to Find Last Occurrence of Character in String in Python
How to Write List to File in Python
How to Check if Directory Exists in Python
How to Extract Tables from PDF in Python
How to Extract data from JSON File in Python
How to Schedule Task in Python
How to Use Sleep Function in Python

Sreeram has more than 10 years of experience in web development, Python, Linux, SQL and database programming.