From: Greg Hewgill Date: Thu, 8 Jan 2009 11:06:41 +0000 (+1300) Subject: resume download if interrupted X-Git-Tag: ljdump-1.3.2~7 X-Git-Url: http://www.wagner.pp.ru/gitweb/?p=oss%2Fljdump.git;a=commitdiff_plain;h=71a5512e5bc7c48cbe8137ff1083d80d0ea581d3 resume download if interrupted --- diff --git a/ChangeLog b/ChangeLog index 47a8778..32daf7f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,9 +2,10 @@ ChangeLog - ljdump Version 1.3.1 - 2009-01-08 -- Handle userpic keywords with non-ASCII characters -- Download and save userpic images -- Handle unexpected empty item +- Feature: Download and save userpic images +- Feature: Resume download where it left off if interrupted +- Bugfix: Handle userpic keywords with non-ASCII characters +- Bugfix: Handle unexpected empty item Version 1.2 - 2006-09-08 diff --git a/ljdump.py b/ljdump.py index 534e683..0c9ec89 100755 --- a/ljdump.py +++ b/ljdump.py @@ -106,6 +106,12 @@ def writedump(fn, event): dumpelement(f, "event", event) f.close() +def writelast(): + f = open("%s/.last" % Username, "w") + f.write("%s\n" % lastsync) + f.write("%s\n" % lastmaxid) + f.close() + def createxml(doc, name, map): e = doc.createElement(name) for k in map.keys(): @@ -201,6 +207,7 @@ while True: pprint.pprint(x) errors += 1 lastsync = item['time'] + writelast() # The following code doesn't work because the server rejects our repeated calls. # http://www.livejournal.com/doc/server/ljp.csp.xml-rpc.getevents.html @@ -324,10 +331,7 @@ while True: lastmaxid = maxid -f = open("%s/.last" % Username, "w") -f.write("%s\n" % lastsync) -f.write("%s\n" % lastmaxid) -f.close() +writelast() if origlastsync: print "%d new entries, %d new comments (since %s)" % (newentries, newcomments, origlastsync)