Python: How to read huge text file into memory
There is a recipe for sorting files larger than RAM on this page, though you’d have to adapt it for your case involving CSV-format data. There are also links to additional resources there. Edit: True, the file on disk is not “larger than RAM”, but the in-memory representation can easily become much larger than available … Read more