From 4751f5be695fb01916b2f8aa3ae01ce1b7aaf9e4 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sun, 8 Sep 2024 10:36:12 +0300 Subject: [PATCH] Release 6.1.0 --- bkmk_objects.py | 2 +- doc/ANNOUNCE | 7 ++++--- doc/ChangeLog | 7 ++++--- robots.py | 3 +-- 4 files changed, 10 insertions(+), 9 deletions(-) diff --git a/bkmk_objects.py b/bkmk_objects.py index 02fab56..6839f18 100644 --- a/bkmk_objects.py +++ b/bkmk_objects.py @@ -7,7 +7,7 @@ This file is a part of Bookmarks database and Internet robot. __author__ = "Oleg Broytman " __copyright__ = "Copyright (C) 2000-2024 PhiloSoft Design" __license__ = "GNU GPL" -__version__ = '6.0.0' +__version__ = '6.1.0' __all__ = ['Folder', 'Bookmark', 'Ruler', 'Walker', 'Writer', 'Robot', 'InverseLinker', 'Linear', 'make_linear', 'make_tree', 'break_tree', diff --git a/doc/ANNOUNCE b/doc/ANNOUNCE index 3962e5a..ffa3048 100644 --- a/doc/ANNOUNCE +++ b/doc/ANNOUNCE @@ -7,16 +7,17 @@ bookmarks.html. WHAT'S NEW -Version 6.1.0 (2024-??-??) +Version 6.1.0 (2024-09-08) Combined aiohttp with multiaio; the combined robot is named just aio. Robot based on curl_multi, processes multiple URLs in parallel - using concurrent.futures (multithreaded). + using concurrent.futures (multithreaded). Doesn't work good -- + slow and a number of problems; need more work. Combined curl with curlmulti; the combined robot is named just curl. - Default list of robots is now multirequests,aio,curl. + Default list of robots is now multirequests,aio. Make bkmk_rmultirequests always multiprocess. diff --git a/doc/ChangeLog b/doc/ChangeLog index 54fa802..662c110 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,13 +1,14 @@ -Version 6.1.0 (2024-??-??) +Version 6.1.0 (2024-09-08) Combine aiohttp with multiaio; the combined robot is named just aio. Robot based on curl_multi, processes multiple URLs in parallel - using concurrent.futures (multithreaded). + using concurrent.futures (multithreaded). Doesn't work good -- + slow and a number of problems; need more work. Combined curl with curlmulti; the combined robot is named just curl. - Default list of robots is now multirequests,aio,curl. + Default list of robots is now multirequests,aio. Make bkmk_rmultirequests always multiprocess. diff --git a/robots.py b/robots.py index 7b79976..2b80404 100644 --- a/robots.py +++ b/robots.py @@ -11,12 +11,11 @@ __license__ = "GNU GPL" __all__ = ['import_robot', 'robot'] -import sys from os import environ from bkmk_objects import parse_params, set_params robot_names, robot_params = parse_params( - environ.get("BKMK_ROBOT", "multirequests,aio,curl")) + environ.get("BKMK_ROBOT", "multirequests,aio")) def import_robot(robot_name): -- 2.39.5