有没有办法从内存中导入一个模块,例如,如果我要在数据库中存储一个 python 模块,然后查询它,有没有办法将该字符串导入当前本地范围而不将其写入磁盘?例如:
db 中的模块(作为字符串):
def lol(x):
return x
访问:
def import_into_this_func_scope():
x= query_from_db()
import x
x.lol("hello world")
有没有办法从内存中导入一个模块,例如,如果我要在数据库中存储一个 python 模块,然后查询它,有没有办法将该字符串导入当前本地范围而不将其写入磁盘?例如:
db 中的模块(作为字符串):
def lol(x):
return x
访问:
def import_into_this_func_scope():
x= query_from_db()
import x
x.lol("hello world")