Created
June 7, 2020 13:44
-
-
Save dipta007/f1d79e9bd56f3aca5a81d01b8627b9c3 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| def get_all(*args, chunksize): | |
| pds = [] | |
| args = args[0] | |
| for arg in args: | |
| pds.append(pd.read_csv(f'{BASE_PATH}/{arg}', chunksize=chunksize)) | |
| return pds |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment