We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72bc492 commit 9911d05Copy full SHA for 9911d05
zencoder/core.py
@@ -281,6 +281,13 @@ def details(self, job_id):
281
data = {'api_key': self.api_key}
282
return self.get(self.base_url + '/%s' % str(job_id), data=data)
283
284
+ def progress(self, job_id):
285
+ """
286
+ Gets the given output id's progress.
287
288
+ data = {'api_key': self.api_key}
289
+ return self.get(self.base_url + '/%s/progress' % str(job_id), data=data)
290
+
291
def resubmit(self, job_id):
292
"""
293
Resubmits a job
@@ -302,4 +309,3 @@ def delete(self, job_id):
302
309
303
310
return self.delete(self.base_url + '/%s' % str(job_id),
304
311
params=urlencode(data))
305
-
0 commit comments