文件名称:Protopigeon:数据存储模型和 protorpc 消息的帮助程序
文件大小:10KB
文件格式:ZIP
更新时间:2024-07-21 03:19:34
Python
原种 Protopigeon 提供了用于从生成实用程序。 它可以从模型生成消息类,将实体转换为消息实例,反之亦然。 它还可以将多个消息类组合在一起。 用法 从模型生成消息类 如果你有一个模型: class Actor ( ndb . Model ) name = ndb . StringProperty () shows = ndb . StringProperty ( repeated = True ) rating = ndb . IntegerProperty () 您可以轻松生成消息类: ActorMessage = protopigeon . model_message ( Actor ) 您还可以排除字段,或指定哪些特定字段: ActorWithoutRatingMessage = protopigeon . model_message
【文件预览】:
Protopigeon-master
----run_tests.sh(64B)
----protopigeon()
--------translators.py(6KB)
--------converters.py(6KB)
--------__init__.py(92B)
--------types.py(677B)
----setup.py(697B)
----tests()
--------test_translation.py(8KB)
--------__init__.py(0B)
--------test_composition.py(833B)
----.gitignore(32B)
----app.yaml(156B)
----readme.md(4KB)
----license.txt(557B)