lightning/examples/app_components/python/component_popen.py

8 lines
193 B
Python

from pathlib import Path
from lightning.app.components import PopenPythonScript
if __name__ == "__main__":
comp = PopenPythonScript(Path(__file__).parent / "pl_script.py")
comp.run()