Metadata-Version: 2.1
Name: ftd2xx
Version: 1.3.6b3
Summary: Python interface to ftd2xx.dll from FTDI using ctypes based on d2xx by Pablo Bleyer
Project-URL: Documentation, https://ftd2xx.github.io/ftd2xx/
Project-URL: GitHub, https://github.com/ftd2xx/ftd2xx
License: MIT License
        
        Copyright (c) 2019 Satya Mishra
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Keywords: d2xx,ftd2xx,ftdi
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Requires-Dist: pywin32; platform_system == 'Windows'
Provides-Extra: dev
Requires-Dist: ruff; extra == 'dev'
Description-Content-Type: text/x-rst

======
FTD2XX
======

|package| |lint|

|python| |black|

ftd2xx is a simple python wrapper around the `D2XX DLL`_ from FTDI using
ctypes. The API based on Pablo Bleyer Kocik's d2xx_ extension.

Requires Python 3.8 minimum. Please ensure you have FTDI drivers installed or
available where the linker looks for shared libraries (e.g., PATH on windows,
LD_LIBRARY_PATH or standard library directories on Linux)

I don't have time to maintain this project, so I am looking for a maintainer.

There is another library by pyftdi_ that looks more actively maintained, has support for newer device, and may fit your needs better.

Also, Jeremy Bentham wrote a blog_ about using this library.

.. _d2xx: http://bleyer.org/pyusb/
.. _pyftdi: https://github.com/eblot/pyftdi
.. _D2XX DLL: http://www.ftdichip.com/Drivers/D2XX.htm
.. _blog: https://iosoft.blog/2018/12/02/ftdi-python-part-1/

.. |black|
    image:: https://img.shields.io/badge/code%20style-black-000000.svg
        :target: https://github.com/psf/black
.. |python|
    image:: https://img.shields.io/pypi/pyversions/ftd2xx.svg
        :target: https://pypi.org/project/ftd2xx/
.. |package|
    image:: https://github.com/snmishra/ftd2xx/workflows/Python%20package/badge.svg
.. |lint|
    image:: https://github.com/snmishra/ftd2xx/workflows/Lint/badge.svg
