1、Preface
SOAP网络服务确实很复杂,安装遇到的一个问题。
2、Questinos
安装SOAPpy时候出现错误:SyntaxError:from __future__ imports must occur at the beginning of the file。
解决办法:
找到SOAPpy安装目录,我的目录是:D:\Project\python\SOAPpy-0.12.0\SOAPpy-0.12.0\SOAPpy,在Client.py,Types.py,Server.py三个文件里把 from __future__ import nested_scopes移到第一行就OK 了。