I am developing a server using only Python 3.x on Django or any other Framework (to be decided).
My requirement is to use a SOAP library to process SOAP XML messages. However, I am not sure whether the SOAP Library Soapbox is supported by Python 3.x.
When installing Soapbox using Python 3.3, following error i am getting,
Traceback (most recent call last):
File "setup.py", line 14, in <module>
from requirements import RequirementsParser
File "/home/pawan/tornado/soaplib/Soapbox/Soapbox-0.3.7/requirements.py", line 437
except OSError, e:
^
SyntaxError: invalid syntax
But with Python 2.7, it is being installed successfully.
Your suggestion and help would be highly appreciated in this matter of Python 3.x support for Soapbox.