{ "info": { "author": "Vincent Pelletier", "author_email": "plr.vincent@gmail.com", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Developers", "License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)", "Operating System :: OS Independent", "Programming Language :: Python :: 2.4", "Programming Language :: Python :: 2.5", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Libraries", "Topic :: System :: Hardware :: Hardware Drivers" ], "description": ".. contents::\n\nPure-python wrapper for libusb-1.0\n\nSupports all transfer types, both in synchronous and asynchronous mode.\n\nHome: http://github.com/vpelletier/python-libusb1\n\nPyPI: http://pypi.python.org/pypi/libusb1\n\n.. role:: c_code(code)\n :language: c\n\n.. role:: python_code(code)\n :language: python\n\nDependencies\n============\n\n- CPython_ 2.7+ or 3.4+, pypy_ 2.0+. Older versions may work, but are not\n recommended as there is no automated regression testing set up for them.\n\n- libusb-1.0_\n\nSupported OSes\n==============\n\npython-libusb1 can be expected to work on:\n\n- GNU/Linux\n\n- Windows [#]_ native dll or via Cygwin_\n\n- OSX [#]_ via MacPorts_, Fink_ or Homebrew_\n\n- FreeBSD (including Debian GNU/kFreeBSD)\n\n- OpenBSD\n\n.. [#] Beware of libusb-win32, which implements 0.1 API, not 1.0 .\n\n.. [#] Beware of possible lack of select.poll if you want to use asynchronous\n API.\n\nInstallation\n============\n\nReleases from PyPI, with name *libusb1*. Installing from command line::\n\n $ pip install libusb1\n\nor::\n\n $ easy_install libusb1\n\nLatest version from source tree::\n\n $ git clone https://github.com/vpelletier/python-libusb1.git\n $ cd python-libusb1\n $ python setup.py install\n\nUsage\n=====\n\nFinding a device and gaining exclusive access:\n\n.. code:: python\n\n import usb1\n with usb1.USBContext() as context:\n handle = context.openByVendorIDAndProductID(\n VENDOR_ID,\n PRODUCT_ID,\n skip_on_error=True,\n )\n if handle is None:\n # Device not present, or user is not allowed to access device.\n with handle.claimInterface(INTERFACE):\n # Do stuff with endpoints on claimed interface.\n\nSynchronous I/O:\n\n.. code:: python\n\n while True:\n data = handle.bulkRead(ENDPOINT, BUFFER_SIZE)\n # Process data...\n\nAsynchronous I/O, with more error handling:\n\n.. code:: python\n\n def processReceivedData(transfer):\n if transfer.getStatus() != usb1.TRANSFER_COMPLETED:\n # Transfer did not complete successfully, there is no data to read.\n # This example does not resubmit transfers on errors. You may want\n # to resubmit in some cases (timeout, ...).\n return\n data = transfer.getBuffer()[:transfer.getActualLength()]\n # Process data...\n # Resubmit transfer once data is processed.\n transfer.submit()\n\n # Build a list of transfer objects and submit them to prime the pump.\n transfer_list = []\n for _ in range(TRANSFER_COUNT):\n transfer = handle.getTransfer()\n transfer.setBulk(\n usb1.ENDPOINT_IN | ENDPOINT,\n BUFFER_SIZE,\n callback=processReceivedData,\n )\n transfer.submit()\n transfer_list.append(transfer)\n # Loop as long as there is at least one submitted transfer.\n while any(x.isSubmitted() for x in transfer_list):\n try:\n context.handleEvents()\n except usb1.USBErrorInterrupted:\n pass\n\nFor more, see the ``example`` directory.\n\nDocumentation\n=============\n\npython-libusb1 main documentation is accessible with python's standard\n``pydoc`` command.\n\npython-libusb1 follows libusb-1.0 documentation as closely as possible, without\ntaking decisions for you. Thanks to this, python-libusb1 does not need to\nduplicate the nice existing `libusb1.0 documentation`_.\n\nSome description is needed though on how to jump from libusb-1.0 documentation\nto python-libusb1, and vice-versa:\n\n``usb1`` module groups libusb-1.0 functions as class methods. The first\nparameter (when it's a ``libusb_...`` pointer) defined the class the fonction\nbelongs to. For example:\n\n- :c_code:`int libusb_init (libusb_context **context)` becomes USBContext class\n constructor, :python_code:`USBContext.__init__(self)`\n\n- :c_code:`ssize_t libusb_get_device_list (libusb_context *ctx,\n libusb_device ***list)` becomes an USBContext method, returning a\n list of USBDevice instances, :python_code:`USBDevice.getDeviceList(self)`\n\n- :c_code:`uint8_t libusb_get_bus_number (libusb_device *dev)` becomes an\n USBDevice method, :python_code:`USBDevice.getBusNumber(self)`\n\nError statuses are converted into :python_code:`usb1.USBError` exceptions, with\nstatus as ``value`` instance property.\n\n``usb1`` module also defines a few more functions and classes, which are\notherwise not so convenient to call from Python: the event handling API needed\nby async API.\n\nHistory\n=======\n\n0.0.1\n-----\n\nInitial release\n\n0.1.1\n-----\n\nMassive rework of usb1.py, making it more python-ish and fixing some\nmemory leaks.\n\n0.1.2\n-----\n\nDeprecate \"transfer\" constructor parameter to allow instance reuse.\n\n0.1.3\n-----\n\nSome work on isochronous \"in\" transfers. They don't raise exceptions anymore,\nbut data validity and python-induced latency impact weren't properly checked.\n\n0.2.0\n-----\n\nFix asynchronous configuration transfers.\n\nStand-alone polling thread for multi-threaded apps.\n\nMore libusb methods exposed on objects, including ones not yet part of\nreleased libusb versions (up to their commit 4630fc2).\n\n2to3 friendly.\n\nDrop deprecated USBDevice.reprConfigurations method.\n\n0.2.1\n-----\n\nAdd FreeBSD support.\n\n0.2.2\n-----\n\nAdd Cygwin support.\n\nOpenBSD support checked (no change).\n\n0.2.3\n-----\n\nAdd fink and homebrew support on OSX.\n\nDrop PATH_MAX definition.\n\nTry harder when looking for libusb.\n\n1.0.0\n-----\n\nFix FreeBSD ABI compatibility.\n\nEasier to list connected devices.\n\nEasier to terminate all async transfers for clean exit.\n\nFix few segfault causes.\n\npypy support.\n\n1.1.0\n-----\n\nDescriptor walk API documented.\n\nVersion and capability APIs exposed.\n\nSome portability fixes (OSes, python versions).\n\nIsochronous transfer refuses to round transfer size.\n\nBetter exception handling in enumeration.\n\nAdd examples.\n\nBetter documentation.\n\n1.2.0\n-----\n\nWrap hotplug API.\n\nWrap port number API.\n\nWrap kernel auto-detach API.\n\nDrop wrapper for libusb_strerror, with compatibility place-holder.\n\nAdd a few new upstream enum values.\n\n1.3.0\n-----\n\n**Backward-incompatible change**: Enum class now affects caller's local scope,\nnot its global scope. This should not be of much importance, as:\n\n- This class is probably very little used outside libusb1.py\n\n- This class is probably mostly used at module level, where locals == globals.\n\n It is possible to get former behaviour by providing the new ``scope_dict``\n parameter to ``Enum`` constructor::\n\n SOME_ENUM = libusb1.Enum({...}, scope_dict=globals())\n\nImprove start-up time on CPython by not importing standard ``inspect`` module.\n\nFix some more USBTransfer memory leaks.\n\nAdd Transfer.iterISO for more efficient isochronous reception.\n\n1.3.1\n-----\n\nFixed USBContext.waitForEvent.\n\nFix typo in USBInterfaceSetting.getClassTuple method name. Backward\ncompatibility preserved.\n\nRemove globals accesses from USBDeviceHandle destructor.\n\nAssorted documentation improvements.\n\n1.3.2\n-----\n\nMade USBDevice instances hashable.\n\nRelaxed licensing by moving from GPL v2+ to LGPL v2.1+, for consistency with\nlibusb1.\n\n1.4.0\n-----\n\nReduce (remove ?) the need to import libusb1 module by exposing USBError and\nconstants in usb1 module.\n\nFix libusb1.LIBUSB_ENDPOINT_ENDPOINT_MASK and\nlibusb1.LIBUSB_ENDPOINT_DIR_MASK naming.\n\nFix pydoc appearance of several USBContext methods.\n\nDefine exception classes for each error values.\n\n1.4.1\n-----\n\nFix wheel generation (``python3 setup.py bdist_wheel``).\n\n1.5.0\n-----\n\ncontrolWrite, bulkWrite and interruptWrite now reject (with TypeError) numeric\nvalues for ``data`` parameter.\n\nFix libusb1.REQUEST_TYPE_* names (were TYPE_*). Preserve backward\ncompatibility.\n\nAdd USBContext.getDeviceIterator method.\n\nRename USBContext.exit as USBContext.close for consistency with other USB*\nclasses. Preserve backward compatibility.\n\nMake USBDeviceHandle.claimInterface a context manager, for easier interface\nreleasing.\n\n1.5.1\n-----\n\nIntroduce USBPollerThread.stop .\n\nFix USBDeviceHandle.getSupportedLanguageList bug when running under python 3.\nWhile fixing this bug it was realised that this method returned ctypes objects.\nThis was not intended, and it now returns regular integers.\n\n1.5.2\n-----\n\nMake USBTransfer.cancel raise specific error instances.\n\n1.5.3\n-----\n\nFix USBTransfer.cancel exception raising introduced in 1.5.2: it was\naccidentally becomming a bound method, preventing the raise to actually\nhappen (in at least CPython 2.x) or raising type conversion errors (in at least\nCPython 3.5.2).\n\n1.6\n---\n\nImprove asynchronous transfer performance: (very) suboptimal code was used to\ninitialise asynchronous transfer buffer. As a consequence, usb1 now exposes\n``bytearrays`` where it used to expose ``bytes`` or ``str`` objects.\n\nDeprecate libusb1 module import, which should not be needed since all (?)\nneeded constants were re-bound to usb1 module.\n\nMove testUSB1 module inside usb1, to eventually only expose usb1 as top-level\nmodule.\n\n1.6.1\n-----\n\nFix getSupportedLanguageList.\n\nFix and extend get{,ASCII}StringDescriptor .\n\nFix iterISO and getISOBufferList.\n\n1.6.2\n-----\n\nFix getASCIIStringDescriptor: unlike getStringDescriptor, this returns only the\npayload of the string descriptor, without its header.\n\n1.6.3\n-----\n\nDeprecate USBPollerThread . It is mileading users for which the simple version\n(a thread calling ``USBContext.handleEvents``) would be enough. And for more\nadvanced uses (ie, actually needing to poll non-libusb file descriptors), this\nclass only works reliably with epoll: kqueue (which should tehcnically work)\nhas a different API on python level, and poll (which has the same API as epoll\non python level) lacks the critical ability to change the set of monitored file\ndescriptors while a poll is already running, causing long pauses - if not\ndeadlocks.\n\n1.6.4\n-----\n\nFix asynchronous control transfers.\n\n1.6.5\n-----\n\nDocument hotplug handler limitations.\n\nRun 2to3 when running setup.py with python3, and reduce differences with\npython3.\n\nProperly cast libusb_set_pollfd_notifiers arguments.\nFix null pointer value: POINTER(None) is the type of a pointer which may be a\nnull pointer, which falls back to c_void_p. But c_void_p() is an actual null\npointer.\n\n1.6.6\n-----\n\nExpose bare string descriptors (aka string indexes) on USBDevice.\n\n1.6.7\n-----\n\nget{,ASCII}StringDescriptor now return None for descriptor 0 instead of raising\nUnicodeDecodeError. Use getSupportedLanguageList to access it.\nMoved getManufacturer, getProduct and getSerialNumber to USBDeviceHandle. Kept\nshortcuts for these on USBDevice.\n\n1.7\n---\n\nget{,ASCII}StringDescriptor now return None for descriptor 0, use\ngetSupportedLanguageList to get its content.\ngetManufacturer, getProduct and getSerialNumber are now on USBDeviceHandle,\nwith backward-compatibility aliases on their original location.\nSynchronous bulk and interrupt API exposes number of bytes sent and received\nbytes even when a timeout occurs.\n\n1.7.1\n-----\n\nusb1.__version__ is now present, managed by versioneer.\nFix an occasional segfault when closing a transfer from inside its callback\nfunction.\n\n.. _CPython: http://www.python.org/\n\n.. _pypy: http://pypy.org/\n\n.. _Cygwin: https://www.cygwin.com/\n\n.. _MacPorts: https://www.macports.org/\n\n.. _Fink: http://www.finkproject.org/\n\n.. _Homebrew: http://brew.sh/\n\n.. _libusb-1.0: https://github.com/libusb/libusb/wiki/\n\n.. _libusb1.0 documentation: http://libusb.sourceforge.net/api-1.0/\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/vpelletier/python-libusb1", "keywords": "usb libusb", "license": "LGPLv2.1+", "maintainer": "", "maintainer_email": "", "name": "libusb1", "package_url": "https://pypi.org/project/libusb1/", "platform": "any", "project_url": "https://pypi.org/project/libusb1/", "project_urls": { "Homepage": "http://github.com/vpelletier/python-libusb1" }, "release_url": "https://pypi.org/project/libusb1/1.7.1/", "requires_dist": null, "requires_python": "", "summary": "Pure-python wrapper for libusb-1.0", "version": "1.7.1" }, "last_serial": 5249826, "releases": { "0.1.2": [ { "comment_text": "", "digests": { "md5": "dd23365e8df9b71ad5146a6155e58c17", "sha256": "ed280f35999c70cd8a4d052a7890ff1206e07691329f04225e35f39dba51b1ab" }, "downloads": -1, "filename": "libusb1-0.1.2.tar.gz", "has_sig": false, "md5_digest": "dd23365e8df9b71ad5146a6155e58c17", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20468, "upload_time": "2011-10-18T23:54:28", "url": "https://files.pythonhosted.org/packages/5c/7d/18638d9f830cd4b2d3359cd10c339f7c66ba5beff9fa1f98e8f0fe2b6930/libusb1-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "61afd29199907ae1cb5e440db3d6a6db", "sha256": "24f0fda7391fb869fa783144e74ea1cce77e27b7c0b724518b0952baa09ccbda" }, "downloads": -1, "filename": "libusb1-0.1.3.tar.gz", "has_sig": false, "md5_digest": "61afd29199907ae1cb5e440db3d6a6db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20804, "upload_time": "2011-10-24T23:19:18", "url": "https://files.pythonhosted.org/packages/c4/2a/244095e765c64dafe29135935ac53ccc8c265d3f22f884ee87fe8a7d8510/libusb1-0.1.3.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "6e99ddb21705c2e2324c615e2f6b8009", "sha256": "23ed5775d82d415c4dc037c499184a783359c8f909ba8a01ba3fb2fa204df644" }, "downloads": -1, "filename": "libusb1-0.2.0.tar.gz", "has_sig": false, "md5_digest": "6e99ddb21705c2e2324c615e2f6b8009", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22683, "upload_time": "2012-02-14T05:13:12", "url": "https://files.pythonhosted.org/packages/ef/92/b0395b3fd07505eac0231732808ef5993247f1cdacd4f07cf37504dd5cec/libusb1-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "c0536bb2e8455f7438aa993ee969df1a", "sha256": "e809d026cce4d52eb3aa7d0879ad1bb3192dc375c20f222833b571394ecc52e2" }, "downloads": -1, "filename": "libusb1-0.2.1.tar.gz", "has_sig": false, "md5_digest": "c0536bb2e8455f7438aa993ee969df1a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22574, "upload_time": "2012-04-14T16:32:33", "url": "https://files.pythonhosted.org/packages/62/fd/86c54451daaf4aec41a763e3137b3d5bd4b1f92c51fd778c7c02d1415897/libusb1-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "ed66cc472503da9bdecfe139e81d4ddf", "sha256": "8cb678d6ffb3b4425a87a300c1fb00f29be6476cacdc282065bfd42e482a0cd6" }, "downloads": -1, "filename": "libusb1-0.2.2.tar.gz", "has_sig": false, "md5_digest": "ed66cc472503da9bdecfe139e81d4ddf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22768, "upload_time": "2012-04-15T09:36:50", "url": "https://files.pythonhosted.org/packages/ce/95/e47a6de77d372a74eeb799601dc238422fa12f3f4ca3a7b0e156cf954fb2/libusb1-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "b5af9a57eed6358d4746e78d01344762", "sha256": "3f2f955d6277dd53031b4c57905339bcadb2a45333f13fa2540c0cef70bda86b" }, "downloads": -1, "filename": "libusb1-0.2.3.tar.gz", "has_sig": false, "md5_digest": "b5af9a57eed6358d4746e78d01344762", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22885, "upload_time": "2012-04-24T12:23:08", "url": "https://files.pythonhosted.org/packages/93/c6/0fe842d6d841dd84352fb9f24f5bbecdc47a9bf092527ba6f1752a8ecd90/libusb1-0.2.3.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "b52a18ad26fbcb5e6a74d6d0e283dab0", "sha256": "8abc1765a82107c39469ef08d20684339350a5cdd60d921ed24378ea65cb198e" }, "downloads": -1, "filename": "libusb1-1.0.0.tar.gz", "has_sig": false, "md5_digest": "b52a18ad26fbcb5e6a74d6d0e283dab0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25412, "upload_time": "2012-10-03T21:02:46", "url": "https://files.pythonhosted.org/packages/b9/e2/0835f776d94a4096bd35c5c5c5b850931b38020a4b153772d2a27552ab5c/libusb1-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "bcfbd3e3e54666384c4eed903871b762", "sha256": "3b7adae5020842503aebce5f275a2965b06c8db292dec4ac2889c62135f67860" }, "downloads": -1, "filename": "libusb1-1.1.0.tar.gz", "has_sig": false, "md5_digest": "bcfbd3e3e54666384c4eed903871b762", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38702, "upload_time": "2013-04-20T14:49:26", "url": "https://files.pythonhosted.org/packages/74/13/aff070092f885e19ae970d04eb6f8cc4282e1d81fe124ebdb7c93cdc767e/libusb1-1.1.0.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "2248ffb1a4871964b33c3cbe6cb9b62a", "sha256": "1f59697d91a0549574e38708d939fa86c2358fd7c1559f15d1ed7520339b141e" }, "downloads": -1, "filename": "libusb1-1.2.0.tar.gz", "has_sig": false, "md5_digest": "2248ffb1a4871964b33c3cbe6cb9b62a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40509, "upload_time": "2014-01-24T17:24:55", "url": "https://files.pythonhosted.org/packages/ad/9d/eca70d867b5b9347483d14f591d513945e7b1391e147edf81bf80b164ba6/libusb1-1.2.0.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "fecf818017497cac687d5f6a4534fe85", "sha256": "36f2777f43053876810debe867dd93c047cc3cc990c68aa4797d9dffc1170d7a" }, "downloads": -1, "filename": "libusb1-1.3.0.tar.gz", "has_sig": false, "md5_digest": "fecf818017497cac687d5f6a4534fe85", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41590, "upload_time": "2014-12-01T18:07:34", "url": "https://files.pythonhosted.org/packages/0f/7e/fd8fe4c1a8a1c0b9c7d2c4d309fddc3a302eeaf3d1a7d2275b64a38fee31/libusb1-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "b31625c6939742bb8bb5373732dac681", "sha256": "8e1ac80f4476ef354e452275bf41dd1c745ba71b49c3c3cb836ac63860a8da19" }, "downloads": -1, "filename": "libusb1-1.3.1.tar.gz", "has_sig": false, "md5_digest": "b31625c6939742bb8bb5373732dac681", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43611, "upload_time": "2015-04-25T09:51:31", "url": "https://files.pythonhosted.org/packages/18/70/474b9d2a2430670e582c4aa2ef3bee0223ee07a28a579fef3625e90766b0/libusb1-1.3.1.tar.gz" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "b67ca5540c5c247416da178f01ad3228", "sha256": "0bd8c28c2b62d053afacec8bec8b6512315780f25cc355fa450b8239b192e1e0" }, "downloads": -1, "filename": "libusb1-1.3.2.tar.gz", "has_sig": false, "md5_digest": "b67ca5540c5c247416da178f01ad3228", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42825, "upload_time": "2015-05-02T14:52:48", "url": "https://files.pythonhosted.org/packages/2a/6d/46fe1a61c74b565bd42b0655f0058e6402c9cb603c9b2757edfa5ae96554/libusb1-1.3.2.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "aa4361274d8e5815ff140ec5a5187555", "sha256": "18c0c128ec8c32dd977505f5767125a137dfad67b1ebfd7f27ab343814660373" }, "downloads": -1, "filename": "libusb1-1.4.0.tar.gz", "has_sig": false, "md5_digest": "aa4361274d8e5815ff140ec5a5187555", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45227, "upload_time": "2015-05-03T16:44:49", "url": "https://files.pythonhosted.org/packages/69/e4/afc7849729e33a339b1991d7123fd2b97ed456cb3f0a078a26d988c2d2cf/libusb1-1.4.0.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "19c51395c4b2e1d0357000c6018cf65b", "sha256": "454230c59a3924754c6703e104e07f5b2ddb9e0a0f71cc6fa4f0a8ae2bd4aa1c" }, "downloads": -1, "filename": "libusb1-1.4.1.tar.gz", "has_sig": false, "md5_digest": "19c51395c4b2e1d0357000c6018cf65b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43438, "upload_time": "2015-08-15T17:59:57", "url": "https://files.pythonhosted.org/packages/ab/b1/74ce4a4fe7f03a0a1e7da03e5dae2ffc94d525233341d224963ec760e161/libusb1-1.4.1.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "d5563f591cdd48f2ab859fb1d2ad2412", "sha256": "88b26387c0ae5ea1d9410db1d57b9f8cbbf08e083e08e1cfaffb5fec74e230db" }, "downloads": -1, "filename": "libusb1-1.5.0.tar.gz", "has_sig": false, "md5_digest": "d5563f591cdd48f2ab859fb1d2ad2412", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45045, "upload_time": "2016-04-10T08:25:53", "url": "https://files.pythonhosted.org/packages/10/92/00ad3d479d73da83ee0276c48698a767f0b31be735c2bca156ca90f45648/libusb1-1.5.0.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "3ec9cc9ce93e6729b74bfced3618df8b", "sha256": "b9552bbffe04fbf26208a9742cc63d4e2a46db72356c9066d2e57d7934f5ef62" }, "downloads": -1, "filename": "libusb1-1.5.1.tar.gz", "has_sig": false, "md5_digest": "3ec9cc9ce93e6729b74bfced3618df8b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52847, "upload_time": "2016-08-17T13:27:42", "url": "https://files.pythonhosted.org/packages/81/4a/bbb5763d835f43ad64beac97e73cab380a451d6201ddfd1c53bb48eb9ea1/libusb1-1.5.1.tar.gz" } ], "1.5.2": [ { "comment_text": "", "digests": { "md5": "3c9bd29e517785804ac59e462db47c7e", "sha256": "a5a902e020ede402217a8b5804b96b24139ee69c040bcfb5763dc9fcdba1dfa4" }, "downloads": -1, "filename": "libusb1-1.5.2.tar.gz", "has_sig": false, "md5_digest": "3c9bd29e517785804ac59e462db47c7e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52941, "upload_time": "2016-08-21T23:25:44", "url": "https://files.pythonhosted.org/packages/0d/a5/5010d28e08bd78290db66d2ca318b6ce028d70c810f78f399aeb19197f8e/libusb1-1.5.2.tar.gz" } ], "1.5.3": [ { "comment_text": "", "digests": { "md5": "1843ba87baa5e62a4f1f4078719f0257", "sha256": "85f6bbf9fcfe9421f99864f20a37eacb00f30b8a7c29adc6b2a163bde29649ea" }, "downloads": -1, "filename": "libusb1-1.5.3.tar.gz", "has_sig": false, "md5_digest": "1843ba87baa5e62a4f1f4078719f0257", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53409, "upload_time": "2016-09-15T13:17:58", "url": "https://files.pythonhosted.org/packages/b9/01/f4320c19089433a08686cdd6c4151ac20173b6cddc4805c76ec11bbc7202/libusb1-1.5.3.tar.gz" } ], "1.6": [ { "comment_text": "", "digests": { "md5": "d8ab240f76df912c92ca5db365f35633", "sha256": "fd6a0c333323c93ad8ec3b2b84edcd7cf8f7140a8e76d2147c1c381ea2bc8013" }, "downloads": -1, "filename": "libusb1-1.6.tar.gz", "has_sig": false, "md5_digest": "d8ab240f76df912c92ca5db365f35633", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53963, "upload_time": "2016-11-23T13:08:47", "url": "https://files.pythonhosted.org/packages/ee/6d/8bf2ccf1efa51cdca8b84266aa6225c6cc0dab8cac413c7e087d5aba833a/libusb1-1.6.tar.gz" } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "88b9b6e500794ad3a3402e651a90fa97", "sha256": "90c16c6eb35384db92462d9a4dd411c24f5f7993c68071dad0779690312e3e1f" }, "downloads": -1, "filename": "libusb1-1.6.1.tar.gz", "has_sig": false, "md5_digest": "88b9b6e500794ad3a3402e651a90fa97", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62024, "upload_time": "2017-01-02T15:20:44", "url": "https://files.pythonhosted.org/packages/58/5a/2ef4bf1cf59270b40bc21368e14eb3aa6f5854668eed3142638f667068e0/libusb1-1.6.1.tar.gz" } ], "1.6.2": [ { "comment_text": "", "digests": { "md5": "9aa2ad7c6d768321a8f50900e79c553a", "sha256": "091073bf1f7003c2336f7c867862c7cf0d4241ab1208bbdf90ef4f6382d46dbe" }, "downloads": -1, "filename": "libusb1-1.6.2.tar.gz", "has_sig": false, "md5_digest": "9aa2ad7c6d768321a8f50900e79c553a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62157, "upload_time": "2017-01-03T13:06:11", "url": "https://files.pythonhosted.org/packages/43/e2/7e8559865cdcb2f9981c8564cc416302430da68784dd45dcf926ac9fa1e7/libusb1-1.6.2.tar.gz" } ], "1.6.3": [ { "comment_text": "", "digests": { "md5": "7c5d3fb01c763fb860ca43a5f2350899", "sha256": "168eb09b5f14a9650c0e8d24991d8886cd33ccb012fbbaa4acc86f0549321e25" }, "downloads": -1, "filename": "libusb1-1.6.3.tar.gz", "has_sig": false, "md5_digest": "7c5d3fb01c763fb860ca43a5f2350899", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54981, "upload_time": "2017-01-25T10:33:57", "url": "https://files.pythonhosted.org/packages/bb/cb/c2e70f2dd1aea4e553c4cef703a42e3c7c34e1a852cdd7f1d0bd923f40ea/libusb1-1.6.3.tar.gz" } ], "1.6.4": [ { "comment_text": "", "digests": { "md5": "9c2eb6032deda59f287a443091d38cb4", "sha256": "8c930d9c1d037d9c83924c82608aa6a1adcaa01ca0e4a23ee0e8e18d7eee670d" }, "downloads": -1, "filename": "libusb1-1.6.4.tar.gz", "has_sig": false, "md5_digest": "9c2eb6032deda59f287a443091d38cb4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55491, "upload_time": "2017-02-03T14:20:47", "url": "https://files.pythonhosted.org/packages/ec/5d/4fdac6c53525786fe35cff035c3345452e24e2bee5627893be65d12555cb/libusb1-1.6.4.tar.gz" } ], "1.6.5": [ { "comment_text": "", "digests": { "md5": "0a0c22ef2445ad77778bf6e82ff7ee30", "sha256": "4707f81e933a97fed1c5bf7d4957f07bae1139cb8084bdee1f50201a40e3fd7c" }, "downloads": -1, "filename": "libusb1-1.6.5.tar.gz", "has_sig": false, "md5_digest": "0a0c22ef2445ad77778bf6e82ff7ee30", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55828, "upload_time": "2018-07-24T09:57:54", "url": "https://files.pythonhosted.org/packages/87/ee/8d795f07e6394953c5bccebb9e6befcae834dcb0d33037d6cd179e201e55/libusb1-1.6.5.tar.gz" } ], "1.6.6": [ { "comment_text": "", "digests": { "md5": "9d281d859f81b8eeb4db6d379a49de7b", "sha256": "a49917a2262cf7134396f6720c8be011f14aabfc5cdc53f880cc672c0f39d271" }, "downloads": -1, "filename": "libusb1-1.6.6.tar.gz", "has_sig": false, "md5_digest": "9d281d859f81b8eeb4db6d379a49de7b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56045, "upload_time": "2018-08-15T11:56:38", "url": "https://files.pythonhosted.org/packages/39/c6/a9c8c38e3a8a587cd5c32146a5156375e107e483eb2ccb80284a147921dd/libusb1-1.6.6.tar.gz" } ], "1.7": [ { "comment_text": "", "digests": { "md5": "9d66e58c3c8fb3d4a423c96ad5d17bfa", "sha256": "9d4f66d2ed699986b06bc3082cd262101cb26af7a76a34bd15b7eb56cba37e0f" }, "downloads": -1, "filename": "libusb1-1.7.tar.gz", "has_sig": false, "md5_digest": "9d66e58c3c8fb3d4a423c96ad5d17bfa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56605, "upload_time": "2018-12-13T23:45:22", "url": "https://files.pythonhosted.org/packages/9c/51/25f5218d9e21bac3e36bb7167d7d9dfe899cd48bebfe60a54cd39c5db585/libusb1-1.7.tar.gz" } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "cb4073182fef4cee6ab9c6666b48d1a1", "sha256": "adf64a4f3f5c94643a1286f8153bcf4bc787c348b38934aacd7fe17fbeebc571" }, "downloads": -1, "filename": "libusb1-1.7.1.tar.gz", "has_sig": false, "md5_digest": "cb4073182fef4cee6ab9c6666b48d1a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78016, "upload_time": "2019-05-09T22:52:34", "url": "https://files.pythonhosted.org/packages/80/bb/4ee9d760dd29499d877ee384f1d2bc6bb9923defd4c69843aef5e729972d/libusb1-1.7.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "cb4073182fef4cee6ab9c6666b48d1a1", "sha256": "adf64a4f3f5c94643a1286f8153bcf4bc787c348b38934aacd7fe17fbeebc571" }, "downloads": -1, "filename": "libusb1-1.7.1.tar.gz", "has_sig": false, "md5_digest": "cb4073182fef4cee6ab9c6666b48d1a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78016, "upload_time": "2019-05-09T22:52:34", "url": "https://files.pythonhosted.org/packages/80/bb/4ee9d760dd29499d877ee384f1d2bc6bb9923defd4c69843aef5e729972d/libusb1-1.7.1.tar.gz" } ] }