Hello there @codedstructure,
I'm able to import the pylibftdi module and list my FTDI devices using python (2.7) and have installed pylibftdi using pip3, but running the list_devices example outputs nothing:
pi@raspberrypi:~ $ python -m pylibftdi.examples.list_devices
FTDI:FT230X Basic UART:DA00TWHT
FTDI:FT230X Basic UART:DA00TWHN
FTDI:FT230X Basic UART:DA00TN7R
pi@raspberrypi:~ $ python3 -m pylibftdi.examples.list_devices
pi@raspberrypi:~ $
Running python 3.4, I can show libftdi is installed:
Python 3.4.2 (default, Oct 19 2014, 13:31:11)
[GCC 4.9.1] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from pylibftdi import Driver; print(Driver().libftdi_version())
libftdi_version(major=1, minor=0, micro=0, version_str=b'1.0', snapshot_str=b'v1.0')
Is there something else I can check?