Skip to content

Commit e43ff2e

Browse files
committed
Merge branch 'master' of github.com:mmarquezs/My.Jdownloader-API-Python-Library
2 parents 18423ac + b2ac5d8 commit e43ff2e

File tree

1 file changed

+20
-15
lines changed

1 file changed

+20
-15
lines changed

myjdapi/myjdapi.py

+20-15
Original file line numberDiff line numberDiff line change
@@ -639,23 +639,27 @@ def __init__(self, device):
639639

640640
def query_links(self,
641641
params=[{
642+
"addedDate": True,
643+
"bytesLoaded": True,
642644
"bytesTotal": True,
643645
"comment": True,
644-
"status": True,
645646
"enabled": True,
646-
"maxResults": -1,
647-
"startAt": 0,
648-
"packageUUIDs": [],
649-
"host": True,
650-
"url": True,
651-
"bytesloaded": True,
652-
"speed": True,
653647
"eta": True,
648+
"extractionStatus": True,
654649
"finished": True,
650+
"finishedDate": True,
651+
"host": True,
652+
"jobUUIDs": [],
653+
"maxResults": -1,
654+
"packageUUIDs": [],
655+
"password": True,
655656
"priority": True,
656657
"running": True,
657658
"skipped": True,
658-
"extractionStatus": True
659+
"speed": True,
660+
"startAt": 0,
661+
"status": True,
662+
"url": True
659663
}]):
660664
"""
661665
Get the links in the download list
@@ -667,19 +671,20 @@ def query_packages(self,
667671
params=[{
668672
"bytesLoaded": True,
669673
"bytesTotal": True,
674+
"childCount": True,
670675
"comment": True,
671676
"enabled": True,
672677
"eta": True,
673-
"priority": True,
674678
"finished": True,
675-
"running": True,
676-
"speed": True,
677-
"status": True,
678-
"childCount": True,
679679
"hosts": True,
680-
"saveTo": True,
681680
"maxResults": -1,
681+
"packageUUIDs": [],
682+
"priority": True,
683+
"running": True,
684+
"saveTo": True,
685+
"speed": True,
682686
"startAt": 0,
687+
"status": True
683688
}]):
684689
"""
685690
Get the packages in the download list

0 commit comments

Comments
 (0)