python - converting a List<String> property to individual values in a CSV export from GAE -
i have list of string inside class in app engine project, , in database export csv (through bulkloader.yaml) resulting field proper list. problem csv imported again mysql database , such field remains single list of strings.
any idea how tweak .yaml config_file generate tuple every string?
you can't make bulkloader export multiple rows single entity using yaml configuration. you'll either need write custom exporter, or custom converter - see bulkloader source details (in docstrings).
Comments
Post a Comment