10-04-2019, 10:06 AM
I see, I misunderstood you question,
what about putting your main script in the tactic script editor or in the custom python_path specified in tactic-conf.xml and then call it from an outside script using the xmlrpc api only to fire up up you main script inside tactic.
The external script would just do:
this should launch "path_in_tactic_script_editor/mass_notification" server side in tactic.
what about putting your main script in the tactic script editor or in the custom python_path specified in tactic-conf.xml and then call it from an outside script using the xmlrpc api only to fire up up you main script inside tactic.
The external script would just do:
Code:
server.execute_python_script("path_in_tactic_script_editor/mass_notification", kwargs={'test_arg': 'test'})
this should launch "path_in_tactic_script_editor/mass_notification" server side in tactic.