I wish to load initial data using fixtures as described here
https://docs.djangoproject.com/en/dev/howto/initial-data/
This would be easy enough with a small data set. However I wish to load a large CSV which will not fit into memory. How would I go about serializing this to a large JSON format? Do I have to hack it by manually writing the opening '[' and closing ']' or is there a cleaner of doing this?