Page 2 of 2

Re: openRemoteIP - I suspect there's a quick answer.

Posted: Thu Mar 07, 2013 10:30 am
by Lyndon Williams
Brian, if this is a problem between the ctypes module and the Phidgets module with Python 3.x, could we have someone look at the Python module and make the necessary modifications? Perhaps make a Phidgets module for Python 3.x?

Re: openRemoteIP - I suspect there's a quick answer.

Posted: Fri Mar 29, 2013 2:40 pm
by PLN57
Looks like Python 2.6.6 runs reasonably OK inside SBC2. Which is the Python version that now appeared when restoring SBC2 and reinstalling Python.

Re: openRemoteIP - I suspect there's a quick answer.

Posted: Tue Jan 21, 2014 10:24 pm
by jschnell1203
that seems to work better for me also using 2.7 instead of 3.3 python. More on this tomorrow. I would really like to be using the latest so where do we go from here?

Re: openRemoteIP - I suspect there's a quick answer.

Posted: Tue Mar 18, 2014 12:33 pm
by x11b2p
I am using SBC3 and have encountered the same issue with Python 3.3. Has anyone resolved this or is reverting to an earlier version of Python the only resolution?

Re: openRemoteIP - I suspect there's a quick answer.

Posted: Wed Apr 19, 2017 8:09 am
by josh0576
I recently was trying to use Phidgets in Python 3.6. I had the problem described here with no resolution. After several hours of tries, I found something that works. You need to add b before every string and null strings seem to require a value such as b'' or None. Thus

dictionary.openRemoteIP(b'', 5001,None)

worked for me.