项目作者: Scifabric

项目描述 :
PYBOSSA command line client
高级语言: Python
项目地址: git://github.com/Scifabric/pbs.git
创建时间: 2014-07-01T16:17:29Z
项目社区:https://github.com/Scifabric/pbs

开源协议:GNU Affero General Public License v3.0

下载


Travis CI
Code Health
Coverage Status Downloads Version

PBS - a PYBOSSA command line interface

pbs is a very simple command line interface to a PYBOSSA server. It allows
you to create projects, add tasks (from a CSV, JSON, PO or a PROPERTIES file) with a nice
progress bar, delete them and update the project templates
(tutorial, task_presenter, and descriptions) all from the command line.

Requirements

PYBOSSA server >= 2.3.7.

Installation

pbs is available in Pypi, so you can install the software with pip:

  1. pip install pybossa-pbs

If you have all the dependencies, the package will be installed and you will be
able to use it from the command line. The command is: pbs.

If you want to hack on the code, just install it but with the —editable
flag after cloning the repository:

  1. git clone https://github.com/Scifabric/pbs.git
  2. cd pbs
  3. virtualenv env
  4. source env/bin/activate
  5. pip install --editable .

This will install the pbs package, and you’ll be able to modify it, patch it,
etc. If you improve it, please, let us know and share the code so we can
integrate it back ;-)

Configuring pbs

pbs is very handy when you work with one or two PYBOSSA servers. The best way
to configure it is creating a simple config file in your home folder:

  1. cd ~
  2. vim .pybossa.cfg

The file should have the following structure:

  1. [default]
  2. server: http://theserver.com
  3. apikey: yourkey

If you are working with more servers, add another section below it. For
example:

  1. [default]
  2. server: http://theserver.com
  3. apikey: yourkey
  4. [crowdcrafting]
  5. server: http://crowdcrafting.org
  6. apikey: yourkeyincrowdcrafting

By default pbs will use the credentials of the section default, so you don’t
have to type anything to use those values. However, if you want to do actions
in the other server all you have to do is the following:

  1. pbs --credentials crowdcrafting --help

That command will use the values of the crowdcrafting section.

Getting out of the API context

PYBOSSA by default returns first your projects, meaning that if you want to work
on a project that you don’t own, it will return an error as the project will not be
found. For solving this issue you have two options:

  • In the config file, by adding a new flag: all:1
  • On the command line, passing the —all=1 flag

Creating a project

Creating a project is very simple. All you have to do is create a file named
project.json with the following fields:

  1. {
  2. "name": "Flickr Person Finder",
  3. "short_name": "flickrperson",
  4. "description": "Image pattern recognition",
  5. "question": "Do you see a real human face in this photo?"
  6. }

If you use the name project.json you will not have to pass the file name
via an argument, as it’s the named used by default. Once you have the file
created, run the following command:

  1. pbs create_project

That command should create the project. If you want to see all the available
options, please check the —help command:

  1. pbs create_project --help

Adding tasks to a project

Adding tasks is very simple. You can have your tasks in three formats:

  • JSON
  • Excel (xlsx from 2010. It imports the first sheet)
  • CSV
  • PO (any po file that you want to translate)
  • PROPERTIES (any PROPERTIES file that you want to translate)

Therefore, adding tasks to your project is as simple as this command:

  1. pbs add_tasks --tasks-file tasks_file.json

If you want to see all the available
options, please check the —help command:

NOTE: By default PYBOSSA servers use a rate limit for avoiding abuse of the
API. For this reason, you can only do usually 300 requests per every 15
minutes. If you are going to add more than 300 tasks, pbs will detect it and
warn you, auto-enabling the throttling for you to respect the limits.

  1. pbs add_tasks --help

Updating project templates

Now that you have added tasks, you can work in your templates. All you have to
do to add/update the templates to your project is running the following
command:

  1. pbs update_project

That command needs to have in the same folder where you are running it, the
following files:

  • template.html
  • long_description.md
  • tutorial.html

If you want to use another template, you can via arguments:

  1. pbs update_project --template /tmp/template.html

If you want to see all the available
options, please check the —help command:

  1. pbs update_project --help

Using an external JavaScript file

Since pbs >= 2.3.0, pbs will check for an external JavaScript file named bundle.js
or bundle.min.js. If any of those files exist, then, they will be added at the bottom
of your template (like you have been doing so far with your projects).

This solution allows you to use for example webpack plus babel to transpile your code,
minimize it and add it to your PYBOSSA project.

In order to use this solution, just transpile to a file named bundle.js or bundle.min.js.

NOTE If there’s a minified version of the file, bundle.min.js, that file will be always used
instead of bundle.js.

Auto-updating while developing a PYBOSSA project

At some point you will end up running lots of pbs update_project commands, as
you will be using your own editor for fixing CSS, HTML or JavaScript. For these
scenarios, pbs comes with a handy feature: —watch. This argument will tell pbs
to run update_project automatically when template.html, tutorial.html or
long_description.md are modified in the file system. As simple as that.

You can run it like this:

  1. pbs update_project --watch

And the output will be similar to this:

GIF of pbs in action

NOTE: this also works with bundle.js files :smile: Thus, you can have webpack
transpiling automatically your code, and pbs will update automatically your project
with the new code.

Updating tasks redundancy from a project

If you need it, you can update the redundancy of a task using its ID or all the
tasks skipping the ID. For example, to update the redundancy of one task to 5:

  1. pbs update-task-redundancy --task-id 34234 --redundancy 5

To update all of them:

  1. pbs update-task-redundancy --redundancy 5

Note: without the —redundancy argument it will revert the redundancy to
the default value: 30.

This last command will confirm that you want to update all the tasks.

If you want to see all the available
options, please check the —help command:

  1. pbs update-task-redundancy --help

Deleting tasks from a project

If you need it, you can delete all the tasks from your project, or only one
using its task.id. For deleting all the tasks, all you’ve to do is run the
following command:

  1. pbs delete_tasks

This command will confirm that you want to delete all the tasks and associated
task_runs.

If you want to see all the available
options, please check the —help command:

  1. pbs delete_tasks --help

Adding helping materials to a project

Adding helping materials is very simple. You can have your materials in three formats:

  • JSON
  • Excel (xlsx from 2010. It imports the first sheet)
  • CSV

Therefore, adding helping materials to your project is as simple as this command:

  1. pbs add_helpingmaterials
  2. --helping-materials-lfile file.xlsx --helping-type xlsx

If you want to see all the available
options, please check the —help command:

NOTE: By default PYBOSSA servers use a rate limit for avoiding abuse of the
API. For this reason, you can only do usually 300 requests per every 15
minutes. If you are going to add more than 300 tasks, pbs will detect it and
warn you, auto-enabling the throttling for you to respect the limits.

NOTE: PYBOSSA helping materials allows you to upload media files like videos,
images, or sounds to support your project tutorials. The command line pbs will check
for a column in your file with the name file_path so it can upload it first into
the server. Please, be sure that the file (or files) path is reachable from the
helping materials file.

  1. pbs add_helpingmaterials --help

Running the Tests

To run the test suite for pbs, first install note:

  1. apt-get install python-nose

To run all tests, execute the following from the pbs project directory:

  1. nosetests test

Documentation

You have more documentation, with real examples at
http://docs.pybossa.com.

Check the tutorial as
it uses pbs, and also its pbs section
in the site.

Copyright / License

Copyright (C) 2017 Scifabric LTD.

License: see LICENSE file.