]> git.phdru.name Git - bookmarks_db.git/commitdiff
Release 6.1.0 6.1.0
authorOleg Broytman <phd@phdru.name>
Sun, 8 Sep 2024 07:36:12 +0000 (10:36 +0300)
committerOleg Broytman <phd@phdru.name>
Sun, 8 Sep 2024 12:50:17 +0000 (15:50 +0300)
bkmk_objects.py
doc/ANNOUNCE
doc/ChangeLog
robots.py

index 02fab566106600d05fa62fb3f01486964164531a..6839f18d851fbec739b287ffd242732043edb76c 100644 (file)
@@ -7,7 +7,7 @@ This file is a part of Bookmarks database and Internet robot.
 __author__ = "Oleg Broytman <phd@phdru.name>"
 __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',
index 3962e5aaeabdb0a1eca027aeeaf2b43959cb3a6c..ffa304815c76c0dc491f00271dc051c55d4a7198 100644 (file)
@@ -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.
 
index 54fa80233f71da2a601ade32060c21f5163bde75..662c11010eea2f2270f6715aa2f9b292f09e4856 100644 (file)
@@ -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.
 
index 7b79976e96786ad5e0be1e927d947b6996e2b6d3..2b804043bfdedf27409da7dee341b702ceb736bd 100644 (file)
--- 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):