I think this is right but google appengine seems to get to a certain point and cop-out;
Firstly is this code actually right; and secondly is there away to skip the record if it cant output (like an ignore errors and continue)?
class TrackerExporter(bulkloader.Exporter):
def __init__(self):
bulkloader.Exporter.__init__(self, 'SearchRec',
[('__key__', lambda key:key.name(), None),
('WebSite', str, None),
('DateStamp', lambda x: datetime.datetime.strptime(x, '%d-%m-%Y').date(), None),
('IP', str, None),
('UserAgent', str, None)])
Thanks