Files
jellydisc/main.py
2025-12-09 19:57:22 +01:00

10 lines
176 B
Python

from dotenv import load_dotenv
from jellyfin import get_client, get_active_media
load_dotenv()
client = get_client()
media_list = get_active_media(client)
print(media_list)