将 minixsv 包含在 Google 应用引擎中
我想利用 minixsv 来根据 xsd 验证 xml。我读到谷歌应用程序引擎支持这个,因为它是 100% python。我的问题是,如何将 minixsv 添加到 GAE 中?如果我执行以下操作:
from minixsv import pyxsval
我收到错误...我显然缺少一些设置内容,有人知道我如何设置它吗?
错误:
<type 'exceptions.ImportError'>: No module named minixsv
谢谢!
I want to make use of minixsv to validate an xml against an xsd. I read that google app engine supports this since it's 100% python. My question is, how do I add the minixsv to the GAE? if i do a:
from minixsv import pyxsval
I get an error...I'm obviously missing some setup things, any one know how I can set it up?
Error:
<type 'exceptions.ImportError'>: No module named minixsv
Thanks!
http://www.familieleuthe.de/MiniXsv.html
GAE question:
https://groups.google.com/group/google-appengine-python/browse_thread/thread/b457c9784df6a2f6?fwc=1&pli=1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将该库包含在应用程序的根目录中。将
minixsv
目录(或minixsv.py
,如果没有)放入应用程序的根目录中,然后重试。You need to include the library in your app's root directory. Put the
minixsv
directory (orminixsv.py
if it doesn't have one) in the root directory of your app and try again.