X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=sort_db.py;h=9a478bf75c394513411e762c2ccc2cdb9d4a30cf;hb=ba13205bb60a7f770bae98aeadcc6afe3dc705ea;hp=60e3d4179437ac47d0de23c81de13c65af1a3ea0;hpb=fb5c3b2b91aeeb615d6d6d890491af3fdff69556;p=bookmarks_db.git diff --git a/sort_db.py b/sort_db.py index 60e3d41..9a478bf 100755 --- a/sort_db.py +++ b/sort_db.py @@ -1,6 +1,5 @@ -#! /usr/local/bin/python -O -""" - Sort bookmarks DB according to a rule: +#! /usr/bin/env python +"""Sort bookmarks DB according to a rule: -a - by AddDate -v - by LastVisit -m - by LastModified @@ -9,26 +8,30 @@ default is -m -r - reverse the sort order - Written by BroytMann, Apr 2000. Copyright (C) 2000 PhiloSoft Design +This file is a part of Bookmarks database and Internet robot. + """ +__author__ = "Oleg Broytman " +__copyright__ = "Copyright (C) 2000-2017 PhiloSoft Design" +__license__ = "GNU GPL" import sys -class SortBy: +class SortBy(object): def __init__(self, sort_by): self.sort_by = sort_by def __call__(self, o1, o2): try: attr1 = int(getattr(o1, self.sort_by)) - except (TypeError, AttributeError): + except (AttributeError, TypeError, ValueError): return 1 try: attr2 = int(getattr(o2, self.sort_by)) - except (TypeError, AttributeError): + except (AttributeError, TypeError, ValueError): return -1 return cmp(attr1, attr2) @@ -78,7 +81,7 @@ def run(): root_folder = storage.load() if report_stats: - print "Ok" + print("Ok") sys.stdout.write("Sorting (by %s): " % sort_by) sys.stdout.flush() @@ -99,7 +102,7 @@ def run(): output_filename = output_filename + "-reverse" if report_stats: - print "done" + print("done") sys.stdout.write("Writing %s: " % output_filename) sys.stdout.flush() @@ -110,7 +113,7 @@ def run(): outfile.close() if report_stats: - print "Ok" + print("Ok") if __name__ == '__main__':