I want to load source data using fixtures as described here
https://docs.djangoproject.com/en/dev/howto/initial-data/
That would be easy enough with a small dataset. However, I want to load a large CSV that will not fit into memory. How can I serialize this to a large JSON format? Do I have to hack it by manually opening '[' and closing ']' or is there any way to do this?
source share