I am making a program where a user can save a file, load it back, and name the file the way they want.
How can I dynamically import all attributes of that module?
E.g. something like the pseudocode below:
module_name = input()
from module_name import *
Assume module_name
ends with ".py".
I am using python 3.5.