mirror of
https://github.com/nadimkobeissi/mkbsd.git
synced 2024-12-04 16:57:47 -05:00
Update mkbsd.py
Add count of images before starting download
This commit is contained in:
parent
82e50c64f0
commit
8837253d9f
1 changed files with 3 additions and 0 deletions
3
mkbsd.py
3
mkbsd.py
|
@ -29,6 +29,9 @@ async def main():
|
|||
raise Exception(f"⛔ Failed to fetch JSON file: {response.status}")
|
||||
json_data = await response.json()
|
||||
data = json_data.get('data')
|
||||
|
||||
count = len(data) if data else 0
|
||||
print(f"Found {count} images..")
|
||||
|
||||
if not data:
|
||||
raise Exception('⛔ JSON does not have a "data" property at its root.')
|
||||
|
|
Loading…
Reference in a new issue