33d5cfc393
date: 2025-12-18T23:23:16 master commit: 3cdee7b54718ee14bd85befd6c5bad3d699c5479
8 lines
173 B
Python
Executable File
8 lines
173 B
Python
Executable File
#!/usr/bin/env python3
|
|
from panda import Panda
|
|
|
|
if __name__ == "__main__":
|
|
for p in Panda.list():
|
|
pp = Panda(p)
|
|
print(f"{pp.get_serial()[0]}: {pp.get_version()}")
|