{ "info": { "author": "Graham Klyne", "author_email": "gk-pypi@ninebynine.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Environment :: Console", "Environment :: Web Environment", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python" ], "description": "# Research Object manager command line tool\n\n**Author: Graham Klyne (graham.klyne@zoo.ox.ac.uk)**\n\nResearch Objects are semantically rich aggregations of resources that bring\ntogether data, methods and people in scientific investigations. For further\ninformation, see:\n* What is an RO?\n - http://www.wf4ever-project.org/wiki/pages/viewpage.action?pageId=2065079 \n* Wf4Ever Research Object Model\n - http://wf4ever.github.com/ro/\n\nResearch Object Manager (RO Manager) is a simple command line tool for creating and\nmanipulating Research Objects in a local file system, and for exchanging them with a\nResearch Object Digital Library (RODL):\n* http://www.wf4ever-project.org/wiki/display/docs/RO+management+tool\n* http://www.wf4ever-project.org/wiki/display/docs/RO+Manager+FAQ\n\nAdditional installation and deployment information:\n* Checklist evaluaton service: [https://github.com/wf4ever/ro-manager/blob/master/src/roweb/README.md]()\n* Overlay Research Object creation service: [https://github.com/wf4ever/ro-manager/blob/master/src/roverlay/README.md]()\n\n\n## Dependencies\n\n* Python 2.7.\n* Linux/Unix type system.\n This software has not been tested under Windows, but may work.\n* The sample scripts are written to run under BASH\n* Python pip utility, or git, depending on the installation option used.\n\n\n## Installation overview\n\nThis is just a summary of the installation options.\nMore detailed explanations can be found below.\n\nThere are two main options for installation: the first is from the Python \nPackage Index (PyPI) which requires that the Python pip utility is installed:\n\n pip install ro-manager\n ro-manager-test\n\nThe other option is to take a copy of the source code from GitHub, and install\nfrom that, which requires that the git source code management tool is\ninstalled:\n\n cd (some working directory)\n git clone https://github.com/wf4ever/ro-manager.git ro-manager\n cd ro-manager/src\n python setup.py build\n python setup.py install\n ro-manager-test\n\nFor further information on installing git on various systems, see:\n* http://git-scm.com/download\n* http://git-scm.com/book/en/Getting-Started-Installing-Git\n* http://www.devdaily.com/mac-os-x/how-install-git-mac-os-x-osx\n* https://help.ubuntu.com/community/Git\n\nFor further information on installing pip on various systems, see:\n* http://stackoverflow.com/questions/4986896/\n* http://www.saltycrane.com/blog/2010/02/how-install-pip-ubuntu/\n* http://stackoverflow.com/questions/4750806/how-to-install-pip-on-windows\n\nOnce pip is installed, it can be used to install virtualenv, if needed.\n\n\n## System-wide install from PyPI\n\nRO-manager can be installed from the Python Package Index (PyPI) using 'pip'.\n\nThis is the simplest option for installing RO Manager, and does not require\na copy of the RO Manager code be obtained from GitHub, but generally does\nrequire that you have root access on the computer where it is installed:\n\nPrerequisites are python 2.7 (http://python.org/download/releases/2.7/) and \npip (http://pypi.python.org/pypi/pip, http://www.pip-installer.org/).\n\n1. Install:\n\n sudo pip install ro-manager\n\n (You may be asked for a password to confirm root access privilege.)\n\n2. Test:\n\n ro help\n\n\n## \"Virtual environment\" install from PyPI\n\nIf you don't have root privileges, or if you want to create a temporary\nor local copy of the RO Manager installation, this can be done using the\nPython \"virtual environment\" facility. The following assumes that Python\n\"virtualenv\" is installed (http://pypi.python.org/pypi/virtualenv), This\nmethod does not require that a copy of RO Manager software be obtained\nfrom GitHub. A disadvantage of this method is that the Python virtual\nenvironment must always be activated in order to run RO Manager.\n\nYou will need to choose a working directory where the Python virtual \nenvironment will be created. We'll call this $RO_MANAGER.\n\nPrerequisites are python 2.7 (http://python.org/download/releases/2.7/),\nvirtualenv (http://pypi.python.org/pypi/virtualenv) and \npip (http://pypi.python.org/pypi/pip, http://www.pip-installer.org/).\n\n1. Create and activate virtual environment:\n\n cd $RO_Manager\n virtualenv roenv\n source roenv/bin/activate\n\n To subsequently revert to the system default Python environment:\n \n deactivate\n\n To remove a temporary virtual environment, including any software\n that has been installed there:\n\n deactivate\n rm -rf $RO_MANAGER/roenv\n\n2. Install RO Manager:\n\n pip install ro-manager\n\n3. Test:\n\n ro help\n\n\n## To install from GitHub\n\nRO Manager can also be installed using a copy of the software obtained\nfrom GitHub. This may be advantageous if you need to access the most\nrecent version of the software. (The copy uploaded to PyPI may lag the\ndevelopment copy in GitHub.)\n\nPrerequisites are python 2.7 (http://python.org/download/releases/2.7/) and git (http://git-scm.com/).\n\n1. Obtain a copy of software from GitHub:\n\n In the first instance, the command used will be a \"git clone ...\":\n\n Choose a working directory where the RO Manager software will be\n stored:\n\n cd (working directory)\n git clone https://github.com/wf4ever/ro-manager.git ro-manager\n cd ro-manager\n\n The current working directory is now the $RO_MANAGER directory.\n\n To obtain subsequent updates, go into the ro-manager directory\n tree and use \"git pull\":\n \n cd $RO_MANAGER\n git pull\n\n2. (Optional) Use Python virtualenv to create and activate an environment\n for installing RO manager. There are two advantages to doing this:\n (a) not needing root privileges to install ro-manager, and \n (b) using a Python environment version different from the system default.\n The main disadvantage of using a new Python virtual environment is\n that it must be activated every time before RO Manager can be run.\n\n cd $RO_Manager\n virtualenv roenv\n source roenv/bin/activate\n\n3. Go to directory $RO_MANAGER/src\n\n cd $RO_MANAGER/src\n\n4. Build the installation package:\n\n python setup.py build\n\n5. Install the package and its dependencies\n\n If installing into a Python virtual environment:\n\n python setup.py install\n \n If *not* installing into a Python virtual environment, \n this command must be run as root:\n \n sudo python setup.py install\n\n6. Test the installation\n\n ro-manager-test\n\n The following should be displayed:\n\n $ ro-manager-test \n .......................................................................................................\n ----------------------------------------------------------------------\n Ran 103 tests in 13.406s\n \n OK\n $ \n\n Note that (on some systems, including MacOS), if RO Manager is installed under\n the system Python environment (i.e. not using virtualenv) then a small number of\n test cases that access test data files may fail. If the majority of tests pass,\n and the ro command appears to work, the installation is probably fine.\n\n7. To run RO manager to display a summary of commands and options:\n\n ro help\n\n\n## Using RO Manager\n\nSee also the documentation at http://www.wf4ever-project.org/wiki/display/docs/RO+management+tool\n\nDirectory $RO_MANAGER/src/samples contains some bash shell scripts that are \nexamples for creating, annotating and displaying simple Research Objects.\n\nNote that the ro config command needs to be run to set up a \nconfiguration for your environment, though it can be re-run to update \nthe details. Most ro config values are currently ignored. The important \nvalue is -b , which indicates a disk area where Research Objects\nare managed.\n\nLook inside the file $RO_MANAGER/src/samples/ro_sample.sh to see what the \nindividual commands used look like.\n\nFor example, to create and manipulate a simple example Research Object:\n\n cd $RO_MANAGER/src/samples\n ./ro_sample.sh\n\nThe output should look something like this:\n\n $ ./ro_sample.sh \n --------\n ro config -b /usr/workspace/wf4ever-ro-manager/src/rocommand/test/robase\n -r http://calatola.man.poznan.pl/robox/dropbox_accounts/1/ro_containers/2\n -p d41d8cd98f00b204e9800998ecf8427e\n -u Test user -e testuser@example.org\n ro configuration written to /Users/graham\n --------\n mkdir: rocommand/test/robase/test-create-RO: File exists\n cp: /ro-test-1/*: No such file or directory\n ro create \"Test Create RO\" -d \"rocommand/test/robase/test-create-RO\" -i \"RO-id-testCreate\"\n ro status -d \"rocommand/test/robase/test-create-RO\"\n Research Object status\n identifier: RO-id-testCreate, title: Test Create RO\n creator: Test user, created: 2011-09-15T15:12:17\n path: /usr/workspace/wf4ever-ro-manager/src/rocommand/test/robase/test-create-RO\n uri: file:///usr/workspace/wf4ever-ro-manager/src/rocommand/test/robase/test-create-RO/#\n description: Test Create RO\n ro list -d \"rocommand/test/robase/test-create-RO\"\n test-create-RO/.ro/manifest.rdf\n test-create-RO/README-ro-test-1\n test-create-RO/subdir1/subdir1-file.txt\n test-create-RO/subdir2/subdir2-file.txt\n --------\n ro annotate rocommand/test/robase/test-create-RO/subdir1/subdir1-file.txt title \"subdir1-file.txt title\"\n ro annotations -d \"rocommand/test/robase/test-create-RO/subdir1\" rocommand/test/robase/test-create-RO/subdir1/subdir1-file.txt \n file:///usr/workspace/wf4ever-ro-manager/src/rocommand/test/robase/test-create-RO/subdir1/subdir1-file.txt\n title: subdir1-file.txt title\n --------\n ro annotate rocommand/test/robase/test-create-RO/subdir2/subdir2-file.txt type \"subdir2-file.txt type\"\n ro annotate rocommand/test/robase/test-create-RO/subdir2/subdir2-file.txt keywords \"subdir2-file.txt foo,bar\"\n ro annotate rocommand/test/robase/test-create-RO/subdir2/subdir2-file.txt description \"subdir2-file.txt description\\nline 2\"\n ro annotate rocommand/test/robase/test-create-RO/subdir2/subdir2-file.txt format \"subdir2-file.txt format\"\n ro annotate rocommand/test/robase/test-create-RO/subdir2/subdir2-file.txt title \"subdir2-file.txt title\"\n ro annotate rocommand/test/robase/test-create-RO/subdir2/subdir2-file.txt created \"20110914T12:00:00\"\n ro annotations -d \"rocommand/test/robase/test-create-RO/subdir2\" rocommand/test/robase/test-create-RO/subdir2/subdir2-file.txt \n file:///usr/workspace/wf4ever-ro-manager/src/rocommand/test/robase/test-create-RO/subdir2/subdir2-file.txt\n type: subdir2-file.txt type\n title: subdir2-file.txt title\n format: subdir2-file.txt format\n keywords: subdir2-file.txt foo,bar\n created: 20110914T12:00:00\n description: subdir2-file.txt description\\nline 2\n --------\n\n## Revision history\n\n### Changes for 0.2.20\n\n* More documentation improvements (including LISC 2013 material added)\n* Metadata query diagnostic improvements (log query in event of failure)\n* Enhance Minim model to allow values to be collected from probe query\n* Update Minim results model to create independent description for each evaluation\n\n### Changes for 0.2.19\n\n* Documentation updates (not released)\n\n### Changes for 0.2.18\n\n* Create benchmarking scrpts and result data\n* Add utility to create RO for benchmarking\n* Adjust iaeval package to work with PyPI copy of uritemplate\n* Revise RO access logic to allow 'ro' to display details of RO at arbitrary location\n* Add project copyright and licencing information.\n* Add README for Overlay RO service, and update other documentation files.\n\n### Changes for 0.2.17\n\n* Updates to RODL synchronization. Includes option to push ZIP file bundle\n* Provide label for checklist target resource as well as the RO\n* Overlay RO service documentation updated\n* Refactoring of HTTP access to ROs (HTTP_Session), and logic to catch and log HTTP connection errors\n* Fix bug in RO metadata access when nested ROs are used\n* Rename minim:testedConstraint to minim:testedChecklist in checklist results vocabulary\n* Fix bug in handling of checklist \"miss\" option. \n* Improve diagnostics/logging in several areas, especially the checklist service\n* Fix listening port error in Overlay RO service\n* Improve handling of errors when parsing RO annotations\n\n### Changes for 0.2.16\n\n* Fixed bug in traffic light display when target resource is not the RO\n* Add HTTP-redirect cache to roverlay server, to reduce use of redirectors\n* Modify HTTP doRequestr methiods top return URI as string, not rdflib.URIRef\n* Add retry logic to make Overlay ROs behave more consistently\n* Minor documentation and script tweaks\n\n\n### Changes for V0.2.15\n\n* Tuned \"Overlay RO\" service and added `roverlay` command line utility\n* Fixed some bugs in ROSRS URI handling, and tidied URI handling code\n* Updated documentation for Overlay RO installation\n* Fixed `ro-manager-test`\n* Improved user diagnostics when accessing an unavailable RO\n* Refactored spreadsheet grid access code\n* Added direct-from-Excel support to mkminim\n* Added context handler to `HTTP_Session` class\n\n\n### Changes for V0.2.14\n\n* `ro list` supports URI argument as alternative to directory\n* Added initial \"Overlay RO\" service\n* Added checklist spreadsheet -> Minim model converter\n* Refactored HTTP session handling\n* Code and test enhancements, including HTTP resource mocking\n* Documentation updates\n\n\n### Changes for V0.2.13\n\n* Implement Minim file creator from spreadsheet description (mkminim command)\n* Renamed library that was clashing with other installations\n* Fixed bugs in processing of refactored Minim model\n* Removed all references to minim:derives\n* Improve escaping of string values in JSON output\n* Updated REST checklisrt service landing page\n* Various bug fixes\n\n\n### Changes for V0.2.12\n\n* Refactor Minim model and extend checklist evaluation capabilities\n* Fix queries to work with rdflib 4.0.1 and rdflib-sparql\n* Fix some bugs in RODL synchronization and evolution\n* Fix rowebservices handling of URIs containing escaped characters and special characters\n* Fix problems with extended (non-ASCII) characters in checklist query results\n\n\n\n### Changes for V0.2.11\n\n* Add RO evolution commands; ro snapshot, ro archive, ro freeze\n\n\n### Changes for V0.2.10\n\n* Fix problem evaluating RO with space in URI\n* RDFReport add escaping support; escape quotes in JSON strings\n* Fix problem with URI liveness test\n* New RO must have ore:Aggregation class\n* Allow reporting of missing entries\n* Add ro dump command\n* Ordering of checklist display\n* Various display formatting enhancements\n\n\n### Changes for V0.2.9\n\n* Fix up experiment-workflow checklist\n\n\n### Changes for V0.2.8\n\n* Web services to return checklist result as HTML or JSON for rendering by Javascript\n* RDF output option from checklist evaluation function\n* Command line evaluation can run against RO accessed using ROSRS API\n* Various small bug fixes, refactoring and optimizations\n* Updated sample files and scripts\n\n\n### Changes for V0.2.7\n\n* Add `ro remove` command, fix URI escaping problems that were occurring when an RO was created from files containing space or '#' characters\n* Add `ro link` command; this works just like `ro annotate`, except that the default treatment of the target value (i.e. for unrecognized annotation types) is as a URI, this providing a mechanism to create arbitrary links between RO resources, or between an RO resource and an external resource.\n* Allow annotation and links with CURIE (QName) properties. A predefined set of recognized URI prefixes are defined (see `~/.ro-config`) which can be used to create annotations with CURIES; e.g. `ro link foo rdfs:seeAlso bar`.\n* Create multiple annotations and links with wildcard resource matching; e.g. `ro link -w \"/workflow/.*t2flow$\" rdf:type wfdesc:Workflow\" will create an rdf:type wfdesc:Workflow link for all aggregated resources in a directory named \"/Workflow\" and with file extension \".t2flow\".\n* ROSRS (v6) support\n* Support for checklist evaluation of ROs stored in RODL or some other ROSRS service (used primarily by the `roweb` service component)\n* Decouple MINIM constraints from target RO. Allow creation of MINIM descriptions that can be applied to arbitrary ROs: this paves the way for creating and using checklists that encode community norms for RO quality.\n\n\n----\n\n\"Creative
This work is licensed under a Creative Commons Attribution 2.0 UK: England & Wales License.", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/wf4ever/ro-manager", "keywords": null, "license": "MIT", "maintainer": null, "maintainer_email": null, "name": "ro-manager", "package_url": "https://pypi.org/project/ro-manager/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/ro-manager/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/wf4ever/ro-manager" }, "release_url": "https://pypi.org/project/ro-manager/0.2.20/", "requires_dist": null, "requires_python": null, "summary": "Research Object manager (command line tool)", "version": "0.2.20" }, "last_serial": 929533, "releases": { "0.2.1": [ { "comment_text": "", "digests": { "md5": "2ea8b57be23c7a3a02cd936233086242", "sha256": "fb952c2c471fb5325bfe54a31f20cc02e28387f82d9f4cb878a531452ea0dc44" }, "downloads": -1, "filename": "ro-manager-0.2.1.tar.gz", "has_sig": false, "md5_digest": "2ea8b57be23c7a3a02cd936233086242", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71215, "upload_time": "2012-08-14T11:13:34", "url": "https://files.pythonhosted.org/packages/77/65/13bc4255f1b837742c82c5d04aa3fbae6cf748e2643b8adb2d655028ceec/ro-manager-0.2.1.tar.gz" } ], "0.2.10": [ { "comment_text": "", "digests": { "md5": "bd1be33faddc51b8de5b7ee3f79e0029", "sha256": "1daf5489864a179c216ad296cf0bd9cb2f4eb60d318735320bfb92c683f49ac6" }, "downloads": -1, "filename": "ro-manager-0.2.10.tar.gz", "has_sig": false, "md5_digest": "bd1be33faddc51b8de5b7ee3f79e0029", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 105014, "upload_time": "2013-03-27T15:18:32", "url": "https://files.pythonhosted.org/packages/dd/c8/7f3d5b601810266b7b9ad52add0e3492957578c7464275b6f1b32e972509/ro-manager-0.2.10.tar.gz" } ], "0.2.12": [ { "comment_text": "", "digests": { "md5": "4f2c24d6bd6251c761b9fcf819dfa9c2", "sha256": "08518d24015b2380335bb869326805858bdfa776926a8623dea20133df0a9d58" }, "downloads": -1, "filename": "ro-manager-0.2.12.tar.gz", "has_sig": false, "md5_digest": "4f2c24d6bd6251c761b9fcf819dfa9c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 113864, "upload_time": "2013-06-13T14:24:52", "url": "https://files.pythonhosted.org/packages/b6/6e/55874be1e21b3e28c6a4b9c14e24d804072f9259ab486d68e24bc69248f1/ro-manager-0.2.12.tar.gz" } ], "0.2.13": [ { "comment_text": "", "digests": { "md5": "6bf824b006e5d7d3c34cb9f36cacc8ce", "sha256": "ceb9a58dbd93304f4e617bd108664414911dcd0cb5ef9cd18608bf8c21bac9dc" }, "downloads": -1, "filename": "ro-manager-0.2.13.tar.gz", "has_sig": false, "md5_digest": "6bf824b006e5d7d3c34cb9f36cacc8ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 126562, "upload_time": "2013-07-11T13:17:45", "url": "https://files.pythonhosted.org/packages/0a/b3/253d7fe662af2c60e3ecd59a4dedd358632c43c194bcc637034efd676222/ro-manager-0.2.13.tar.gz" } ], "0.2.15": [ { "comment_text": "", "digests": { "md5": "48fd39d1e3d23abb1e14ed9d42478e86", "sha256": "8d6d0b9263d4c67e96248e6d6316070a9e837fe3da015702f60d0ad7cd5c9a77" }, "downloads": -1, "filename": "ro-manager-0.2.15.tar.gz", "has_sig": false, "md5_digest": "48fd39d1e3d23abb1e14ed9d42478e86", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 160086, "upload_time": "2013-08-06T18:02:24", "url": "https://files.pythonhosted.org/packages/83/69/cff3875123a360e3d74f4c614941d05d1f190ddf2665e6fbc4b07b623300/ro-manager-0.2.15.tar.gz" } ], "0.2.16": [ { "comment_text": "", "digests": { "md5": "6762ef2b928297a3ebabc29e249eb829", "sha256": "31230604f3d6cac59566cdcde70749906f9a94581b1390a1d0c8c8685f95a7ec" }, "downloads": -1, "filename": "ro-manager-0.2.16.tar.gz", "has_sig": false, "md5_digest": "6762ef2b928297a3ebabc29e249eb829", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 159587, "upload_time": "2013-08-08T16:10:39", "url": "https://files.pythonhosted.org/packages/00/10/0fb0594042bff18c7bc72e4cb23af1dcf19f925451d12951da7a88c6a640/ro-manager-0.2.16.tar.gz" } ], "0.2.17": [ { "comment_text": "", "digests": { "md5": "513d72d2e6257faccb87626357fb2d7d", "sha256": "452d285e2997a72ee19647fc1c725c4d302fe6284a7aef84f11927733ba55ae4" }, "downloads": -1, "filename": "ro-manager-0.2.17.tar.gz", "has_sig": false, "md5_digest": "513d72d2e6257faccb87626357fb2d7d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 162032, "upload_time": "2013-09-26T06:58:17", "url": "https://files.pythonhosted.org/packages/f2/0a/12126031e03130afb022077042093b058954868431564543cf79431d976c/ro-manager-0.2.17.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "ed89cb12d48d3d775734a93bb0347374", "sha256": "53ccab67d3c5e704802758ae5180f0c607770a2b3cb3aa44feb8130dc35dd93e" }, "downloads": -1, "filename": "ro-manager-0.2.2.tar.gz", "has_sig": false, "md5_digest": "ed89cb12d48d3d775734a93bb0347374", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71540, "upload_time": "2012-08-14T11:41:51", "url": "https://files.pythonhosted.org/packages/6d/3b/217e4b5ea684d987db83c4370e40ff04e72d7f9e2f24d3132ea0f85a6696/ro-manager-0.2.2.tar.gz" } ], "0.2.20": [ { "comment_text": "", "digests": { "md5": "b6fdeb1d12e7a46b06413a8f69ad04d6", "sha256": "5e372d23dbf435b96659ce1767c6247b64964e879da5afc9e09759e24b1e72d7" }, "downloads": -1, "filename": "ro-manager-0.2.20.tar.gz", "has_sig": false, "md5_digest": "b6fdeb1d12e7a46b06413a8f69ad04d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 166675, "upload_time": "2013-11-26T13:28:33", "url": "https://files.pythonhosted.org/packages/e4/f4/71a634cff165bfe544e4a8df5861346fb7b7e0a570c64f2bb350ac642221/ro-manager-0.2.20.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "0c7e0b86ab434de1ba44dc2f1b420550", "sha256": "379ea186f60d0a104da6f133ccf975f4d48cc692e224072ace53f148a159ae10" }, "downloads": -1, "filename": "ro-manager-0.2.3.tar.gz", "has_sig": false, "md5_digest": "0c7e0b86ab434de1ba44dc2f1b420550", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71650, "upload_time": "2012-08-14T13:53:00", "url": "https://files.pythonhosted.org/packages/14/7a/da26484e09ea2863f18f1b98b619c7e684805b2dd5ba3fa9483783d90f8c/ro-manager-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "88014108296ce07868d065b29dfcb50f", "sha256": "66b9d6e7bac724c89e05eab68794d1ef494839b124a82569a101f43269c3d319" }, "downloads": -1, "filename": "ro-manager-0.2.4.tar.gz", "has_sig": false, "md5_digest": "88014108296ce07868d065b29dfcb50f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96389, "upload_time": "2012-08-14T15:05:56", "url": "https://files.pythonhosted.org/packages/2f/e5/c12907131e07e930c8685842efeb64ff28cec8dde92b7ecc00ce8a073952/ro-manager-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "7d2f8dd473130e57e3e0a5a16908afe7", "sha256": "ade7a1df509d9158c152f408f80dbe40bdcbea1d51060193c5e87f3a40e52a3c" }, "downloads": -1, "filename": "ro-manager-0.2.5.tar.gz", "has_sig": false, "md5_digest": "7d2f8dd473130e57e3e0a5a16908afe7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97507, "upload_time": "2012-08-15T15:53:36", "url": "https://files.pythonhosted.org/packages/7e/00/78205d1fdded72fdf42a85a03f8ba8422928184e20a04d2644e357e63600/ro-manager-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "0e7b8a4f11f86859a70866b43880ab4a", "sha256": "fb6ca7a9f2b37c1870a2e5bcaa28a43593f3b707091e690d730943cb0b57607d" }, "downloads": -1, "filename": "ro-manager-0.2.6.tar.gz", "has_sig": false, "md5_digest": "0e7b8a4f11f86859a70866b43880ab4a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 100823, "upload_time": "2012-08-24T14:31:50", "url": "https://files.pythonhosted.org/packages/30/2e/f394b34f793d5411c790ea5154b54f6d884c79979f6b9eb3440e0e4e774b/ro-manager-0.2.6.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "1057fc849db3640aef58dca94c0dc3e3", "sha256": "c6e898d1c5858469a1462bc6544ebebe1c9b3fb9ef839aa1b2f83ba51140111e" }, "downloads": -1, "filename": "ro-manager-0.2.7.tar.gz", "has_sig": false, "md5_digest": "1057fc849db3640aef58dca94c0dc3e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97794, "upload_time": "2012-10-26T10:51:13", "url": "https://files.pythonhosted.org/packages/66/fc/ccce08ecfc49fd5ec0b4d424ced5e544114f7fa236c6458121e77fef36a8/ro-manager-0.2.7.tar.gz" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "38a4875428955404504e16f71dfa9ba6", "sha256": "0d3f03de7eb1e1453da855d23dd630d313d512c06d48d6c4c0b7230f0a44ce21" }, "downloads": -1, "filename": "ro-manager-0.2.8.tar.gz", "has_sig": false, "md5_digest": "38a4875428955404504e16f71dfa9ba6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 102188, "upload_time": "2013-01-15T22:53:15", "url": "https://files.pythonhosted.org/packages/43/2a/9a56bc685397cc5a2f551b845a53f1e4990c0de0f095b1ddf1e8c0afa6bf/ro-manager-0.2.8.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b6fdeb1d12e7a46b06413a8f69ad04d6", "sha256": "5e372d23dbf435b96659ce1767c6247b64964e879da5afc9e09759e24b1e72d7" }, "downloads": -1, "filename": "ro-manager-0.2.20.tar.gz", "has_sig": false, "md5_digest": "b6fdeb1d12e7a46b06413a8f69ad04d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 166675, "upload_time": "2013-11-26T13:28:33", "url": "https://files.pythonhosted.org/packages/e4/f4/71a634cff165bfe544e4a8df5861346fb7b7e0a570c64f2bb350ac642221/ro-manager-0.2.20.tar.gz" } ] }