This commit is contained in:
Sid Sarasvati 2024-07-13 20:08:30 +02:00 committed by GitHub
commit 201b8ae1f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -65,7 +65,8 @@ def search_images_ddg(key,max_n=200):
if max_n < 1: return L(set(urls)) # dedupe if max_n < 1: return L(set(urls)) # dedupe
if 'next' not in data: return L(set(urls)) if 'next' not in data: return L(set(urls))
requestUrl = url + data['next'] requestUrl = url + data['next']
except: except Exception as e:
print('Error: %s. Contiuing...' % e)
pass pass