转换列表从 GAE 导出的 CSV 中的属性到各个值

发布于 2024-10-16 09:34:57 字数 184 浏览 0 评论 0原文

我的 App Engine 项目中的类中有一个 String 列表,并且在导出到 CSV 的数据库中(通过bulkloader.yaml),结果字段是正确的列表。 问题在于,此 CSV 再次导入到 MySQL 数据库中,并且该字段仍保留为单个字符串列表。

关于如何调整 .yaml config_file 为每个字符串生成元组的任何想法?

I have a list of String inside a class in my App Engine project, and in the database export to a CSV (through bulkloader.yaml) the resulting field is the proper List.
The problem is that this CSV is imported again into a MySQL database and such field remains as a single list of strings.

Any idea about how to tweak the .yaml config_file to generate a tuple for every string?

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

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

发布评论

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

评论(1

七秒鱼° 2024-10-23 09:34:57

您无法使用 YAML 配置使批量加载器为单个实体导出多行。您需要编写自定义导出器或自定义转换器 - 请参阅 bulkloader 源 了解详细信息(在文档字符串中)。

You can't make the bulkloader export multiple rows for a single entity using the YAML configuration. You'll either need to write a custom exporter, or a custom converter - see the bulkloader source for details (in the docstrings).

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