{ "info": { "author": "Lan,Li; Parulian, Nikolaus; Ludaescher Bertram", "author_email": "", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Build Tools" ], "description": "# OR2YWTool\nOpenrefine to Yesworkflow model tool\n====================================\n\nThe Openrefine to Yesworkflow model(OR2YW) toolkit repository contains or2yw-examples folder,in which uses Ecology_Rodents dataset and NYPL(New York Public Library) Menu dataset as examples.\n\n**[Yesworkflow](https://github.com/yesworkflow-org/yw-prototypes)**.\n\n**[Openrefine](http://openrefine.org/)**.\n\nOverview\n--------\n\nThis tool aims to provide an auto-parsing method from Openrefine Operation History JSON file to Yesworklfow model. As we know, the openrefine operation history json file works as a data wrangling workflow. However, the structure of the workflow is not transparent enough, where we can not know the dependency and independency of column operations. And through yw model, it classify Openrefine operations into two levels: schema level and column level. \n\n1.Repo Structure\n------------------\n\n1.1 or2yw_examples\n\nfolder | Description\n----------------|------------\nEcology_rodents | [Portal_rodents_19772002_scinameUUIDs.csv](https://ndownloader.figshare.com/files/7823341)\nNYPL | [What's on the Menu?](http://menus.nypl.org/data)\n\n\n\nTake NYPL folder as an example:\n\nfolder | Function\n--------------|------------\ndataset | \"messy dataset\"\nfacts | \"File for storing prolog facts about scripts\"\ngv | Save the DOT output to a file\npdf | Render gv file as PDF file using Graphviz's dot command\npng | Render gv file as PNG file using Graphviz's dot command\nresults | Screenshot the models\nscript | Auto-parsing file: Linear/Serial-Parallell and the Openrefine json file\nyw | The parsed yw comments\nyw.properties | yw settings for graph(yw) command\nyw_generate.sh| cheatsheet command\n\n1.2 or2ywtool \n\nThis tool is aimed to connect OpenRefine Recipe which is written in JSON format with Yesworkflow, where it can generate the Parallel and Serial conceptual model. And in this way, the depedency relationships between each data cleaning steps can be shown clearly.\n\n\n\n\n\n2.Toolkit Usage\n----------------\n1. Python Version : 3+\n\n Install the or2yw package from pip install: \n\n $ pip install or2ywtool\n\n(Note: double check the pip version, if pip is for version 2, then use pip3 install...)\nif you want to upgrade the version for or2ywtool\n\n $ pip install upgrade or2ywtool\n\n2. After successfully install the or2yw tool, there are two ways using this tool.\n\n2.1 Generate yw file , copy and paste on Yesworkflow Editor (No need to install other dependency packages)\n\n $ or2yw\n usage: __main__.py [-h] [-i INPUT] [-o OUTPUT] [-t TYPE] [-ot OUTPUTTYPE]\n [-j JAVA] [-dot DOT] [-title TITLE] [-desc DESCRIPTION]\n\n OR2YW v0.0.1\n\n optional arguments:\n -h, --help show this help message and exit\n -i INPUT, --input INPUT\n openrefine json file\n -o OUTPUT, --output OUTPUT\n yesworkflow output file\n -t TYPE, --type TYPE Workflow Type, Produce [serial,parallel] workflow,\n Default: serial\n -ot OUTPUTTYPE, --outputtype OUTPUTTYPE\n Output Type, Produce output [yw,gv,png,svg,pdf],\n Default: yw (only yw for now other file type will\n available in the next release)\n -j JAVA, --java JAVA Java Path, if not initialized will use the java\n installation environment path\n -dot DOT, --dot DOT Dot Path, if not initialized will use the dot\n installation environment path\n -title TITLE, --title TITLE\n Title for the Workflow\n -desc DESCRIPTION, --description DESCRIPTION\n Description for the Workflow\n\n a. Generate Serial yw file:\n\n $ or2yw -i or2ywtool/test.json -o test.yw\n\n b. Generate Parallel yw file:\n\n $ or2yw -i or2ywtool/test.json -o test.yw -t parallel\n\n c. Test on Yesworkflow Editor: [Yesworkflow](http://try.yesworkflow.org/)\n\n2.2 Generate pdf/png with tool. (**Require Graphviz install)\n\n a. Check your graphviz version:\n\n $ dot -V \n dot - graphviz version 2.39.20160823.1445 (20160823.1445)\n libdir = \"/usr/local/lib/graphviz\"\n Activated plugin library: libgvplugin_dot_layout.6.dylib\n Using layout: dot:dot_layout\n Activated plugin library: libgvplugin_core.6.dylib\n Using render: dot:core\n Using device: dot:dot:core\n The plugin configuration file:\n /usr/local/lib/graphviz/config6\n was successfully loaded.\n render\t: dot dot_json fig json json0 map mp pic pov ps quartz svg tk vml xdot xdot_json\n layout\t: circo dot fdp neato nop nop1 nop2 osage patchwork sfdp twopi\n textlayout\t: textlayout\n device\t: bmp canon cgimage cmap cmapx cmapx_np dot dot_json eps exr fig gif gv icns ico imap imap_np ismap jp2 jpe jpeg jpg json json0 mp pct pdf pic pict plain plain-ext png pov ps ps2 psd sgi svg svgz tga tif tiff tk vml vmlz xdot xdot1.2 xdot1.4 xdot_json\n loadimage\t: (lib) bmp eps gif jpe jpeg jpg pdf png ps svg\n\n **Do check your dot information, there may occur some issues like: \"Format: pdf/png not recognized...., then make sure the device can support the formats here.\"\n\n b. Install the latest version [Download Graphviz](https://www.graphviz.org/download/):\n\n 1). For Mac users (ex.use Homebrew):\n\n $ brew install graphviz\n\n 2). For Windows users, choose one of the methods from the [download](https://www.graphviz.org/download/) website\n\n\n 3). For Linux users, choose one of the methods from the [download](https://www.graphviz.org/download/) website\n\n c.If the format is not recognized:\n\n\n\n\n\n d. Use the command to generate the Yesworkflow PDF/PNG file (insert the json file in the correct path, and the output file name):\n\n ex1. Generate **Parallel Yesworkflow model PDF file:\n\n $ or2yw -i or2ywtool/test.json -o testa.pdf -ot pdf -t parallel\n\n ex2. Generate **Parallel Yesworkflow model PNG file:\n\n $ or2yw -i or2ywtool/test.json -o testa.png -ot png -t parallel\n\n ex3. Generate **Linear Yesworkflow model PDF file:\n\n $ or2yw -i or2ywtool/test.json -o testa.pdf -ot pdf\n\n ex4. Generate **Linear Yesworkflow model PNG file:\n\n $ or2yw -i or2ywtool/test.json -o testa.png -ot png\n\n\n\n\n\n\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/LanLi2017/OR2YWTool", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "or2ywtool", "package_url": "https://pypi.org/project/or2ywtool/", "platform": "", "project_url": "https://pypi.org/project/or2ywtool/", "project_urls": { "Homepage": "https://github.com/LanLi2017/OR2YWTool" }, "release_url": "https://pypi.org/project/or2ywtool/0.0.16/", "requires_dist": [ "networkx" ], "requires_python": "", "summary": "OR2YW Tool", "version": "0.0.16" }, "last_serial": 5591371, "releases": { "0.0.13": [ { "comment_text": "", "digests": { "md5": "2f6b9807d182c30b1e976d6f5fa055a8", "sha256": "81c9a1cff50860cc6a51670360e2cb3c26e4489e4948db96d00536de8a936f37" }, "downloads": -1, "filename": "or2ywtool-0.0.13-py3-none-any.whl", "has_sig": false, "md5_digest": "2f6b9807d182c30b1e976d6f5fa055a8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11396908, "upload_time": "2019-04-25T03:22:17", "url": "https://files.pythonhosted.org/packages/bf/2b/ecc7453b89d65ae26ea2412af37d55002dfc0001c3045d4ef60235e70cdf/or2ywtool-0.0.13-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f9f3f7083078d73c5a4c75efab127ae6", "sha256": "36aa44412a7639e82b49ba43e36d94f316763fb9eeec433a52425741de302de9" }, "downloads": -1, "filename": "or2ywtool-0.0.13.tar.gz", "has_sig": false, "md5_digest": "f9f3f7083078d73c5a4c75efab127ae6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14857, "upload_time": "2019-04-25T03:22:24", "url": "https://files.pythonhosted.org/packages/92/f9/261afce7ab3463b37a9e26f305d2d675809ccded9020551588f2ee477512/or2ywtool-0.0.13.tar.gz" } ], "0.0.14": [ { "comment_text": "", "digests": { "md5": "4255e0d9ba5e3dec53a9a75bd89a24f9", "sha256": "0292ba08bc3b931dd8f74bf43a2f0677851a2bd46da6138e662da08ef41b393d" }, "downloads": -1, "filename": "or2ywtool-0.0.14-py3-none-any.whl", "has_sig": false, "md5_digest": "4255e0d9ba5e3dec53a9a75bd89a24f9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11396950, "upload_time": "2019-07-21T00:31:58", "url": "https://files.pythonhosted.org/packages/d1/3f/a72557b71f0ee41f2c4230827823ac5863d9b488533c3afec8d2a08b3dc5/or2ywtool-0.0.14-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9fd6fd00f594104751648d84f6a9b668", "sha256": "c14d3496c7a0c044d89c5a118742d6de5f67519d662252a9559c46c3069d275a" }, "downloads": -1, "filename": "or2ywtool-0.0.14.tar.gz", "has_sig": false, "md5_digest": "9fd6fd00f594104751648d84f6a9b668", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14881, "upload_time": "2019-07-21T00:32:11", "url": "https://files.pythonhosted.org/packages/98/1a/25a91a2e9a6d31c28088b86d9b02899e094c4176d585804e3a3b1ca954f0/or2ywtool-0.0.14.tar.gz" } ], "0.0.15": [ { "comment_text": "", "digests": { "md5": "ba026ae092e1ffdea685ad8224a3c567", "sha256": "2db586d58d0b684d836687d3fc0a1cf59990d10dacdc48e56b7e0293b7b54e91" }, "downloads": -1, "filename": "or2ywtool-0.0.15-py3-none-any.whl", "has_sig": false, "md5_digest": "ba026ae092e1ffdea685ad8224a3c567", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11396955, "upload_time": "2019-07-27T00:21:03", "url": "https://files.pythonhosted.org/packages/a0/24/956e25a6fa4cdeb4a9d5267c2359aac78e776e1c08140ed1b45851eaa878/or2ywtool-0.0.15-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "087e3ceaeacb3f67eb9c3b20c57ee379", "sha256": "939f3430807e3c1706507dfb7fcb6226370c917f672785a166a227a294a712ee" }, "downloads": -1, "filename": "or2ywtool-0.0.15.tar.gz", "has_sig": false, "md5_digest": "087e3ceaeacb3f67eb9c3b20c57ee379", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14884, "upload_time": "2019-07-27T00:21:06", "url": "https://files.pythonhosted.org/packages/bc/25/80e2565327291fdc6c2b761c82868574f89a7ff43886a7b29ff387c2fc0b/or2ywtool-0.0.15.tar.gz" } ], "0.0.16": [ { "comment_text": "", "digests": { "md5": "2b3e966f11c12b315f0d45d3d79bd799", "sha256": "899406f1dda0304134e4ef3614aa3bb85460d46c397b7731c317215a9e30cd5b" }, "downloads": -1, "filename": "or2ywtool-0.0.16-py3-none-any.whl", "has_sig": false, "md5_digest": "2b3e966f11c12b315f0d45d3d79bd799", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11397003, "upload_time": "2019-07-27T00:45:13", "url": "https://files.pythonhosted.org/packages/22/ec/50a003fcbe3f8ca0732145de9230cf0572bee471070ba7c60125a370e1b8/or2ywtool-0.0.16-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "61ef3081ed445ac3ee72142a2a884620", "sha256": "1d056a5fc5ca1b68ed0c1a46a83434226e9a4d3d561fba93bfe58e3d8382967c" }, "downloads": -1, "filename": "or2ywtool-0.0.16.tar.gz", "has_sig": false, "md5_digest": "61ef3081ed445ac3ee72142a2a884620", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14927, "upload_time": "2019-07-27T00:45:16", "url": "https://files.pythonhosted.org/packages/b9/d6/5a1db80112998ed69aba75a7a043ea934d6e6c21423b5437fb119524d5ce/or2ywtool-0.0.16.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "7b94e245d93755961020af971cfdebb0", "sha256": "b79e92cc1e0e4168b93ce367ed5dfa8b64eb868a043428f394185446a42e9e3a" }, "downloads": -1, "filename": "or2ywtool-0.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "7b94e245d93755961020af971cfdebb0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11394094, "upload_time": "2018-11-18T15:23:40", "url": "https://files.pythonhosted.org/packages/f6/48/bc208346c6e4fa59bdfb655c3357ee819caf9766fbbf156d0bfd20507f39/or2ywtool-0.0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4ee0ed2901af72f8ee0a99bb2eebfb13", "sha256": "eff992f6d1516cf53af7ee6e4993daaed9b7f9f1920f381ba86de0f2e75937b1" }, "downloads": -1, "filename": "or2ywtool-0.0.2.tar.gz", "has_sig": false, "md5_digest": "4ee0ed2901af72f8ee0a99bb2eebfb13", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9349, "upload_time": "2018-11-18T15:23:44", "url": "https://files.pythonhosted.org/packages/6c/58/85529791302d1868bb84a046fe3b316f26c92c1a7d6ba7c963e45011de97/or2ywtool-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "069a5c3810bc8681a688959a94126bb8", "sha256": "aa085f7a2f9f9cff1491c820bd1a40e5bb8ba714b22d6aa028ecd9c1c5bd10c7" }, "downloads": -1, "filename": "or2ywtool-0.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "069a5c3810bc8681a688959a94126bb8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11394165, "upload_time": "2018-11-30T10:00:17", "url": "https://files.pythonhosted.org/packages/5f/70/f7b165188823af10a9fa3925ced17faf3277dd434c081b8c8aba933940e7/or2ywtool-0.0.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "116526d2d72255d518549daa5ad0fa34", "sha256": "fd087ba74de0f2ac963c21df92202506f83ed2fa34fcb9d4ff14e1c9031a31c5" }, "downloads": -1, "filename": "or2ywtool-0.0.3.tar.gz", "has_sig": false, "md5_digest": "116526d2d72255d518549daa5ad0fa34", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9421, "upload_time": "2018-11-30T10:00:20", "url": "https://files.pythonhosted.org/packages/28/06/d58b1e46dc392ac4cebb909eea186414fae3f95ac49417d165cad2bb4385/or2ywtool-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "482ee19bad49d4ad26c9de980e60f655", "sha256": "adfbc945fd62a32cc42ea1ac543785885d5b9188e401e4b5bc182d711465e5ba" }, "downloads": -1, "filename": "or2ywtool-0.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "482ee19bad49d4ad26c9de980e60f655", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11394385, "upload_time": "2018-11-30T17:42:32", "url": "https://files.pythonhosted.org/packages/ea/6f/43dd913508c2b20107021bb5ae09af14f280bf11902f49d213eaee4c573f/or2ywtool-0.0.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2695dc798f4d70f621be51e386c84778", "sha256": "509e211f0edf7fb8449a854b58d96697a3c8bb9baa54508aff9561bd98a863de" }, "downloads": -1, "filename": "or2ywtool-0.0.4.tar.gz", "has_sig": false, "md5_digest": "2695dc798f4d70f621be51e386c84778", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9691, "upload_time": "2018-11-30T17:42:34", "url": "https://files.pythonhosted.org/packages/61/94/42a3477cb83aaa911ef36669d472055f1670c28e34a52400981192a39be0/or2ywtool-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "74ca3f70b711c6921edc9325edaa2d12", "sha256": "6c71c3fb80237676ce8e43af320838a3c3abb3c12609da5fd481d73270db759e" }, "downloads": -1, "filename": "or2ywtool-0.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "74ca3f70b711c6921edc9325edaa2d12", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11396073, "upload_time": "2019-04-10T22:07:25", "url": "https://files.pythonhosted.org/packages/a5/62/60340207a3a54db5958a5985a8bb0be7ad837d592c587fb1c159d4132d80/or2ywtool-0.0.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4bdb78e96957d6ee11a7599d042a6f55", "sha256": "5dc091386e410cd35cd85fc490842feba3c63371a8b8647227f2dd527461ccdc" }, "downloads": -1, "filename": "or2ywtool-0.0.5.tar.gz", "has_sig": false, "md5_digest": "4bdb78e96957d6ee11a7599d042a6f55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11432, "upload_time": "2019-04-10T22:07:29", "url": "https://files.pythonhosted.org/packages/e2/0f/6e2c3188cbc5eceb6583171baae320376faf721a23d2393a3b3ac7a0e133/or2ywtool-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "791dc8e12dcdfac5864e5ad0b43aa135", "sha256": "c8f0a491f8684a6e964be14cf3889314de9d4ebbe9826fadb3a7fe2b960fb461" }, "downloads": -1, "filename": "or2ywtool-0.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "791dc8e12dcdfac5864e5ad0b43aa135", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11396086, "upload_time": "2019-04-19T17:53:08", "url": "https://files.pythonhosted.org/packages/95/1c/583feafa37edcf9d221e83ddd8a5eae5fa72902e4f3e54dd32cc106f0f8e/or2ywtool-0.0.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6ace1742b3954396c90d7f537bc05188", "sha256": "1ffbae9db68bab965ce33a469d1b06fa2e3106ca42091bf5bab4a51284f54a8f" }, "downloads": -1, "filename": "or2ywtool-0.0.6.tar.gz", "has_sig": false, "md5_digest": "6ace1742b3954396c90d7f537bc05188", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11458, "upload_time": "2019-04-19T17:53:11", "url": "https://files.pythonhosted.org/packages/5b/68/3b4fe5115952fa60daa6a10040a59fcbee1021106dc58580c7d9111bd895/or2ywtool-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "811c51bc64a3db24450214a7d7c9510f", "sha256": "42baf290464064377c64829581b8cecf7c4993c959427ddcbd84cb80b19b6295" }, "downloads": -1, "filename": "or2ywtool-0.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "811c51bc64a3db24450214a7d7c9510f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11396898, "upload_time": "2019-04-25T03:22:20", "url": "https://files.pythonhosted.org/packages/c9/60/5a0216e04d8652198f42037aa43fb73769a86061f73b73d5552f14d67495/or2ywtool-0.0.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "de5753b2a03b64d769da03f79d824e75", "sha256": "8b5ee616f023dc814ad45dfa3e654c8833e6a2aa626e7f6c7fc700421b5b7459" }, "downloads": -1, "filename": "or2ywtool-0.0.7.tar.gz", "has_sig": false, "md5_digest": "de5753b2a03b64d769da03f79d824e75", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14860, "upload_time": "2019-04-25T03:22:25", "url": "https://files.pythonhosted.org/packages/93/cb/26a1859cc21f877934d080141e39c856ac733d9da5dd532deba506664c34/or2ywtool-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "2d6347a487647eff2862d4deead5ca46", "sha256": "fab81c2a2b7034cc0ff55146808d46c248a6f44faa3ef18a16ed2213b45d9313" }, "downloads": -1, "filename": "or2ywtool-0.0.8-py3-none-any.whl", "has_sig": false, "md5_digest": "2d6347a487647eff2862d4deead5ca46", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11396884, "upload_time": "2019-04-29T20:06:55", "url": "https://files.pythonhosted.org/packages/c5/83/e6e21752ddcafcbe3c93fab47c23a425d7dc0478e95cd242cc877c79960c/or2ywtool-0.0.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9f3c01378d0212b3994ea74eae44d1a0", "sha256": "52f8611d3c683c29b6a9f514a4801139f1982dd85bbbaf963b4b638c7b04e1fd" }, "downloads": -1, "filename": "or2ywtool-0.0.8.tar.gz", "has_sig": false, "md5_digest": "9f3c01378d0212b3994ea74eae44d1a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14858, "upload_time": "2019-04-29T20:07:06", "url": "https://files.pythonhosted.org/packages/b3/79/7f1c98390b529957783e91fde0a9eb535cfb206280debdf5e27a7ecfbf64/or2ywtool-0.0.8.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "2b3e966f11c12b315f0d45d3d79bd799", "sha256": "899406f1dda0304134e4ef3614aa3bb85460d46c397b7731c317215a9e30cd5b" }, "downloads": -1, "filename": "or2ywtool-0.0.16-py3-none-any.whl", "has_sig": false, "md5_digest": "2b3e966f11c12b315f0d45d3d79bd799", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11397003, "upload_time": "2019-07-27T00:45:13", "url": "https://files.pythonhosted.org/packages/22/ec/50a003fcbe3f8ca0732145de9230cf0572bee471070ba7c60125a370e1b8/or2ywtool-0.0.16-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "61ef3081ed445ac3ee72142a2a884620", "sha256": "1d056a5fc5ca1b68ed0c1a46a83434226e9a4d3d561fba93bfe58e3d8382967c" }, "downloads": -1, "filename": "or2ywtool-0.0.16.tar.gz", "has_sig": false, "md5_digest": "61ef3081ed445ac3ee72142a2a884620", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14927, "upload_time": "2019-07-27T00:45:16", "url": "https://files.pythonhosted.org/packages/b9/d6/5a1db80112998ed69aba75a7a043ea934d6e6c21423b5437fb119524d5ce/or2ywtool-0.0.16.tar.gz" } ] }