From 9706057ec380d3018a3346261f05b9c7b6cdf2da Mon Sep 17 00:00:00 2001 From: tom5079 Date: Mon, 5 Oct 2020 19:23:44 +0900 Subject: [PATCH] Print progress --- scripts/tags.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/tags.py b/scripts/tags.py index 74b3be11..c1926f23 100644 --- a/scripts/tags.py +++ b/scripts/tags.py @@ -12,6 +12,7 @@ tags = dict() count_regex = re.compile(r".+\((\d+)\)$") for index in indices: + print('.', end='') url = f'https://hitomi.la/alltags-{index}.html' soup = BeautifulSoup(requests.get(url).text, 'html.parser')