mirror of
https://github.com/KeksPirates/SoftwareManager.git
synced 2026-08-03 17:39:42 +02:00
24 lines
604 B
Python
24 lines
604 B
Python
from core.utils.data.state import state
|
|
from core.utils.network.download import run_download_direct
|
|
|
|
def split_data(data):
|
|
|
|
count = data.count
|
|
downloads = data.data
|
|
|
|
return count, downloads
|
|
|
|
def check_completed(downloads, resume):
|
|
for download in downloads:
|
|
if download.completed == False:
|
|
if state.debug:
|
|
print(f"Found unfinished download: {download.title}")
|
|
if resume == True:
|
|
run_download_direct(download.magnet_uri)
|
|
if state.debug:
|
|
print(f"Resuming {download.title}")
|
|
|
|
|
|
|
|
|