将 minixsv 包含在 Google 应用引擎中

发布于 2024-12-10 06:12:59 字数 719 浏览 0 评论 0原文

我想利用 minixsv 来根据 xsd 验证 xml。我读到谷歌应用程序引擎支持这个,因为它是 100% python。我的问题是,如何将 minixsv 添加到 GAE 中?如果我执行以下操作:

from minixsv import pyxsval

我收到错误...我显然缺少一些设置内容,有人知道我如何设置它吗?

错误:

<type 'exceptions.ImportError'>: No module named minixsv 

谢谢!

http://www.familieleuthe.de/MiniXsv.html

GAE 问题: https://groups.google.com/group/google-appengine-python/browse_thread/thread/b457c9784df6a2f6?fwc=1&pli=1

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧时光的容颜 2024-12-17 06:13:00

您需要将该库包含在应用程序的根目录中。将 minixsv 目录(或 minixsv.py,如果没有)放入应用程序的根目录中,然后重试。

You need to include the library in your app's root directory. Put the minixsv directory (or minixsv.py if it doesn't have one) in the root directory of your app and try again.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文