コード例 #1
0
 def add_photo_tasks(app):
     # First of all we get the URL photos
     # Then, we have to create a set of tasks for the application
     # For this, we get first the photo URLs from Flickr
     photos = get_flickr_photos()
     question = app_config['question']
     [create_photo_task(app, p, question) for p in photos]
コード例 #2
0
ファイル: createTasks.py プロジェクト: PyBossa/app-magicicada
 def add_photo_tasks(app):
     # First of all we get the URL photos
     # Then, we have to create a set of tasks for the application
     # For this, we get first the photo URLs from Flickr
     photos = get_flickr_photos()
     question = app_config['question']
     [create_photo_task(app, p, question) for p in photos]
コード例 #3
0
            link=photo["link"],
            url_m=photo["url_m"],
            url_b=photo["url_b"],
        )
        pbclient.create_task(app.id, task_info)

    if options.create_app:
        pbclient.create_app(app_config["name"], app_config["short_name"], app_config["description"])

        app = setup_app()

        # First of all we get the URL photos
        # Then, we have to create a set of tasks for the application
        # For this, we get first the photo URLs from Flickr

        photos = get_flickr_photos()
        question = app_config["question"]
        # Batch creation
        for i in xrange(1):
            [create_photo_task(app, p, question) for p in photos]
    else:
        if options.add_more_tasks:

            app = find_app_by_short_name()
            photos = get_flickr_photos()
            question = "Do you see a human in this photo?"
            [create_photo_task(app, p, question) for p in photos]

    if options.update_template:
        print "Updating app template"
        # discard return value
コード例 #4
0
                         link=photo['link'],
                         url_m=photo['url_m'],
                         url_b=photo['url_b'])
        pbclient.create_task(app.id, task_info)

    if options.create_app:
        pbclient.create_app(app_config['name'], app_config['short_name'],
                            app_config['description'])

        app = setup_app()

        # First of all we get the URL photos
        # Then, we have to create a set of tasks for the application
        # For this, we get first the photo URLs from Flickr

        photos = get_flickr_photos()
        question = app_config['question']
        # Batch creation
        for i in xrange(1):
            [create_photo_task(app, p, question) for p in photos]
    else:
        if options.add_more_tasks:

            app = find_app_by_short_name()
            photos = get_flickr_photos()
            question = "Do you see a human in this photo?"
            [create_photo_task(app, p, question) for p in photos]

    if options.update_template:
        print "Updating app template"
        # discard return value