1
0
Fork 0
mirror of https://github.com/dbarzin/pandora-box.git synced 2025-07-19 13:29:42 +02:00
pandora-box/tests/scan.py
2022-06-11 14:52:33 +00:00

26 lines
455 B
Python
Executable file

#!/usr/bin/python3
import pypandora
import time
import sys
pp = pypandora.PyPandora(root_url= 'http://127.0.0.1:6100')
for arg in sys.argv[1:]:
print(arg,end='',flush=True)
print(":",end='',flush=True)
res = pp.submit_from_disk(arg)
while True:
print('.',end='',flush=True)
time.sleep(1)
res = pp.task_status(res['taskId'])
if res['status']!='WAITING':
break
print(res['status'])