diff options
| author | 2025-12-11 22:11:56 +0000 | |
|---|---|---|
| committer | 2025-12-11 22:11:56 +0000 | |
| commit | 3f46372cce424621e1e6041cd2fc19e8ec292e68 (patch) | |
| tree | c68052ffddc6ff957a18ce2f6425e57e2eb47ba1 /user-config.py | |
| parent | pkgs(pywikibot-scripts): add scripts.i18n to packages (diff) | |
| signature | ||
user-config: put_throttle = 0
don't wait before changing pages
from https://stackoverflow.com/a/60885381 which is further from
https://github.com/donkaban/pywiki-bot/blob/1c5175ae9a14321e535e45635496b406aacb2c52/user-config.py#L159-L161
Diffstat (limited to 'user-config.py')
| -rw-r--r-- | user-config.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/user-config.py b/user-config.py index 210d9e5..829e822 100644 --- a/user-config.py +++ b/user-config.py @@ -5,3 +5,8 @@ password_file = "user-password.cfg" mylang = 'en' family = 'ArchiveTeam' usernames['ArchiveTeam']['en'] = os.environ.get('ATWIKI_EN', '') + +# don't wait when doing changes, do them as fast as you can +# comment this if you're going to do a lot of edits, or use +# -put_throttle <number-of-seconds> +put_throttle = 0 |
