本文整理汇总了Python中models.Job.input_path方法的典型用法代码示例。如果您正苦于以下问题:Python Job.input_path方法的具体用法?Python Job.input_path怎么用?Python Job.input_path使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.Job
的用法示例。
在下文中一共展示了Job.input_path方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: bmanager_post_job
# 需要导入模块: from models import Job [as 别名]
# 或者: from models.Job import input_path [as 别名]
def bmanager_post_job(request):
jsonData =json.loads(request.body)
job = Job()
job.basename = jsonData['job']['basename']
job.format = jsonData['job']['format']
job.input_filename = jsonData['job']['input_filename']
job.input_path = jsonData['job']['input_path']
try:
job.profile = Profile.objects.get(name=jsonData['job']['profile'])
except ObjectDoesNotExist:
status = http_NOT_FOUND
return HttpResponse(json.dumps({'message': 'Profile not found'}), status=status, content_type='application/json')
dest_list = []
destinations = jsonData['job']['destinations']
for destination in destinations:
try:
dest_list.append(Destination.objects.get(name=destination))
#job.destinations.add(Destination.objects.get(name=destination))
except ObjectDoesNotExist:
status = http_NOT_FOUND
return HttpResponse(json.dumps({'message': 'Destination not found'}), status=status,content_type='application/json')
job.save()
job.destinations = dest_list
#job.save()
response = {"job": {"id": job.id, "basename": job.basename}}
status = http_POST_OK
return HttpResponse(json.dumps(response), status=status, content_type='application/json')
示例2: bpusher_PostJob
# 需要导入模块: from models import Job [as 别名]
# 或者: from models.Job import input_path [as 别名]
def bpusher_PostJob(request):
jsonData = json.loads(request.body)
try:
destination = Destination.objects.get(name=jsonData['job']['destination'])
except ObjectDoesNotExist:
status = http_NOT_FOUND
return HttpResponse(json.dumps({'message': 'Destination not found'}), status=status, content_type='application/json')
job = Job()
job.name = jsonData['job']['name']
job.input_name = jsonData['job']['input_name']
job.system_path = jsonData['job']['system_path']
job.input_path = jsonData['job']['input_path']
job.destination = destination
job.priority = jsonData['job']['priority']
job.status = 'Q' # Queue
job.save()
response = {"job": {"id": job.id, "name": job.name}}
#
# La unica respuesta para esto es OK
status = http_POST_OK
return HttpResponse(json.dumps(response), status=status, content_type='application/json')
示例3: elemento_PostJob
# 需要导入模块: from models import Job [as 别名]
# 或者: from models.Job import input_path [as 别名]
def elemento_PostJob(request):
jsonData = json.loads(request.body)
job = Job()
job.input_filename = jsonData['job']['input_filename']
job.input_path = jsonData['job']['input_path']
job.name = jsonData['job']['name']
job.basename = jsonData['job']['basename']
if 'hls_preset_id' in jsonData['job']:
job.hls_preset_id = jsonData['job']['hls_preset_id']
if 'h264_preset_id' in jsonData['job']:
job.h264_preset_id = jsonData['job']['h264_preset_id']
job.priority = jsonData['job']['priority']
job.output_path = jsonData['job']['output_path']
job.system_path = jsonData['job']['system_path']
job.status = 'Q' # Queue
job.save()
response = {"job": {"id": job.id, "name": job.name}}
#
# La unica respuesta para esto es OK
status = http_POST_OK
return HttpResponse(json.dumps(response), status=status, content_type='application/json')
示例4: imen_PostJob
# 需要导入模块: from models import Job [as 别名]
# 或者: from models.Job import input_path [as 别名]
def imen_PostJob(request):
jsonData = json.loads(request.body)
try:
preset = ThumbPreset.objects.get(name=jsonData['job']['thumb_preset'])
except ObjectDoesNotExist:
status = http_NOT_FOUND
return HttpResponse(json.dumps({'message': 'ThumbPreset not found'}), status=status, content_type='application/json')
job = Job()
job.input_filename = jsonData['job']['input_filename']
job.input_path = jsonData['job']['input_path']
job.basename = jsonData['job']['basename']
job.thumb_preset = preset
job.priority = jsonData['job']['priority']
job.output_path = jsonData['job']['output_path']
job.status = 'Q' # Queue
job.save()
response = {"job": {"id": job.id}}
#
# La unica respuesta para esto es OK
status = http_POST_OK
return HttpResponse(json.dumps(response), status=status, content_type='application/json')