Google App Engine 上的 Pywin32?
我正在考虑如何在 Google App Engine 上使用 Python 中的公式支持来读取/修改大型 Excel 电子表格。我对 COM 的工作原理相当不熟悉,但我想知道是否有人在 GAE 上成功实现了 pywin32 - 或者这样做是否存在固有的问题,或者总的来说这只是一个坏主意。
这似乎是 Python 唯一可能的解决方案(xlrd 没有公式支持),但如果它不起作用,我将求助于学习 Java 并尝试 JExcel API。
任何见解将不胜感激!
I am considering ways to read/modify large Excel spreadsheets with formula support in python, on Google App Engine. I am fairly unfamiliar with how COM works but I was wondering if anyone has successfully implemented pywin32 on GAE - or whether there are inherently problems with doing so, or if it's just a bad idea in general.
It seems like the only possible solution for Python (xlrd has no formula support) but if it doesn't work, I will resort to learning Java and trying JExcel API.
Any insight would be appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Google 的服务器不运行 Windows,因此无法使用任何 Win32 API。
Google's servers are not running Windows, so no, there's no way whatsoever to use any Win32 APIs.
如果您必须使用 GAE,那么您可以在 Windows 计算机上处理一些内容。您可以使用拉队列从 GAE 租用任务来处理它们,然后将它们添加到将数据存储在 GAE 中的推送队列中
If you have to use GAE then you may process some stuff on a windows machine. You can use Pull Queues to lease tasks from GAE process them and then add them to Push Queues that will store the data in GAE