I am reading a csv file. I am then putting it into a dictionary and then trying to put the Dictionary into a list. Problem is, in the file I am reading there should be 8 different dictionaries put in the list. But the only one that shows up is the last one, number 8. Anyway here is the code.
I don't understand why just the last one prints out when I print the whole list.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 |
# DEFINE LOAD RACE FILE FUNCTION def load_racefiles() : count = 0 master_race_file = [] rows = 100 columns = 100 horse_array = [ 0 for i in range (rows)] file_name = StringVar() f_name = StringVar() #file_dir = (r"C:\2020") fd = open ( "dirpath" , "r" ) file_dir = (fd.read()) fd.close() os.chdir(file_dir) for f in os.listdir(file_dir): file_name, file_ext = os.path.splitext(f) f_name = file_name + file_ext file_name = file_name.strip()[ 3 :] line_counter = 0 if file_name = = Race_date and file_ext = = ".jcp" : with open (f_name, "r" ) as csv_file: csv_reader = csv.reader(csv_file) for line in csv_reader: track_name = line[ 0 ] race_num = line[ 2 ] surface = line[ 6 ] race_type = line[ 8 ] purse = line[ 11 ] trn_starts_curmeet = line[ 28 ] trn_wins_curmeet = line[ 29 ] jock_sts_curmeet = line[ 34 ] jock_wins_curmeet = line[ 35 ] trn_starts_curyear = line[ 1146 ] trn_wins_curyear = line[ 1147 ] jock_sts_curyear = line[ 1156 ] jock_wins_curyear = line[ 1157 ] trn_starts_prevyear = line[ 1151 ] trn_wins_prevyear = line[ 1152 ] jock_sts_prevyear = line[ 1161 ] jock_wins_prevyear = line[ 1162 ] morn_line = line[ 43 ] horse_name = line[ 44 ] year_of_birth = line[ 45 ] hstarts_todays_dist = line[ 64 ] hwins_todays_dist = line[ 65 ] hstarts_todays_track = line[ 69 ] hwins_todays_track = line[ 70 ] hstarts_turf = line[ 74 ] hwins_turf = line[ 75 ] hstarts_mud = line[ 79 ] hwins_mud = line[ 80 ] hstarts_cur_yr = line[ 84 ] hwins_cur_yr = line[ 85 ] hstarts_prev_yr = line[ 90 ] hwins_prev_yr = line[ 91 ] hstarts_life = line[ 96 ] hwins_life = line[ 97 ] days_since = line[ 223 ] power_rating = line[ 250 ] dist_yards1 = line[ 315 ] dist_yards2 = line[ 316 ] dist_yards3 = line[ 317 ] dist_yards4 = line[ 318 ] dist_yards5 = line[ 319 ] dist_yards6 = line[ 320 ] dist_yards7 = line[ 321 ] dist_yards8 = line[ 322 ] dist_yards9 = line[ 323 ] dist_yards10 = line[ 324 ] surface1 = line[ 325 ] surface2 = line[ 326 ] surface3 = line[ 327 ] surface4 = line[ 328 ] surface5 = line[ 329 ] surface6 = line[ 330 ] surface7 = line[ 331 ] surface8 = line[ 332 ] surface9 = line[ 333 ] surface10 = line[ 334 ] entrants1 = line[ 345 ] entrants2 = line[ 346 ] entrants3 = line[ 347 ] entrants4 = line[ 348 ] entrants5 = line[ 349 ] entrants6 = line[ 350 ] entrants7 = line[ 351 ] entrants8 = line[ 352 ] entrants9 = line[ 353 ] entrants10 = line[ 354 ] first_call1 = line[ 575 ] first_call2 = line[ 576 ] first_call3 = line[ 577 ] first_call4 = line[ 578 ] first_call5 = line[ 579 ] first_call6 = line[ 580 ] first_call7 = line[ 581 ] first_call8 = line[ 582 ] first_call9 = line[ 583 ] first_call10 = line[ 584 ] second_call1 = line[ 585 ] second_call2 = line[ 586 ] second_call3 = line[ 587 ] second_call4 = line[ 588 ] second_call5 = line[ 589 ] second_call6 = line[ 590 ] second_call7 = line[ 591 ] second_call8 = line[ 592 ] second_call9 = line[ 593 ] second_call0 = line[ 594 ] finish_Position = line[ 615 ] last_peed = line[ 845 ] speed_2back = line[ 846 ] speed_3back = line[ 847 ] bestSpeed_Life = line[ 1327 ] bestSpeed_Fasttrack = line[ 1177 ] bestSpeed_turf = line[ 1178 ] bestSpeed_offtrack = line[ 1179 ] bestSpeed_dist = line[ 1180 ] race_conditions = line[ 15 ] todays_race_classification = line[ 10 ] h = { 'track' : track_name, 'race_number' : race_num, 'todays_surface' : surface, 'race_type' : race_type, 'todays_purse' : purse, 'trn_starts_curmeet' : trn_starts_curmeet, 'trn_wins_curmeet' : trn_wins_curmeet, 'jock_sts_curmeet' : jock_sts_curmeet, 'jock_wins_curmeet' : jock_wins_curmeet, 'trn_starts_prevyear' : trn_starts_prevyear, 'trn_wins_prevyear' : trn_wins_prevyear, 'jock_sts_prevyear' : jock_sts_prevyear, 'jock_wins_prevyear' : jock_wins_prevyear, 'morn_line' : morn_line, 'horse_name' : horse_name, 'year_of_birth' : year_of_birth, 'hstarts_todays_dist' : hstarts_todays_dist, 'hwins_todays_dist ' : hwins_todays_dist, 'hstarts_todays_track' : hstarts_todays_track, 'hwins_todays_track' :hwins_todays_track, 'hstarts_turf' : hstarts_turf, 'hwins_turf' : hwins_turf, 'hstarts_mud' : hstarts_mud, 'hwins_mud' : hwins_mud, 'hstarts_cur_yr' : hstarts_cur_yr, 'hwins_cur_yr' : hwins_cur_yr, 'hstarts_prev_yr' : hstarts_cur_yr, 'hwins_prev_yr' : hwins_cur_yr, 'hstarts_life' : hstarts_life, 'hwins_life' : hwins_life, 'days_since' : days_since, 'power_rating' : power_rating, 'dist_yards1' : dist_yards1, 'dist_yards2' : dist_yards2, 'dist_yards3' : dist_yards3, 'dist_yards4' : dist_yards4, 'dist_yards5' : dist_yards5, 'dist_yards6' : dist_yards6, 'dist_yards7' : dist_yards7, 'dist_yards8' : dist_yards8, 'dist_yards9' : dist_yards9, 'dist_yards10' : dist_yards10, 'surface1' : surface1, 'surface2' : surface2, 'surface3' : surface3, 'surface4' : surface4, 'surface5' : surface5, 'surface6' : surface6, 'surface7' : surface7, 'surface8' : surface8, 'surface9' : surface8, 'surface10' : surface10, 'entrants1' : entrants1, 'entrants2' : entrants2, 'entrants3' : entrants3, 'entrants4' : entrants4, 'entrants5' : entrants5, 'entrants6' : entrants6, 'entrants7' : entrants7, 'entrants8' : entrants8, 'entrants9' : entrants9, 'entrants10' : entrants10, 'first_call1' : first_call1, 'first_call2' : first_call2, 'first_call3' : first_call3, 'first_call4' : first_call4, 'first_call5' : first_call5, 'first_call6' : first_call6, 'first_call7' : first_call7, 'first_call8' : first_call8, 'first_call9' : first_call9, 'first_call10' : first_call10, 'second_call1' : second_call1, 'second_call2' : second_call2, 'second_call3' : second_call3, 'second_call4' : second_call4, 'second_call5' : second_call5, 'second_call6' : second_call6, 'second_call7' : second_call7, 'second_call8' : second_call8, 'second_call9' : second_call9, 'second_call0' : second_call0, 'finish_Position' : finish_Position, 'last_peed' : last_peed, 'speed_2back' : speed_2back, 'speed_3back' : speed_3back, 'trn_starts_curyear' : trn_starts_curyear, 'trn_wins_curyear' : trn_wins_curyear, 'jock_sts_curyear' : jock_sts_curyear, 'jock_wins_curyear' : jock_wins_curyear, 'bestSpeed_Life' : bestSpeed_Life, 'bestSpeed_Fasttrack' : bestSpeed_Fasttrack, 'bestSpeed_turf' : bestSpeed_turf, 'bestSpeed_offtrack' : bestSpeed_offtrack, 'bestSpeed_dist' : bestSpeed_dist, 'race_conditions' : race_conditions, 'todays_race_classification' : todays_race_classification } master_race_file.append(h ) line_counter + = 1 print (master_race_file) print (line_counter) my_labeldone = Label( text = "Downloading Complete" , fg = "black" , font = ( "sans_serif" , 16 )).place(x = 500 , y = 500 ) |