If i have a list of dates:<div>date_list = ['2008-12-29','2008-12-31','2008-01-01','2008-01-02','2008-01-03','2008-01-05']</div><div><br></div><div>How do I find the missing dates in the range of dates and insert them into the list so I get?</div>
<div>date_list = ['2008-12-29','2008-12-30','2008-12-31','2008-01-01','2008-01-02','2008-01-03','2008-12-04','2008-01-05']</div><div><br></div><div>Hopefully the case is that I haven't found the correct python module that does it ;)</div>
<div><br></div><div><br></div>