Skip to content

Commit

Permalink
Merge branch 'master' of github.com:mmarquezs/My.Jdownloader-API-Pyth…
Browse files Browse the repository at this point in the history
…on-Library
  • Loading branch information
mmarquezs committed Sep 18, 2022
2 parents 18423ac + b2ac5d8 commit e43ff2e
Showing 1 changed file with 20 additions and 15 deletions.
35 changes: 20 additions & 15 deletions myjdapi/myjdapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -639,23 +639,27 @@ def __init__(self, device):

def query_links(self,
params=[{
"addedDate": True,
"bytesLoaded": True,
"bytesTotal": True,
"comment": True,
"status": True,
"enabled": True,
"maxResults": -1,
"startAt": 0,
"packageUUIDs": [],
"host": True,
"url": True,
"bytesloaded": True,
"speed": True,
"eta": True,
"extractionStatus": True,
"finished": True,
"finishedDate": True,
"host": True,
"jobUUIDs": [],
"maxResults": -1,
"packageUUIDs": [],
"password": True,
"priority": True,
"running": True,
"skipped": True,
"extractionStatus": True
"speed": True,
"startAt": 0,
"status": True,
"url": True
}]):
"""
Get the links in the download list
Expand All @@ -667,19 +671,20 @@ def query_packages(self,
params=[{
"bytesLoaded": True,
"bytesTotal": True,
"childCount": True,
"comment": True,
"enabled": True,
"eta": True,
"priority": True,
"finished": True,
"running": True,
"speed": True,
"status": True,
"childCount": True,
"hosts": True,
"saveTo": True,
"maxResults": -1,
"packageUUIDs": [],
"priority": True,
"running": True,
"saveTo": True,
"speed": True,
"startAt": 0,
"status": True
}]):
"""
Get the packages in the download list
Expand Down

0 comments on commit e43ff2e

Please sign in to comment.