8 lines
200 B
Python
8 lines
200 B
Python
|
from pathlib import Path
|
||
|
|
||
|
from lightning.app.components.python import PopenPythonScript
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
comp = PopenPythonScript(Path(__file__).parent / "pl_script.py")
|
||
|
comp.run()
|