From: Roland Häder Date: Sun, 25 Jun 2023 22:52:07 +0000 (+0200) Subject: Continued: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=47819fa65a32eb792891fa4265748ca14e174723;p=fba.git Continued: - re-run fetch_instances 3-5 times, not fetch_fbabot_atom --- diff --git a/fba/boot.py b/fba/boot.py index 7843a30..eccd514 100644 --- a/fba/boot.py +++ b/fba/boot.py @@ -99,7 +99,7 @@ def init_parser(): ### Fetch blocks from FBA's bot account ### parser = subparser_command.add_parser( "fetch_fbabot_atom", - help="Fetches ATOM feed with domains from FBA's bot account. You may wish to re-run this command several times (at least 3 with big instances) to have a decent amount of valid instances.", + help="Fetches ATOM feed with domains from FBA's bot account.", ) parser.set_defaults(command=commands.fetch_fbabot_atom) @@ -114,7 +114,7 @@ def init_parser(): ### Fetch instances from given initial instance ### parser = subparser_command.add_parser( "fetch_instances", - help="Fetches instances (aka. \"domains\") from an initial instance.", + help="Fetches instances (aka. \"domains\") from an initial instance. You may want to re-run this command several times (at least 3 with big instances) to have a decent amount of valid instances.", ) parser.add_argument("--domain", required=True, help="Instance name (aka. domain) to fetch further instances from. Start with a large instance, e.g. mastodon.social .") parser.add_argument("--single", action="store_true", help="Only fetch given instance.")