App Engine 实体到字典

发布于 2024-11-07 00:50:37 字数 99 浏览 6 评论 0原文

将 google app engine 实体(在 python 中)复制到字典对象的好方法是什么?我正在使用 db.Expando 对象。所有属性均为扩展属性。

谢谢!

What is a good way to copy a google app engine entity (in python) to a dictionary object? I'm using db.Expando objects. All properties are expando properties.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(5

我是男神闪亮亮 2024-11-14 00:50:37

有一个名为 foo 的实体尝试:

foo.__dict__

Having an entity called foo try with:

foo.__dict__
若言繁花未落 2024-11-14 00:50:37

试试这个。其中“m”是您希望转换为字典的 Expando 实例。

dict([(x,getattr(m,x)) for x in m.dynamic_properties()])

try this. Where "m" is the instance of the Expando you wish to turn into a dictionary.

dict([(x,getattr(m,x)) for x in m.dynamic_properties()])
始于初秋 2024-11-14 00:50:37

这应该有效

from google.appengine.ext import db
db.to_dict(entity)

This should work

from google.appengine.ext import db
db.to_dict(entity)
暮年 2024-11-14 00:50:37

新版本的 Google Cloud Python 客户端库运行得不太顺利。所以这是一个快速修复。

your_dict = {x: entity[x] for x in entity.keys()}

请记住,字符串以 unicode 形式传入并返回,而不是基本字符串。 ;)

The new version of the Google Cloud Python client library doesn't work quite so gracefully. So this is a quick fix.

your_dict = {x: entity[x] for x in entity.keys()}

Remember, the strings are passed in and returned as unicode, not basestring. ;)

宣告ˉ结束 2024-11-14 00:50:37

接受的答案应该是:

{}.update(entity}

The accepted answer should be:

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