10 lines
176 B
Python
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)
|