在Python中是否可以调用当前脚本中未创建的另一个运行对象的功能?
例如,我正在运行此对象。...
class One: # object of this class was created
def __init__(self):
thread.start() # 24/7 running
def wanted_function(self):
... # does something helpful
然后,我启动第二个脚本以访问其功能
class Two:
... # access "wanted_function()" of One
两个脚本都在同一台计算机上运行。当前,我正在使用文件系统在两个脚本之间交换信息。但是,这显然不理想。