X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=set-title-list.py;h=74acae49f3af128eb2c8ed5b0852c284df468a57;hb=b65d59b866ec851da9871afe9707f6b1e38866be;hp=589aa0d85f8b042a378663d1d3a4d4c9bc9c82af;hpb=43a5cbf292ea2e4def610f96d38c86d86f7ccfa6;p=bookmarks_db.git diff --git a/set-title-list.py b/set-title-list.py index 589aa0d..74acae4 100755 --- a/set-title-list.py +++ b/set-title-list.py @@ -1,14 +1,18 @@ #! /usr/bin/env python -""" - Run through the bookmarks database and set names to titles from an external file +"""Run through the bookmarks database and set names to titles from an external file - Written by BroytMann. Copyright (C) 2003-2007 PhiloSoft Design. +This file is a part of Bookmarks database and Internet robot. """ - +from __future__ import print_function import sys +__author__ = "Oleg Broytman " +__copyright__ = "Copyright (C) 2003-2017 PhiloSoft Design" +__license__ = "GNU GPL" + + def run(): from getopt import getopt optlist, args = getopt(sys.argv[1:], "s") @@ -24,9 +28,9 @@ def run(): pass if report_stats: - print "BroytMann set-title-list, Copyright (C) 2003-2007 PhiloSoft Design" + print("Broytman set-title-list, Copyright (C) 2003-2017 PhiloSoft Design") - if len(args) <> 1: + if len(args) != 1: sys.stderr.write("Usage: set-title-list [-s] title_list_file\n") sys.exit(1) @@ -46,12 +50,12 @@ def run(): title = line elif line: # the third line in every 3 lines must be empty - raise ValueError, "line is not empty for URL `%s', title `%s': line `%s'" % (URL, title, line) + raise ValueError("line is not empty for URL `%s', title `%s': line `%s'" % (URL, title, line)) else: # We've got 3 lines - add new entry to the mapping if titles_dict.has_key(URL): - if title <> titles_dict[URL]: - raise ValueError, "titles are not identical for URL `%s': `%s' <> `%s'" % (URL, title, titles_dict[URL]) + if title != titles_dict[URL]: + raise ValueError("titles are not identical for URL `%s': `%s' != `%s'" % (URL, title, titles_dict[URL])) else: titles_dict[URL] = title @@ -76,7 +80,7 @@ def run(): objects = len(root_folder.linear) if report_stats: - print "Ok" + print("Ok") # Run through the list of objects and check URLs/titles @@ -88,7 +92,7 @@ def run(): URL = object.href if titles_dict.has_key(URL): name = titles_dict[URL] - if object.name <> name: + if object.name != name: object.name = name changed += 1 @@ -106,9 +110,9 @@ def run(): storage.store(root_folder) if changed and report_stats: - print "Ok" - print objects, "objects passed" - print changed, "objects changed" + print("Ok") + print(objects, "objects passed") + print(changed, "objects changed") if __name__ == '__main__':