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
| ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIP7wfdc9jEq6X0WVqEyE//WowI0gh2So0Ou41iJjAu4v mstrack-cd-v2 |
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
| ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPBgM/xsOgH7KEv7+RQRLs6oFzZ6w974qxeSpFtmhtlr milestrack-gh-actions-cd |
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
| # From TXT files, we are going to create a full combined data | |
| # If the file does not exist, we create the file in write mode (w) | |
| if not os.path.isfile(r'kaggle/working/fullcombined_data.csv'): | |
| # Process start time | |
| start = datetime.now() | |
| # Path and files that is going to be combined to a full file | |
| files = [r'kaggle/input/netflix-prize-data/combined_data_1.txt', | |
| r'kaggle/input/netflix-prize-data/combined_data_2.txt', | |
| r'kaggle/input/netflix-prize-data/combined_data_3.txt', |