PowerTools/main.py

17 lines
481 B
Python
Raw Normal View History

2022-05-22 22:47:33 +01:00
import pathlib
import subprocess
2022-07-30 21:33:31 +01:00
import asyncio
import os
2022-04-18 22:21:51 +01:00
2022-07-30 21:33:31 +01:00
HOME_DIR = str(pathlib.Path(os.getcwd()).parent.parent.resolve())
PARENT_DIR = str(pathlib.Path(__file__).parent.resolve())
2022-04-30 02:01:24 +01:00
class Plugin:
2022-07-30 21:33:31 +01:00
backend_proc = None
2022-04-18 22:21:51 +01:00
# Asyncio-compatible long-running code, executed in a task when the plugin is loaded
async def _main(self):
2022-07-30 21:33:31 +01:00
# startup
self.backend_proc = subprocess.Popen([PARENT_DIR + "/bin/backend"])
2022-05-13 19:01:48 +01:00
while True:
2022-07-30 21:33:31 +01:00
asyncio.sleep(1)