当前位置: 首页>>代码示例>>Python>>正文


Python Job.input_path方法代码示例

本文整理汇总了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')
开发者ID:npajoni,项目名称:tubuceta,代码行数:36,代码来源:views.py

示例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')
开发者ID:npajoni,项目名称:tubuceta,代码行数:30,代码来源:views.py

示例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') 
开发者ID:emilianobilli,项目名称:tarecho,代码行数:28,代码来源:views.py

示例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')
开发者ID:emilianobilli,项目名称:tarecho,代码行数:30,代码来源:views.py


注:本文中的models.Job.input_path方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。