-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Proxy to work with Python 3 #13
Comments
What failed? |
@ctubbsii , Below is the traceback:
|
Will it work if the following is changed: -testtable = "pythontest"
+testtable = b'pythontest' |
After making this change its complaining because its not a string
|
It seems like python3 is not supported by thrift so I don't think we would be able to get the proxy working with it. |
This might be wrong actually, still looking into this. |
I think thrift has spent some time getting python3 working... possibly a lot has changed since this issue was originally created. There may still be some quirks with it, though, as holdover from trying to support both python2 and python3. |
I tried to create a Proxy client in Python 3 but it did not work. This is probably due to the thrift bindings need to be regenerated to work with Python 3.
The text was updated successfully, but these errors were encountered: