I am using Python 3 along with SOAPpy Library in conjunction with my code. I keep getting a "ModuleNotFoundError: No module named 'version'" error when trying to run my code. The error is coming from this specific line within the Library:
from version import __version__
How do I fix the error?
SOAPpy (pypy) seems to be an outdated library meant for python2, which is why some of the code in the library produces these errors. You might have better luck using Zeep - a modern SOAP python3 compatible client.