Python3 Support?

I’m trying to setup a few BlinkStrips to run on some newer boxes that only have python3 installed on them. After running into a lot of ord() errors, it appears that python3 is not supported?

Is this going to change in the near future? I’m kind of blown away by the fact that a product being currently sold is only supporting python 2.x.

Any more info on your setup? Working fine here, and Python3 is all I use.

diff@XXL-Grilled:~$ python3
Python 3.5.2 (default, Nov 23 2017, 16:37:01) 
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from blinkstick import blinkstick
>>> stick = blinkstick.find_first()
>>> stick.get_led_count()
32
>>> stick.set_led_data(0, [255, 255, 255] * 32)
<All 32 LEDs have lit up white>
>>> stick.get_description()
'BlinkStick Flex'