mirror of
https://github.com/dbarzin/pandora-box.git
synced 2025-07-18 21:09:41 +02:00
25 lines
492 B
Python
Executable file
25 lines
492 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, seed_expire=3600)
|
|
print(res)
|
|
|
|
while True:
|
|
print(".", end="", flush=True)
|
|
time.sleep(1)
|
|
|
|
res = pp.task_status(res["taskId"])
|
|
|
|
if res["status"] != "WAITING":
|
|
break
|
|
|
|
print(res["status"])
|