Created
February 8, 2021 13:59
-
-
Save salma71/3dbd7eb6429341357e6795302353bdf7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
chunksize = 10 ** 8 | |
for chunk in pd.read_csv(filename, chunksize=chunksize): | |
process(chunk) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment