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 316734b commit 470b7a0Copy full SHA for 470b7a0
zencoder/core.py
@@ -289,6 +289,10 @@ def details(self, job_id):
289
data = {'api_key': self.api_key}
290
return self.get(self.base_url + '/%s' % str(job_id), data=data)
291
292
+ def progress(self, job_id):
293
+ data = {'api_key': self.api_key}
294
+ return self.get(self.base_url + '/%s/progress' % str(job_id), data=data)
295
+
296
def resubmit(self, job_id):
297
"""
298
Resubmits a job
0 commit comments