{ "info": { "author": "Kevin Walchko", "author_email": "walchko@users.noreply.github.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Application Frameworks", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": ".. image:: https://raw.githubusercontent.com/MomsFriendlyRobotCompany/pyxl320/master/pics/complex.gif\n :align: center\n :width: 300px\n :target: https://github.com/walchko/pyxl320\n :alt: animated gif\n\npyXL320\n=========\n\n\n.. image:: https://img.shields.io/pypi/v/pyxl320.svg\n :target: https://pypi.python.org/pypi/pyxl320/\n :alt: Latest Version\n.. image:: https://img.shields.io/pypi/l/pyxl320.svg\n :target: https://pypi.python.org/pypi/pyxl320/\n :alt: License\n.. image:: https://travis-ci.org/MomsFriendlyRobotCompany/pyxl320.svg?branch=master\n :target: https://travis-ci.org/MomsFriendlyRobotCompany/pyxl320\n\n\nThis is still a work in progress and **only** supports XL-320 and **only**\nversion 2.0 of their protocol. The library is divided up as follows:\n\n - pyxl320\n \t- **ServoSerial** - half duplex hardware serial interface\n\t- **Packet** - creates packets to talk to the servo\n\t- **utils** - misc\n\t- **xl320** - register/command/error definitions for Dynamixel's XL-320 servo\n\n**New:** pyXL320 now supports python2 and python3.\n\nSetup\n--------\n\nInstall\n~~~~~~~~~~~~~\n\nThe suggested way to install this is via the ``pip`` command as follows::\n\n\tpip install pyxl320\n\nDevelopment\n~~~~~~~~~~~~~\n\nTo submit git pulls, clone the repository and set it up as follows::\n\n\tgit clone https://github.com/walchko/pyxl320\n\tcd pyxl320\n\tpip install -r requirements\n\tpip install -e .\n\nUsage\n--------\n\nThe ``\\bin`` directory has a number of useful programs to set servo position or ID number. Just\nrun the command with the ``--help`` flag to see how to use it.\n\n==================== ==============================================================\nCommand Description\n==================== ==============================================================\n``servo_ping.py`` pings one or all of the servos\n``servo_reboot.py`` reboots one or all servos\n``servo_reset.py`` resets one or all servos to a specified level\n``set_angle.py`` sets the angle of a given servo\n``set_baud_rate.py`` change the baud rate of the servos\n``set_id.py`` changes the ID number for a given servo\n==================== ==============================================================\n\n`Documentation `_\n-------------------------------------------------------------------------------------\n\nThe documents are stored in markdown files in the repo `here `_\nand cover hardware interface and software development. However, a simple example to turn the servo\nand turn the LED to green using a USB serial converter:\n\n.. code-block:: python\n\n\tfrom pyxl320 import xl320\n\tfrom pyxl320 import ServoSerial, Packet, utils\n\n\tserial = ServoSerial('/dev/tty.usbserial') # tell it what port you want to use\n\t# serial = ServoSerial('/dev/tty.usbserial', fake=True) # use a dummy serial interface for testing\n\tserial.open()\n\n\tpkt = Packet.makeServoPacket(1, 158.6) # move servo 1 to 158.6 degrees\n\tret = serial.sendPkt(pkt) # send packet, I don't do anything with the returned status packet\n\n\tpkt = packet.makeLEDPacket(1, pyxl320.XL320_LED_GREEN)\n\tret = serial.sendPkt(pkt)\n\tprint('Status packet:', ret) # here I print out the status packet returned\n\nAlthough I have made some packet creators (like LED and Servo), you can make\nyour own using the basic ``makeWritePacket`` and ``makeReadPacket``.\n\n.. code-block:: python\n\n\tfrom pyxl320 import Packet, xl320\n\tfrom pyxl320.Packet import le # creates little endian numbers\n\n\t# let's make our own servo packet that sends servo 3 to 220.1 degrees\n\tID = 3\n\treg = xl320.XL320_GOAL_POSITION\n\tparams = le(int(220.1/300*1023)) # convert 220.1 degrees to an int between 0-1023\n\tpkt = Packet.makeWritePacket(ID, reg, params)\n\nRobot Examples\n------------------\n\nHere are some example `robots `_\n\nChange Log\n-------------\n\n========== ======= =============================\n2017-04-01 0.9.0 added python3 support\n2017-03-26 0.8.0 major overhaul and removed the GPIO stuff\n2017-03-19 0.7.7 can switch between GPIO pin and pyserial.setRTS()\n2017-02-20 0.7.6 small fixes and added servo_reboot\n2017-01-16 0.7.5 fixes some small errors\n2016-11-29 0.7.4 add bulk write and small changes\n2016-10-11 0.7.1 small changes/updates\n2016-09-12 0.7.0 refactoring, still working on API\n2016-09-05 0.5.0 published to PyPi\n2016-08-16 0.0.1 init\n========== ======= =============================\n\nSoftware License\n------------------------\n\n**The MIT License (MIT)**\n\nCopyright (c) 2016 Kevin J. Walchko\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/walchko/pyxl320", "keywords": "dynamixel,xl320,xl-320,servo,actuator,library,robotics,robot,smart,spider", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "pyxl320", "package_url": "https://pypi.org/project/pyxl320/", "platform": "", "project_url": "https://pypi.org/project/pyxl320/", "project_urls": { "Homepage": "http://github.com/walchko/pyxl320" }, "release_url": "https://pypi.org/project/pyxl320/0.10.0/", "requires_dist": [ "pyserial", "simplejson", "build-utils" ], "requires_python": "", "summary": "A library to control dynamixel XL-320 servos with python", "version": "0.10.0" }, "last_serial": 3527576, "releases": { "0.10.0": [ { "comment_text": "", "digests": { "md5": "c585a7168445eb6e3c510942b9c31b48", "sha256": "6f918f62db26d318fd6ffd4c893e917551cf8c506d4e282a42c2cb46e32257e8" }, "downloads": -1, "filename": "pyxl320-0.10.0-py2-none-any.whl", "has_sig": false, "md5_digest": "c585a7168445eb6e3c510942b9c31b48", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 26952, "upload_time": "2018-01-27T20:00:58", "url": "https://files.pythonhosted.org/packages/d0/22/f62fe0987abaecad4068de8331d3da724e4a1b22ea3d7638bf7ecc03f227/pyxl320-0.10.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "285073a945aaed6c02744f2542d0e58e", "sha256": "d3024db475953b6dec087f41519ffdbc7311859872eb0a8e3b1652b17bcfb87f" }, "downloads": -1, "filename": "pyxl320-0.10.0-py3-none-any.whl", "has_sig": false, "md5_digest": "285073a945aaed6c02744f2542d0e58e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26952, "upload_time": "2018-01-27T20:00:59", "url": "https://files.pythonhosted.org/packages/79/a1/790ee23ccad33d2b11ca251010c3e2c644069be20a95ce2cf09b7c0bab4c/pyxl320-0.10.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2f58811196faf619a80034c75b4daaf3", "sha256": "5fdd4e1123096229da5a74021a4c9d97628c2c092cd7334cd3e2de2a89263d97" }, "downloads": -1, "filename": "pyxl320-0.10.0.tar.gz", "has_sig": false, "md5_digest": "2f58811196faf619a80034c75b4daaf3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19697, "upload_time": "2018-01-27T20:01:00", "url": "https://files.pythonhosted.org/packages/6c/2f/99e4ef1b5c85a7c8c000b8ca9d2cac29e183a9ccdd3488e765525d8c9583/pyxl320-0.10.0.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "55cc3a2da22db17191d44461b3afba15", "sha256": "e4997cb1e0b5964d818b262adce75561d65c9e3b30f44ffc8105d261428cd4da" }, "downloads": -1, "filename": "pyxl320-0.5.0.tar.gz", "has_sig": false, "md5_digest": "55cc3a2da22db17191d44461b3afba15", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9706, "upload_time": "2016-09-06T02:44:47", "url": "https://files.pythonhosted.org/packages/9f/13/c6e62dc7e38790a27c3bdb60954edcca0081edd661b8401aea56d55830f3/pyxl320-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "04f47a234995c411002fa0cfb8c6b88d", "sha256": "cabce6fccbf5aecd67e3fb6e45cea00a28a3234cfa7617ae0d7941b3ca7bdc32" }, "downloads": -1, "filename": "pyxl320-0.5.1.tar.gz", "has_sig": false, "md5_digest": "04f47a234995c411002fa0cfb8c6b88d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9709, "upload_time": "2016-09-06T02:51:55", "url": "https://files.pythonhosted.org/packages/e9/01/d7566db08e8e391a20b0d0838f9db5fb32a655effee31689d0972c673b59/pyxl320-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "9ed8a1f9df9b278a1902c65437362cfb", "sha256": "24315bb832e3ae41be89288e69cc941c7fdeab4cae2c38c46919d854599e9910" }, "downloads": -1, "filename": "pyxl320-0.5.2.tar.gz", "has_sig": false, "md5_digest": "9ed8a1f9df9b278a1902c65437362cfb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9712, "upload_time": "2016-09-06T02:57:04", "url": "https://files.pythonhosted.org/packages/b0/9f/42a72360b7fce2daa2bab820a218d5e2399863b62763d44a36b3a20dcd01/pyxl320-0.5.2.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "f91ca7172b31625fec13f850798201f3", "sha256": "f795b6faae6a0a1cd5ca7cd6393c48c7ad3ebdbcb46080785804c73cff40546d" }, "downloads": -1, "filename": "pyxl320-0.7.0.tar.gz", "has_sig": false, "md5_digest": "f91ca7172b31625fec13f850798201f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14850, "upload_time": "2016-09-13T03:55:40", "url": "https://files.pythonhosted.org/packages/a2/02/bf94acb91fdb099c3c63bae88d67d4022d5727163c4535c105c442f9343b/pyxl320-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "a72f979f2b2a5a139e8dd07c7c91fe40", "sha256": "ff18acc9598738164ee0edce7c1383bf46cdf2a3d1fea4bf280fa210edd0cbe2" }, "downloads": -1, "filename": "pyxl320-0.7.1-py2-none-any.whl", "has_sig": false, "md5_digest": "a72f979f2b2a5a139e8dd07c7c91fe40", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 18103, "upload_time": "2016-10-12T04:24:58", "url": "https://files.pythonhosted.org/packages/2f/96/70d30835c5090cdabf12aa3532cea4d177386529b9a472bb23d1cb5aa03d/pyxl320-0.7.1-py2-none-any.whl" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "ea6ff007e915ba5b61caa970ac781248", "sha256": "ec4bb9df3a973fa1e0963639fe15cbef08e48a7a149b3d8066733ef0e2cc3119" }, "downloads": -1, "filename": "pyxl320-0.8.0-py2-none-any.whl", "has_sig": false, "md5_digest": "ea6ff007e915ba5b61caa970ac781248", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 23771, "upload_time": "2017-04-03T01:40:24", "url": "https://files.pythonhosted.org/packages/d2/62/80d45d02379408d6a2fbadf67e2fdc12a564f224f1b46be0c08a5129700c/pyxl320-0.8.0-py2-none-any.whl" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "e2287136922c0926fdc11f08ac9fa3d6", "sha256": "2391753ca542c0ce6f005f0d1feb76ed0966501c9b2867b5d86fb35afa3a005e" }, "downloads": -1, "filename": "pyxl320-0.8.1-py2-none-any.whl", "has_sig": false, "md5_digest": "e2287136922c0926fdc11f08ac9fa3d6", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 23792, "upload_time": "2017-04-03T02:06:46", "url": "https://files.pythonhosted.org/packages/ee/7c/0903af15b9cb742f936313a4848bf277343b9a8ed372bab035c7fb89f0e1/pyxl320-0.8.1-py2-none-any.whl" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "af22eb9fe2a12f64bf7a92a0280024fd", "sha256": "2548f57f8484733ed9933a2c1b9b66fe54caf5d29f664b49857d39b6db9159dd" }, "downloads": -1, "filename": "pyxl320-0.9.0-py2-none-any.whl", "has_sig": false, "md5_digest": "af22eb9fe2a12f64bf7a92a0280024fd", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 24024, "upload_time": "2017-04-08T17:40:59", "url": "https://files.pythonhosted.org/packages/2f/bf/e7ce39d84cce2ab07115c7ac36948370c31fe2769d9b6aa1f6af63f170b7/pyxl320-0.9.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7707f389f085bcb12c17ded5d59db440", "sha256": "81ba87a67eb82ed370b4514793c2ca8ad0f9297d14a237af0fbb0e2fb1549859" }, "downloads": -1, "filename": "pyxl320-0.9.0-py3-none-any.whl", "has_sig": false, "md5_digest": "7707f389f085bcb12c17ded5d59db440", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 24023, "upload_time": "2017-04-08T17:41:01", "url": "https://files.pythonhosted.org/packages/ab/c4/1490e8a667261271e49a99d6d826ceaf035e415a577d484b0f7b6814cb96/pyxl320-0.9.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "719650b15523e0697e9db5076f00a73e", "sha256": "60ac33d0bebb1a75707bde9d21dee09db119570deb83234223926dd153def74b" }, "downloads": -1, "filename": "pyxl320-0.9.0.tar.gz", "has_sig": false, "md5_digest": "719650b15523e0697e9db5076f00a73e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18337, "upload_time": "2017-04-08T17:41:03", "url": "https://files.pythonhosted.org/packages/df/45/7c73adb200fd9a2a2633efc3a836b993d74ee46f6876c19ccec799647e23/pyxl320-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "bbf0dbb3da1a9235b81c0e44a225d666", "sha256": "af417ccc313cc46718c3ed98437ddc7243c991e100961b82a9c399264666c1b3" }, "downloads": -1, "filename": "pyxl320-0.9.1-py2-none-any.whl", "has_sig": false, "md5_digest": "bbf0dbb3da1a9235b81c0e44a225d666", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 23977, "upload_time": "2017-04-11T04:34:10", "url": "https://files.pythonhosted.org/packages/d2/ba/7efc1df42e38160f7d389989767dbd7bba21e9059e0616184133afbe8d72/pyxl320-0.9.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fbcd9d6a6b4e1114fb41f2288f0d1692", "sha256": "188de53068a0c585e2ea9efd39f106c0d23409f576cff3d869ca300334f8acda" }, "downloads": -1, "filename": "pyxl320-0.9.1-py3-none-any.whl", "has_sig": false, "md5_digest": "fbcd9d6a6b4e1114fb41f2288f0d1692", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23977, "upload_time": "2017-04-11T04:34:12", "url": "https://files.pythonhosted.org/packages/63/a0/fe61bad95bffb293e357dc0aebb23033fea937a7bc2a186f1cac04d02bbf/pyxl320-0.9.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0f813c619607cef186f2fd2dd9e7dfd6", "sha256": "9398ce3f31954dea701620db2120c694d450acf8e719527779c49f36bb411c3e" }, "downloads": -1, "filename": "pyxl320-0.9.1.tar.gz", "has_sig": false, "md5_digest": "0f813c619607cef186f2fd2dd9e7dfd6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17661, "upload_time": "2017-04-11T04:34:14", "url": "https://files.pythonhosted.org/packages/44/89/1cd167d921fa0a81c1528448832ea249cd0399cd6f5c6821ccbecb2d42a6/pyxl320-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "85bc8096e4d5e9f70979eba9c277082e", "sha256": "819316db22e76ff8939ef1c68c16694c1f6220971a70f0a03928d641022b668f" }, "downloads": -1, "filename": "pyxl320-0.9.2-py2-none-any.whl", "has_sig": false, "md5_digest": "85bc8096e4d5e9f70979eba9c277082e", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 23989, "upload_time": "2017-04-11T04:36:04", "url": "https://files.pythonhosted.org/packages/64/fa/b5ccccde02c74611f69fcc10130efb5cdad1fec922b004128ec67ac25a89/pyxl320-0.9.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b780231dc036ecf492c178570f81c719", "sha256": "29ea34c8a8c9d95832a1cb433c69c0fcdc56e334537bfc753405a395a35900ac" }, "downloads": -1, "filename": "pyxl320-0.9.2-py3-none-any.whl", "has_sig": false, "md5_digest": "b780231dc036ecf492c178570f81c719", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23987, "upload_time": "2017-04-11T04:36:06", "url": "https://files.pythonhosted.org/packages/c2/df/a195e64229cb4f423e12db47639f893039f4705e93ef1a9633526cbfe27f/pyxl320-0.9.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a552fa0446838beaf17fe790b28fb982", "sha256": "95ff15dea9d896b1ea0f8d405bbc94d351ff74b4709ae80519dc08e9d0a046dd" }, "downloads": -1, "filename": "pyxl320-0.9.2.tar.gz", "has_sig": false, "md5_digest": "a552fa0446838beaf17fe790b28fb982", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17710, "upload_time": "2017-04-11T04:36:08", "url": "https://files.pythonhosted.org/packages/c5/0f/3a272877ef8613349579cd45b99aec63048aa1aa61e4c4aa414595cd3d17/pyxl320-0.9.2.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "3e7e549d89b4928d58c536a43a157cd3", "sha256": "21e2ec8952dbbaf2f45d7d60708a25e87c4c1789a8f99fd67b0e4a70e4fc6178" }, "downloads": -1, "filename": "pyxl320-0.9.3-py2-none-any.whl", "has_sig": false, "md5_digest": "3e7e549d89b4928d58c536a43a157cd3", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 23990, "upload_time": "2017-04-11T05:07:57", "url": "https://files.pythonhosted.org/packages/b0/79/5af623a458bb1bfba25b8a78ec611fe057a3a85136966de7fe6b4a7c4406/pyxl320-0.9.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c471f5fb6ed3c9aac11ed60a3e34a32f", "sha256": "3baac0a717c89b6f82be71901b65734343a16777f94996c8fe444df1f3ef8a71" }, "downloads": -1, "filename": "pyxl320-0.9.3-py3-none-any.whl", "has_sig": false, "md5_digest": "c471f5fb6ed3c9aac11ed60a3e34a32f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23990, "upload_time": "2017-04-11T05:07:59", "url": "https://files.pythonhosted.org/packages/12/f9/18fbc505600e92eb100e69834ff5b67717d532bc07c2e122081822835600/pyxl320-0.9.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "485d9f4f3fafba7d8f75e48e7347477d", "sha256": "288f13064e378e5767c981b1eee6bfb487b0a741200d867277bcf7f279ea35f7" }, "downloads": -1, "filename": "pyxl320-0.9.3.tar.gz", "has_sig": false, "md5_digest": "485d9f4f3fafba7d8f75e48e7347477d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17698, "upload_time": "2017-04-11T05:08:01", "url": "https://files.pythonhosted.org/packages/cf/55/b4e79f70cc622e2f95dbc5c896a4b227c77926c495b4dd0e04bee791cb31/pyxl320-0.9.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c585a7168445eb6e3c510942b9c31b48", "sha256": "6f918f62db26d318fd6ffd4c893e917551cf8c506d4e282a42c2cb46e32257e8" }, "downloads": -1, "filename": "pyxl320-0.10.0-py2-none-any.whl", "has_sig": false, "md5_digest": "c585a7168445eb6e3c510942b9c31b48", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 26952, "upload_time": "2018-01-27T20:00:58", "url": "https://files.pythonhosted.org/packages/d0/22/f62fe0987abaecad4068de8331d3da724e4a1b22ea3d7638bf7ecc03f227/pyxl320-0.10.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "285073a945aaed6c02744f2542d0e58e", "sha256": "d3024db475953b6dec087f41519ffdbc7311859872eb0a8e3b1652b17bcfb87f" }, "downloads": -1, "filename": "pyxl320-0.10.0-py3-none-any.whl", "has_sig": false, "md5_digest": "285073a945aaed6c02744f2542d0e58e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26952, "upload_time": "2018-01-27T20:00:59", "url": "https://files.pythonhosted.org/packages/79/a1/790ee23ccad33d2b11ca251010c3e2c644069be20a95ce2cf09b7c0bab4c/pyxl320-0.10.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2f58811196faf619a80034c75b4daaf3", "sha256": "5fdd4e1123096229da5a74021a4c9d97628c2c092cd7334cd3e2de2a89263d97" }, "downloads": -1, "filename": "pyxl320-0.10.0.tar.gz", "has_sig": false, "md5_digest": "2f58811196faf619a80034c75b4daaf3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19697, "upload_time": "2018-01-27T20:01:00", "url": "https://files.pythonhosted.org/packages/6c/2f/99e4ef1b5c85a7c8c000b8ca9d2cac29e183a9ccdd3488e765525d8c9583/pyxl320-0.10.0.tar.gz" } ] }