I am trying to use eval to load. It does not work as in just running it. See Python shell:
The version is: python3.6m
>>>> eval( 'import re' )
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<string>", line 1
import re
^
SyntaxError: invalid syntax
>>> import re
>>>