X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=sort_db.py;h=f53cdd4d71b57c20558859220721671e06dbd397;hb=fa0f65074563ba0fe38311f4b79787d15f0bee7c;hp=ed22fda52914cc8de997ce2a1a64699dc6932960;hpb=0e76f1851882b99da63a7c8a9e4cdf0c4a48657f;p=bookmarks_db.git diff --git a/sort_db.py b/sort_db.py index ed22fda..f53cdd4 100755 --- a/sort_db.py +++ b/sort_db.py @@ -1,6 +1,5 @@ #! /usr/bin/env python -""" - Sort bookmarks DB according to a rule: +"""Sort bookmarks DB according to a rule: -a - by AddDate -v - by LastVisit -m - by LastModified @@ -9,14 +8,18 @@ default is -m -r - reverse the sort order - Written by Broytman, 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-2014 PhiloSoft Design" +__license__ = "GNU GPL" import sys -class SortBy: +class SortBy(object): def __init__(self, sort_by): self.sort_by = sort_by