forked from Skyvern-AI/skyvern
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_streaming.py
38 lines (26 loc) · 907 Bytes
/
run_streaming.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import asyncio
import subprocess
import structlog
import typer
from skyvern.forge import app
from skyvern.forge.sdk.settings_manager import SettingsManager
INTERVAL = 1
LOG = structlog.get_logger()
async def run() -> None:
file_name = "skyvern_screenshot.png"
png_file_path = f"{SettingsManager.get_settings().STREAMING_FILE_BASE_PATH}/{file_name}"
while True:
# run subprocess to take screenshot
subprocess.run(
f"xwd -root | xwdtopnm 2>/dev/null | pnmtopng > {png_file_path}", shell=True, env={"DISPLAY": ":99"}
)
# upload screenshot to S3
try:
await app.STORAGE.save_streaming_file("placeholder_org", file_name)
except Exception:
LOG.info("Failed to save screenshot")
await asyncio.sleep(INTERVAL)
def main() -> None:
asyncio.run(run())
if __name__ == "__main__":
typer.run(main)