add jellyfin part

This commit is contained in:
2025-12-09 19:57:22 +01:00
parent 46c47fc6e7
commit 81a3981d18
6 changed files with 57 additions and 13 deletions

9
main.py Normal file
View File

@@ -0,0 +1,9 @@
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)