Update mkbsd.py to use local JSOM

This commit is contained in:
retardgerman 2024-10-09 12:19:31 +02:00 committed by GitHub
parent b0ce68033d
commit e96161c7c2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,9 +2,11 @@ import os
import time import time
import aiohttp import aiohttp
import asyncio import asyncio
import json
from urllib.parse import urlparse from urllib.parse import urlparse
url = 'https://storage.googleapis.com/panels-api/data/20240916/media-1a-i-p~s' # Load the local JSON file
json_file_path = 'images.json'
async def delay(ms): async def delay(ms):
await asyncio.sleep(ms / 1000) await asyncio.sleep(ms / 1000)
@ -22,23 +24,22 @@ async def download_image(session, image_url, file_path):
async def main(): async def main():
try: try:
async with aiohttp.ClientSession() as session: # Load JSON data from the local file
async with session.get(url) as response: with open(json_file_path, 'r') as json_file:
if response.status != 200: json_data = json.load(json_file)
raise Exception(f"⛔ Failed to fetch JSON file: {response.status}")
json_data = await response.json()
data = json_data.get('data') data = json_data.get('data')
if not data: if not data:
raise Exception('⛔ JSON does not have a "data" property at its root.') raise Exception('⛔ JSON does not have a "data" property at its root.')
async with aiohttp.ClientSession() as session:
for key, subproperty in data.items(): for key, subproperty in data.items():
if subproperty and subproperty.get('dhd'): if subproperty and subproperty.get('dhd'):
image_url = subproperty['dhd'] image_url = subproperty['dhd']
print(f"🔍 Found image URL!") print(f"🔍 Found image URL!")
# Extrahiere den Künstlernamen vor dem Unterstrich # Extract artist name from the URL
parsed_url = urlparse(image_url)
artist_name = image_url.split('a~')[1].split('_')[0] artist_name = image_url.split('a~')[1].split('_')[0]
artist_dir = os.path.join(os.getcwd(), 'downloads', artist_name) artist_dir = os.path.join(os.getcwd(), 'downloads', artist_name)
@ -46,8 +47,8 @@ async def main():
os.makedirs(artist_dir) os.makedirs(artist_dir)
print(f"📁 Created directory: {artist_dir}") print(f"📁 Created directory: {artist_dir}")
# Extrahiere den Dateinamen und die Endung # Extract filename from the URL
filename = os.path.basename(parsed_url.path) # Name inklusive Endung filename = os.path.basename(urlparse(image_url).path) # Name including extension
file_path = os.path.join(artist_dir, filename) file_path = os.path.join(artist_dir, filename)
await download_image(session, image_url, file_path) await download_image(session, image_url, file_path)