{ "info": { "author": "Scifabric LTD", "author_email": "info@scifabric.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)", "Operating System :: OS Independent", "Programming Language :: Python" ], "description": "|Travis CI| |Code Health| |Coverage Status| |Downloads| |Version|\n\nPBS - a PYBOSSA command line interface\n======================================\n\n**pbs** is a very simple command line interface to a PYBOSSA server. It\nallows you to create projects, add tasks (from a CSV, JSON, PO or a\nPROPERTIES file) with a nice progress bar, delete them and update the\nproject templates (tutorial, task\\_presenter, and descriptions) all from\nthe command line.\n\nRequirements\n============\n\n`PYBOSSA server `__ >= 2.3.7.\n\nInstallation\n============\n\npbs is available in Pypi, so you can install the software with pip:\n\n.. code:: bash\n\n pip install pybossa-pbs\n\nIf you have all the dependencies, the package will be installed and you\nwill be able to use it from the command line. The command is: **pbs**.\n\nIf you want to hack on the code, just install it but with the\n**--editable** flag after cloning the repository:\n\n::\n\n git clone https://github.com/Scifabric/pbs.git\n cd pbs\n virtualenv env\n source env/bin/activate\n pip install --editable .\n\nThis will install the pbs package, and you'll be able to modify it,\npatch it, etc. If you improve it, please, let us know and share the code\nso we can integrate it back ;-)\n\nConfiguring pbs\n---------------\n\npbs is very handy when you work with one or two PYBOSSA servers. The\nbest way to configure it is creating a simple config file in your home\nfolder:\n\n.. code:: bash\n\n cd ~\n vim .pybossa.cfg\n\nThe file should have the following structure:\n\n.. code:: ini\n\n [default]\n server: http://theserver.com\n apikey: yourkey\n\nIf you are working with more servers, add another section below it. For\nexample:\n\n.. code:: ini\n\n [default]\n server: http://theserver.com\n apikey: yourkey\n\n [crowdcrafting]\n server: http://crowdcrafting.org\n apikey: yourkeyincrowdcrafting\n\nBy default pbs will use the credentials of the section default, so you\ndon't have to type anything to use those values. However, if you want to\ndo actions in the other server all you have to do is the following:\n\n.. code:: bash\n\n pbs --credentials crowdcrafting --help\n\nThat command will use the values of the crowdcrafting section.\n\nGetting out of the API context\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nPYBOSSA by default returns first your projects, meaning that if you want\nto work on a project that you don't own, it will return an error as the\nproject will not be found. For solving this issue you have two options:\n\n- In the config file, by adding a new flag: all:1\n- On the command line, passing the --all=1 flag\n\nCreating a project\n------------------\n\nCreating a project is very simple. All you have to do is create a file\nnamed **project.json** with the following fields:\n\n.. code:: json\n\n {\n \"name\": \"Flickr Person Finder\",\n \"short_name\": \"flickrperson\",\n \"description\": \"Image pattern recognition\",\n \"question\": \"Do you see a real human face in this photo?\"\n }\n\nIf you use the name **project.json** you will not have to pass the file\nname via an argument, as it's the named used by default. Once you have\nthe file created, run the following command:\n\n.. code:: bash\n\n pbs create_project\n\nThat command should create the project. If you want to see all the\navailable options, please check the **--help** command:\n\n.. code:: bash\n\n pbs create_project --help\n\nAdding tasks to a project\n-------------------------\n\nAdding tasks is very simple. You can have your tasks in three formats:\n\n- JSON\n- Excel (xlsx from 2010. It imports the first sheet)\n- CSV\n- PO (any po file that you want to translate)\n- PROPERTIES (any PROPERTIES file that you want to translate)\n\nTherefore, adding tasks to your project is as simple as this command:\n\n.. code:: bash\n\n pbs add_tasks --tasks-file tasks_file.json\n\nIf you want to see all the available options, please check the\n**--help** command:\n\n**NOTE**: By default PYBOSSA servers use a rate limit for avoiding abuse\nof the API. For this reason, you can only do usually 300 requests per\nevery 15 minutes. If you are going to add more than 300 tasks, pbs will\ndetect it and warn you, auto-enabling the throttling for you to respect\nthe limits.\n\n.. code:: bash\n\n pbs add_tasks --help\n\nUpdating project templates\n--------------------------\n\nNow that you have added tasks, you can work in your templates. All you\nhave to do to add/update the templates to your project is running the\nfollowing command:\n\n.. code:: bash\n\n pbs update_project\n\nThat command needs to have in the same folder where you are running it,\nthe following files:\n\n- template.html\n- long\\_description.md\n- tutorial.html\n\nIf you want to use another template, you can via arguments:\n\n.. code:: bash\n\n pbs update_project --template /tmp/template.html\n\nIf you want to see all the available options, please check the\n**--help** command:\n\n.. code:: bash\n\n pbs update_project --help\n\nUsing an external JavaScript file\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nSince pbs >= 2.3.0, pbs will check for an external JavaScript file named\n*bundle.js* or *bundle.min.js*. If any of those files exist, then, they\nwill be added at the bottom of your template (like you have been doing\nso far with your projects).\n\nThis solution allows you to use for example webpack plus babel to\ntranspile your code, minimize it and add it to your PYBOSSA project.\n\nIn order to use this solution, just transpile to a file named bundle.js\nor bundle.min.js.\n\n**NOTE** If there's a minified version of the file, bundle.min.js, that\nfile will be always used instead of bundle.js.\n\nAuto-updating while developing a PYBOSSA project\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nAt some point you will end up running lots of pbs update\\_project\ncommands, as you will be using your own editor for fixing CSS, HTML or\nJavaScript. For these scenarios, pbs comes with a handy feature:\n--watch. This argument will tell pbs to run update\\_project\nautomatically when template.html, tutorial.html or long\\_description.md\nare modified in the file system. As simple as that.\n\nYou can run it like this:\n\n.. code:: bash\n\n pbs update_project --watch\n\nAnd the output will be similar to this:\n\n.. figure:: http://i.imgur.com/QoYC4oV.gif\n :alt: GIF of pbs in action\n\n GIF of pbs in action\n\n**NOTE**: this also works with bundle.js files :smile: Thus, you can\nhave webpack transpiling automatically your code, and pbs will update\nautomatically your project with the new code.\n\nUpdating tasks redundancy from a project\n----------------------------------------\n\nIf you need it, you can update the redundancy of a task using its ID or\nall the tasks skipping the ID. For example, to update the redundancy of\none task to 5:\n\n.. code:: bash\n\n pbs update-task-redundancy --task-id 34234 --redundancy 5\n\nTo update all of them:\n\n.. code:: bash\n\n pbs update-task-redundancy --redundancy 5\n\n**Note**: without the --redundancy argument it will revert the\nredundancy to the default value: 30.\n\nThis last command will confirm that you want to update all the tasks.\n\nIf you want to see all the available options, please check the\n**--help** command:\n\n.. code:: bash\n\n pbs update-task-redundancy --help\n\nDeleting tasks from a project\n-----------------------------\n\nIf you need it, you can delete all the tasks from your project, or only\none using its task.id. For deleting all the tasks, all you've to do is\nrun the following command:\n\n.. code:: bash\n\n pbs delete_tasks\n\nThis command will confirm that you want to delete all the tasks and\nassociated task\\_runs.\n\nIf you want to see all the available options, please check the\n**--help** command:\n\n.. code:: bash\n\n pbs delete_tasks --help\n\nAdding helping materials to a project\n-------------------------------------\n\nAdding helping materials is very simple. You can have your materials in\nthree formats:\n\n- JSON\n- Excel (xlsx from 2010. It imports the first sheet)\n- CSV\n\nTherefore, adding helping materials to your project is as simple as this\ncommand:\n\n.. code:: bash\n\n pbs add_helpingmaterials\n --helping-materials-lfile file.xlsx --helping-type xlsx\n\nIf you want to see all the available options, please check the\n**--help** command:\n\n**NOTE**: By default PYBOSSA servers use a rate limit for avoiding abuse\nof the API. For this reason, you can only do usually 300 requests per\nevery 15 minutes. If you are going to add more than 300 tasks, pbs will\ndetect it and warn you, auto-enabling the throttling for you to respect\nthe limits.\n\n*NOTE*: PYBOSSA helping materials allows you to upload media files like\nvideos, images, or sounds to support your project tutorials. The command\nline pbs will check for a column in your file with the name *file\\_path*\nso it can upload it first into the server. Please, be sure that the file\n(or files) path is reachable from the helping materials file.\n\n.. code:: bash\n\n pbs add_helpingmaterials --help\n\nRunning the Tests\n-----------------\n\nTo run the test suite for pbs, first install\n`note `__:\n\n.. code:: bash\n\n apt-get install python-nose\n\nTo run all tests, execute the following from the pbs project directory:\n\n.. code:: bash\n\n nosetests test\n\nDocumentation\n=============\n\nYou have more documentation, with real examples at\nhttp://docs.pybossa.com.\n\nCheck the\n`tutorial `__ as\nit uses **pbs**, and also its\n`pbs `__ section in the\nsite.\n\nCopyright / License\n===================\n\nCopyright (C) 2017 `Scifabric LTD `__.\n\nLicense: see LICENSE file.\n\n.. |Travis CI| image:: https://travis-ci.org/Scifabric/pbs.svg?branch=master\n :target: https://travis-ci.org/#!/Scifabric/pbs\n.. |Code Health| image:: https://landscape.io/github/Scifabric/pbs/master/landscape.svg?style=flat\n :target: https://landscape.io/github/Scifabric/pbs/master\n.. |Coverage Status| image:: https://img.shields.io/coveralls/Scifabric/pbs.svg\n :target: https://coveralls.io/r/Scifabric/pbs?branch=master\n.. |Downloads| image:: https://img.shields.io/pypi/dm/pybossa-pbs.svg\n :target: https://pypi.python.org/pypi/pybossa-pbs/\n.. |Version| image:: https://img.shields.io/pypi/v/pybossa-pbs.svg\n :target: https://pypi.python.org/pypi/pybossa-pbs/\n\n\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/Scifabric/pbs", "keywords": "", "license": "AGPLv3", "maintainer": "", "maintainer_email": "", "name": "pybossa-pbs", "package_url": "https://pypi.org/project/pybossa-pbs/", "platform": "", "project_url": "https://pypi.org/project/pybossa-pbs/", "project_urls": { "Homepage": "https://github.com/Scifabric/pbs" }, "release_url": "https://pypi.org/project/pybossa-pbs/2.4.7/", "requires_dist": [ "Click (<2.4,>=2.3)", "pybossa-client (<1.2.2,>=1.2.1)", "requests", "nose", "mock", "coverage", "rednose", "pypandoc", "simplejson", "jsonschema", "polib", "watchdog", "openpyxl" ], "requires_python": "", "summary": "PYBOSSA command line client", "version": "2.4.7" }, "last_serial": 3617030, "releases": { "1.0": [ { "comment_text": "", "digests": { "md5": "0a9212755a4d308acc842754128bbd44", "sha256": "b22b86f36e17b85f0f33e29b3d0dca2f4d03b154e624ba02dcdc7b2e808dec74" }, "downloads": -1, "filename": "pybossa_pbs-1.0-py2-none-any.whl", "has_sig": false, "md5_digest": "0a9212755a4d308acc842754128bbd44", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 9751, "upload_time": "2014-07-04T07:31:45", "url": "https://files.pythonhosted.org/packages/1a/b2/dc43511f17be84bed4d94b32fa002763a66e0ff801304590abed254b747f/pybossa_pbs-1.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ccf2d3314f298075dbb7aaceb3f2a25d", "sha256": "93c963b4d798f2c4f66ff0a0c5eeba439ca9d43196d57afcda54fbe4f124ab6f" }, "downloads": -1, "filename": "pybossa-pbs-1.0.tar.gz", "has_sig": false, "md5_digest": "ccf2d3314f298075dbb7aaceb3f2a25d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9594, "upload_time": "2014-07-04T07:31:29", "url": "https://files.pythonhosted.org/packages/43/c3/4be7f40944f5071e6c91b1129a562367cdb4624b0b057c810193a1908f3a/pybossa-pbs-1.0.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "c8bc989550dbf67575ef97366d5e6271", "sha256": "b75fe35262550e79f9dd1eac07658fed53c9e61a74a7a48efce293b1a4d1df74" }, "downloads": -1, "filename": "pybossa-pbs-1.1.tar.gz", "has_sig": false, "md5_digest": "c8bc989550dbf67575ef97366d5e6271", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10144, "upload_time": "2014-07-04T08:32:29", "url": "https://files.pythonhosted.org/packages/dd/8d/8e43bf91690ffe35e83b22b357ec9f0856fbdd4f75ae9894ae6a305a3b85/pybossa-pbs-1.1.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "74198dc3e356fd0b316bd10c06481840", "sha256": "d4167b435a1214776d163301420224388dab2cc5d369d07d76647abbcbab40d6" }, "downloads": -1, "filename": "pybossa-pbs-1.2.tar.gz", "has_sig": false, "md5_digest": "74198dc3e356fd0b316bd10c06481840", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10187, "upload_time": "2014-07-04T08:56:20", "url": "https://files.pythonhosted.org/packages/d5/b1/62ea1ca381c63fdebd00b55059dc0639944f06c63f9100b54d89981e9ec5/pybossa-pbs-1.2.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "702c63f28647aafc83e9a9c1bbd73d50", "sha256": "bf4c8bd7e7f61a4b5624596a6e58c8a2be0608d72c65020d022c92fce6933a0e" }, "downloads": -1, "filename": "pybossa-pbs-1.3.tar.gz", "has_sig": false, "md5_digest": "702c63f28647aafc83e9a9c1bbd73d50", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10528, "upload_time": "2014-07-07T15:45:53", "url": "https://files.pythonhosted.org/packages/c5/de/c74ee0f0648bfb4df1bb44416e4e3b51798d1c8973b4543456f802f80ffe/pybossa-pbs-1.3.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "fa1780ca7f5ee479d0d92dac8786adcd", "sha256": "54602d81a548bc7eaa7f04ad366ea3a01837b60eda8ea20669f00e306a541c2f" }, "downloads": -1, "filename": "pybossa-pbs-1.4.tar.gz", "has_sig": false, "md5_digest": "fa1780ca7f5ee479d0d92dac8786adcd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11570, "upload_time": "2014-07-08T15:50:35", "url": "https://files.pythonhosted.org/packages/55/35/d1ed40ff189581c76516df643feef3c7291d8308f9a87ea03817fbfc3422/pybossa-pbs-1.4.tar.gz" } ], "1.5": [ { "comment_text": "", "digests": { "md5": "1eb50d763dfadc8e007b4b42156d89b7", "sha256": "fa689cac45ec43d6be3b59571879cd3ce63314d7ba2ccaa533f8ed1ce3b14a72" }, "downloads": -1, "filename": "pybossa-pbs-1.5.tar.gz", "has_sig": false, "md5_digest": "1eb50d763dfadc8e007b4b42156d89b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9076, "upload_time": "2014-10-08T11:34:01", "url": "https://files.pythonhosted.org/packages/70/cf/36af0c69cca0c551eed755e7fdf3f96d834d227ae76dad2fa7a9747b4d2e/pybossa-pbs-1.5.tar.gz" } ], "1.6": [ { "comment_text": "", "digests": { "md5": "59a051f84a23cbe7dfb1a185541624f9", "sha256": "0ddf34744c7812e0c012db8159c647bdbfc57d911f5527ca267d3d8fb306ac58" }, "downloads": -1, "filename": "pybossa-pbs-1.6.tar.gz", "has_sig": false, "md5_digest": "59a051f84a23cbe7dfb1a185541624f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9314, "upload_time": "2014-10-22T10:19:16", "url": "https://files.pythonhosted.org/packages/6b/5d/c01768e89308e9e36301ea9f601d04c99c8fd33de6a2956612b928da7e48/pybossa-pbs-1.6.tar.gz" } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "2e2ca49e44c85c1c9eb931744bdf5f8f", "sha256": "cf887b9e2b5143c6069c1c68e762d2bbaae6b4b415b7e4ca185994e33e001ae1" }, "downloads": -1, "filename": "pybossa-pbs-1.6.1.tar.gz", "has_sig": false, "md5_digest": "2e2ca49e44c85c1c9eb931744bdf5f8f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12168, "upload_time": "2014-10-22T11:38:54", "url": "https://files.pythonhosted.org/packages/95/e5/972eabc4aa804e2c0031baf845334a68037a938662bc728e39feb7794bff/pybossa-pbs-1.6.1.tar.gz" } ], "1.6.2": [ { "comment_text": "", "digests": { "md5": "7e5f4c683f06495d40234a5f4d456161", "sha256": "750273f39d0394b018daf8870eb2e695d789019a786968b3ebfdc39d87458ed2" }, "downloads": -1, "filename": "pybossa-pbs-1.6.2.tar.gz", "has_sig": false, "md5_digest": "7e5f4c683f06495d40234a5f4d456161", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13667, "upload_time": "2015-01-08T13:47:54", "url": "https://files.pythonhosted.org/packages/56/ab/43d1a776a7a41ac038eb3ddb284375a8f3357d132dc09240ae255b1cea00/pybossa-pbs-1.6.2.tar.gz" } ], "1.6.3": [ { "comment_text": "", "digests": { "md5": "608396f1e884250a1fc5825dfd9e8e0f", "sha256": "b58c57663a9f7c3e7566358c8c0c5c16963dc8ad5b2bc583cc3666c8a26e835b" }, "downloads": -1, "filename": "pybossa-pbs-1.6.3.tar.gz", "has_sig": false, "md5_digest": "608396f1e884250a1fc5825dfd9e8e0f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10740, "upload_time": "2015-03-09T11:49:54", "url": "https://files.pythonhosted.org/packages/e8/4f/bbc6cf42158c9065a29baaa8f6f21e5021be498d8fe9df44e738f20f91d3/pybossa-pbs-1.6.3.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "40a9af3a8d1604b74ee78b818fe13eca", "sha256": "0740a300a7a24cc0964f059764e24f5b9a8a6af2b353edaee3470ad82bc3cb60" }, "downloads": -1, "filename": "pybossa-pbs-1.7.0.tar.gz", "has_sig": false, "md5_digest": "40a9af3a8d1604b74ee78b818fe13eca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10736, "upload_time": "2015-04-08T10:26:31", "url": "https://files.pythonhosted.org/packages/81/14/2bb4f35a65b000e38bf55e7a51cf82063a79667766a43ebc6b20fecee318/pybossa-pbs-1.7.0.tar.gz" } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "480f8528a78fd02087ba7ea4735bca8b", "sha256": "33cffcecd2477300f580ba2b093be244894c782f5584824661a4aa03e945aaa9" }, "downloads": -1, "filename": "pybossa-pbs-1.7.1.tar.gz", "has_sig": false, "md5_digest": "480f8528a78fd02087ba7ea4735bca8b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10753, "upload_time": "2015-05-29T12:59:00", "url": "https://files.pythonhosted.org/packages/1c/c5/fb8b6fb098c8df63acd85e1031ca257bb89189eab2bc07008b5c011e8627/pybossa-pbs-1.7.1.tar.gz" } ], "1.7.2": [ { "comment_text": "", "digests": { "md5": "2f9a2b3fba731ece7c7aec3a85415d03", "sha256": "d47c02d10d70c647c620553e3bee5b7f59d25967bcbcaa554479214504bb0ba0" }, "downloads": -1, "filename": "pybossa-pbs-1.7.2.tar.gz", "has_sig": false, "md5_digest": "2f9a2b3fba731ece7c7aec3a85415d03", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13865, "upload_time": "2015-06-03T08:21:21", "url": "https://files.pythonhosted.org/packages/fa/03/dc9d39484a10544d4302f369e46ed6763b5c54ef4dcb2251a40a8d568502/pybossa-pbs-1.7.2.tar.gz" } ], "1.7.3": [ { "comment_text": "", "digests": { "md5": "40aa9dc78c0e55a9a6246b3e6dd70a29", "sha256": "7dd4b3972b32ad3ef51e76d405f01571a2c14a35dfaa115e8a8886a23ff753a5" }, "downloads": -1, "filename": "pybossa-pbs-1.7.3.tar.gz", "has_sig": false, "md5_digest": "40aa9dc78c0e55a9a6246b3e6dd70a29", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16030, "upload_time": "2015-08-10T12:21:00", "url": "https://files.pythonhosted.org/packages/e3/fd/8750a1d74c2b81b71c7dd471b1676047d7d240a50df44e77c96f8e4affb8/pybossa-pbs-1.7.3.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "b5e5a636714398884d19492f297beb58", "sha256": "acd8d4c0ba94829cbf7d02bf0149bbeb7dd8dac598d6515b43165866559b0287" }, "downloads": -1, "filename": "pybossa-pbs-2.0.0.tar.gz", "has_sig": false, "md5_digest": "b5e5a636714398884d19492f297beb58", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16578, "upload_time": "2015-09-21T15:01:07", "url": "https://files.pythonhosted.org/packages/65/cc/2ee3f6617d4dac0f24fc5999dad390f20187c6e1d534cc12c692cb2ea7c7/pybossa-pbs-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "2fc90ba3e26b075924a644d7085ecd97", "sha256": "6826d9cac4b021d1b997dec030448e6db06734c0c6f8fbfb0266cd358736ad12" }, "downloads": -1, "filename": "pybossa-pbs-2.0.1.tar.gz", "has_sig": false, "md5_digest": "2fc90ba3e26b075924a644d7085ecd97", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12210, "upload_time": "2015-10-07T12:01:39", "url": "https://files.pythonhosted.org/packages/2c/42/882e46641689d76900a93f079507f9232aaf039f35f7d4f646d66d8826d0/pybossa-pbs-2.0.1.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "dcd4e23512cbb966435467d762d62b95", "sha256": "0f2f8185ef7fbc5ce8de8ac888cdcfa11a2097f4aecdba49519bb0232a1fc70f" }, "downloads": -1, "filename": "pybossa-pbs-2.0.2.tar.gz", "has_sig": false, "md5_digest": "dcd4e23512cbb966435467d762d62b95", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16646, "upload_time": "2015-11-24T14:00:47", "url": "https://files.pythonhosted.org/packages/15/b2/0e893492890fccef2bfca909e0f87ef76f8b17a9fe0f37701e10c25dd2a6/pybossa-pbs-2.0.2.tar.gz" } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "ca901a8431c180c92b66aa197251115b", "sha256": "475e99d20c10e62c757a2e71cda75a7cc6dfc63f731e71b71551581950e75160" }, "downloads": -1, "filename": "pybossa-pbs-2.0.3.tar.gz", "has_sig": false, "md5_digest": "ca901a8431c180c92b66aa197251115b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16687, "upload_time": "2015-11-25T10:17:18", "url": "https://files.pythonhosted.org/packages/61/e5/09ca76ba4ba2be6c35caf04ee92dbb1a0fa139387329be07f33ce0329691/pybossa-pbs-2.0.3.tar.gz" } ], "2.1.1": [], "2.2.0": [ { "comment_text": "", "digests": { "md5": "6160d4f7b64deb5d0ed23b88ae6fdfd9", "sha256": "a175be7e8431be71b3901a0e7750e6af6288e1e86bea49faf08ee2f6e7388b5a" }, "downloads": -1, "filename": "pybossa-pbs-2.2.0.tar.gz", "has_sig": false, "md5_digest": "6160d4f7b64deb5d0ed23b88ae6fdfd9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12130, "upload_time": "2016-09-08T09:10:54", "url": "https://files.pythonhosted.org/packages/cd/db/a3f80269d037d4a704a0f2c0ed1553f2979f975e0cc580932e3bc99ab655/pybossa-pbs-2.2.0.tar.gz" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "1522a32b1cbba4f5a44cb9c623f607b2", "sha256": "85504fb8c04bbca6a3a73f054e3a929cbd78c9fc99604b2c14ff409383cd4b35" }, "downloads": -1, "filename": "pybossa-pbs-2.2.1.tar.gz", "has_sig": false, "md5_digest": "1522a32b1cbba4f5a44cb9c623f607b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12214, "upload_time": "2016-09-08T09:41:53", "url": "https://files.pythonhosted.org/packages/0d/31/57faecb47ef242bb93467b68dce106c97becb7e9cf1fdd5337819c672951/pybossa-pbs-2.2.1.tar.gz" } ], "2.2.2": [ { "comment_text": "", "digests": { "md5": "7c5ee4be1505690f5f94be106166e597", "sha256": "f660a6d97be6f05f68aa81e17c941c33293dfb296a325458c4b08613065108d3" }, "downloads": -1, "filename": "pybossa-pbs-2.2.2.tar.gz", "has_sig": false, "md5_digest": "7c5ee4be1505690f5f94be106166e597", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17467, "upload_time": "2016-09-08T11:21:04", "url": "https://files.pythonhosted.org/packages/99/37/aff55b840739e3a8e7c492e335ec06e2ca99af287de6f289ca50e98df8ac/pybossa-pbs-2.2.2.tar.gz" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "1e7d64575c1fd99e6f99c62660755186", "sha256": "7ee53d8463162445b34534f6e58e6a5f1f94d09bf122e77757add0081213bc7e" }, "downloads": -1, "filename": "pybossa-pbs-2.3.0.tar.gz", "has_sig": false, "md5_digest": "1e7d64575c1fd99e6f99c62660755186", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18909, "upload_time": "2016-09-13T08:23:17", "url": "https://files.pythonhosted.org/packages/ed/2a/2f7f765d01a96f7548cc45d2be54055332f1cded727bdcc36cf89d4f2e53/pybossa-pbs-2.3.0.tar.gz" } ], "2.3.1": [ { "comment_text": "", "digests": { "md5": "096e8270eb4dea5448e9c675edaa07a3", "sha256": "627bbb8bbf55866d79dbe7724e5586391266424d7fec164d35987e7cde29ec64" }, "downloads": -1, "filename": "pybossa-pbs-2.3.1.tar.gz", "has_sig": false, "md5_digest": "096e8270eb4dea5448e9c675edaa07a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13120, "upload_time": "2016-10-20T12:41:45", "url": "https://files.pythonhosted.org/packages/63/30/10209758eedf24fc6067b273ca2b6804cf2ffebde7040d8458d516c562cd/pybossa-pbs-2.3.1.tar.gz" } ], "2.4.0": [ { "comment_text": "", "digests": { "md5": "52128830fce995c2cd32b6c59e9d648e", "sha256": "c640138958d1d8da3ed5705d52e19d4ad13486b04b651db7f86171b8de07a171" }, "downloads": -1, "filename": "pybossa-pbs-2.4.0.tar.gz", "has_sig": false, "md5_digest": "52128830fce995c2cd32b6c59e9d648e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19715, "upload_time": "2017-06-05T12:29:44", "url": "https://files.pythonhosted.org/packages/89/ff/11ed3a59428d23e94f73ce08bb81292c9ed966e980ad87b80b0bc322b528/pybossa-pbs-2.4.0.tar.gz" } ], "2.4.1": [ { "comment_text": "", "digests": { "md5": "2b57a5772c1835026984636ee6f318c9", "sha256": "c1f2d532aa8a284580ccc3d90dd350b97bf785c30cbf4cbfcbb09c0feab987f2" }, "downloads": -1, "filename": "pybossa-pbs-2.4.1.tar.gz", "has_sig": false, "md5_digest": "2b57a5772c1835026984636ee6f318c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21328, "upload_time": "2017-06-06T08:43:08", "url": "https://files.pythonhosted.org/packages/13/52/f9ff6314c2becd2ea36292fad601166326ebb9c6a6d083234add2edcd460/pybossa-pbs-2.4.1.tar.gz" } ], "2.4.2": [ { "comment_text": "", "digests": { "md5": "1a05a6dda064fee0c015584c425def4b", "sha256": "e22f928bc3d82427c57e7b065de53f5b316ccb0fdf087fa7692c1902e0179883" }, "downloads": -1, "filename": "pybossa-pbs-2.4.2.tar.gz", "has_sig": false, "md5_digest": "1a05a6dda064fee0c015584c425def4b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15044, "upload_time": "2017-06-08T15:34:58", "url": "https://files.pythonhosted.org/packages/df/e7/c70b4025034aafda883e7dc9c1df49cfcbe291880123a36ce803d033f2e2/pybossa-pbs-2.4.2.tar.gz" } ], "2.4.4": [ { "comment_text": "", "digests": { "md5": "e0250afb6da9c0a67dd84e0ac209556f", "sha256": "46dfd7ae7642a5cbb406de91ff835cf22f87b0e73c866677a83e9bc46b57770e" }, "downloads": -1, "filename": "pybossa-pbs-2.4.4.tar.gz", "has_sig": false, "md5_digest": "e0250afb6da9c0a67dd84e0ac209556f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21588, "upload_time": "2017-06-30T13:35:53", "url": "https://files.pythonhosted.org/packages/ef/c2/aa8542d6df4e5ee5901371522e2a23d39adcce1e3cbfd6c40d48f27af4fd/pybossa-pbs-2.4.4.tar.gz" } ], "2.4.5": [ { "comment_text": "", "digests": { "md5": "45b4728432961ae13f038861bf8b23cc", "sha256": "2d39e287d7610d7c18a705beb9b4d33b171c8fcbae5347989a7ac5be194bb17a" }, "downloads": -1, "filename": "pybossa-pbs-2.4.5.tar.gz", "has_sig": false, "md5_digest": "45b4728432961ae13f038861bf8b23cc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22434, "upload_time": "2018-02-21T15:14:44", "url": "https://files.pythonhosted.org/packages/7a/c8/20b438b81c506ee8ace3898e2904d050cd690eb231e4ea2ea851fdc49c3d/pybossa-pbs-2.4.5.tar.gz" } ], "2.4.6": [ { "comment_text": "", "digests": { "md5": "4dc7e4fd75d1dc2e7933bb5a2dd825ad", "sha256": "4c1b4f3ef8e71198fd0c0e8f878fc73827a4636b0fd157983c69bc509e5bbe51" }, "downloads": -1, "filename": "pybossa_pbs-2.4.6-py2-none-any.whl", "has_sig": false, "md5_digest": "4dc7e4fd75d1dc2e7933bb5a2dd825ad", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 10883, "upload_time": "2018-02-22T16:33:23", "url": "https://files.pythonhosted.org/packages/7a/4f/f48f2471af97882d5f1cd0d81a323d5757256c6aa0e56304a121999be4d7/pybossa_pbs-2.4.6-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dd1a95be41b6e31e06d441bbd3e1383e", "sha256": "9ed47e34a301a98ef26ef004ad7248049b4b0914ca7260d66cfd035af1ec0ef9" }, "downloads": -1, "filename": "pybossa_pbs-2.4.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "dd1a95be41b6e31e06d441bbd3e1383e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17652, "upload_time": "2018-02-22T16:33:25", "url": "https://files.pythonhosted.org/packages/45/08/65d00d30ad6a17309f448c20e4c799e7c0993401e476b1cdfbafe4611df6/pybossa_pbs-2.4.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fccc93f87eda919509e842411b09abe3", "sha256": "876bff19e92497e647fbb854eee3eb530e90d4daa0be882cacbdb5784de52643" }, "downloads": -1, "filename": "pybossa-pbs-2.4.6.tar.gz", "has_sig": false, "md5_digest": "fccc93f87eda919509e842411b09abe3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22502, "upload_time": "2018-02-22T16:33:32", "url": "https://files.pythonhosted.org/packages/9e/61/eee36bddf565c5b0de4cbe2191820613ad692d60a42a614559906190a043/pybossa-pbs-2.4.6.tar.gz" } ], "2.4.7": [ { "comment_text": "", "digests": { "md5": "2dd9096a56b1680c934ab759741bdd52", "sha256": "b87bd30516e5f48d40e54b87de9087fa179236e15bfe791561760d6db9ef23bb" }, "downloads": -1, "filename": "pybossa_pbs-2.4.7-py2-none-any.whl", "has_sig": false, "md5_digest": "2dd9096a56b1680c934ab759741bdd52", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 17645, "upload_time": "2018-02-26T12:03:57", "url": "https://files.pythonhosted.org/packages/88/17/3447722a5d7d6aa1accadef71bdd5294e4718e5ab64c9b555f0d73127bdb/pybossa_pbs-2.4.7-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ce20b0ca763d3fa42db697e91da689de", "sha256": "0febc263a0efc6eb49cd15df88341c4d281649d2ba51eb8f4bb82ca1ed9c5fb2" }, "downloads": -1, "filename": "pybossa-pbs-2.4.7.tar.gz", "has_sig": false, "md5_digest": "ce20b0ca763d3fa42db697e91da689de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22485, "upload_time": "2018-02-26T12:04:02", "url": "https://files.pythonhosted.org/packages/8f/34/c87c64a8537e3ed8db11b3a3587cf0b022c8f2f862d3846473d961e5d4ac/pybossa-pbs-2.4.7.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "2dd9096a56b1680c934ab759741bdd52", "sha256": "b87bd30516e5f48d40e54b87de9087fa179236e15bfe791561760d6db9ef23bb" }, "downloads": -1, "filename": "pybossa_pbs-2.4.7-py2-none-any.whl", "has_sig": false, "md5_digest": "2dd9096a56b1680c934ab759741bdd52", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 17645, "upload_time": "2018-02-26T12:03:57", "url": "https://files.pythonhosted.org/packages/88/17/3447722a5d7d6aa1accadef71bdd5294e4718e5ab64c9b555f0d73127bdb/pybossa_pbs-2.4.7-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ce20b0ca763d3fa42db697e91da689de", "sha256": "0febc263a0efc6eb49cd15df88341c4d281649d2ba51eb8f4bb82ca1ed9c5fb2" }, "downloads": -1, "filename": "pybossa-pbs-2.4.7.tar.gz", "has_sig": false, "md5_digest": "ce20b0ca763d3fa42db697e91da689de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22485, "upload_time": "2018-02-26T12:04:02", "url": "https://files.pythonhosted.org/packages/8f/34/c87c64a8537e3ed8db11b3a3587cf0b022c8f2f862d3846473d961e5d4ac/pybossa-pbs-2.4.7.tar.gz" } ] }