Increase scan timeout.
Browse files
app.py
CHANGED
@@ -51,7 +51,7 @@ def get_files_by_username(username, api_key = None):
|
|
51 |
output = {}
|
52 |
|
53 |
while url:
|
54 |
-
response = requests.get(url, timeout=
|
55 |
data = response.json()
|
56 |
# Add current page items to the list
|
57 |
for model in data['items']:
|
|
|
51 |
output = {}
|
52 |
|
53 |
while url:
|
54 |
+
response = requests.get(url, timeout=300)
|
55 |
data = response.json()
|
56 |
# Add current page items to the list
|
57 |
for model in data['items']:
|