如果我有两个文件 helper.app 和 main.app,我希望能够完成这样的事情。
助手.py
def configurestuff(dblocationstring):
# Stuff that sets name and location
generic_connection_variable = connectto(dblocationstring)
def dostuff():
# does stuff with the generic_connection_variable
在我的 main.py 中,我希望能够做类似的事情
import helper
helper.configure("customlocationofdb")
helper.dostuff()
#or even
helper.generic_connection_variable.someApplicableMethod()
我的目标是让我可以拥有一个 main.app,它能够使用“帮助器”传递变量来建立连接并在导入帮助器后在 main.app 中重用该变量(如果可能)。组织我的代码以完成此任务的最佳方法是什么?(我不确定如何在我的 main.py 中访问 generic_connection_variable,因为它在函数中,或者最好的方法是什么)