Files
github-actions[bot] 3dcc048299 sunnypilot v2026.002.000 release
date: 2026-06-19T21:43:27
master commit: 5d90689776fdc7a3be31fc1335003aee20a2ba62
2026-06-19 21:43:47 +08:00

21 lines
666 B
Python

"""
Copyright (c) 2021-, Haibin Wen, sunnypilot, and a number of other contributors.
This file is part of sunnypilot and is licensed under the MIT License.
See the LICENSE.md file in the root directory for more details.
"""
from cereal import messaging, custom
if __name__ == "__main__":
sm = messaging.SubMaster(["modelManagerSP"])
while True:
sm.update(500)
if sm.updated:
msg = sm["modelManagerSP"]
for model in msg.selectedBundle.models:
if model.downloadProgress.status == custom.ModelManagerSP.DownloadStatus.downloading:
print("")
print(f"{model.fileName}: {model.downloadProgress}")
print("")