The current Python module doesn't work w/ Python3 because of several issues:
print is no longer a statement, it's a function
long is no longer available, use int instead of it (and/or remove the trailing L behind hardcoded numbers)
urllib2 is deprecated
Any chance we can update the lib to py3k?
The current Python module doesn't work w/ Python3 because of several issues:
printis no longer a statement, it's a functionlongis no longer available, useintinstead of it (and/or remove the trailingLbehind hardcoded numbers)urllib2is deprecatedAny chance we can update the lib to py3k?