From 396714b37c8f9266a4a6d522f4867776a1923604 Mon Sep 17 00:00:00 2001 From: Khaled ElMorshedy <31712173+elmoiv@users.noreply.github.com> Date: Sat, 30 Nov 2019 19:15:02 +0200 Subject: [PATCH] Update tools.py --- azapi/tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azapi/tools.py b/azapi/tools.py index e357dc6..e3846e5 100644 --- a/azapi/tools.py +++ b/azapi/tools.py @@ -72,7 +72,7 @@ def ParseSearch(page, limit, cat): page_count = int(header.text.split(' ')[3]) // 20 limit = 1 if limit < 1 else page_count if limit > page_count else limit - + results = htmlFindAll(page)('td', {'class':'text-left visitedlyr'}) data = {n:{} for n in range(len(results))}