Solucionado, al final aplique este código:
Código Python:
Ver originaldef repl(matchobj):
return 'EL DIA ' + matchobj.group(0)[0:2] + ' A LAS ' + matchobj.group(0)[2:6];
s15 = open("c:/wx/wx.txt").read()
s15 = re.sub('\d{6}', repl, s15);
f = open("c:/wx/wx.txt",'w')
f.write(s15)
f.close()
Gracias por vuestra ayuda