jellyfin-apiclient-python icon indicating copy to clipboard operation
jellyfin-apiclient-python copied to clipboard

Python API Client for Jellyfin

Results 10 jellyfin-apiclient-python issues
Sort by recently updated
recently updated
newest added

There is a missing " on this line: ```python client.authenticate({"Servers": [{"AccessToken: , "address": }]}, discover=False) ``` It should be: ```python client.authenticate({"Servers": [{"AccessToken": , "address": }]}, discover=False) ``` Although after adding...

This is a development branch where I'm hacking on the API. I will separate out individual features as smaller PRs to make review and merger easier. This branch is a...

Welcome to [Renovate](https://redirect.github.com/renovatebot/renovate)! This is an onboarding PR to help you understand and configure settings before regular Pull Requests begin. 🚦 To activate Renovate, merge this Pull Request. To disable...

Some improvements: * More functions for Jellyfin Library and User APIs but not fully complete. * Add server URL to options in case the default URL is not accessible from...

The line in the README is not correct, as it contains no closing curly bracket ``` client.authenticate({"Servers": [credentials], discover=False) ``` This should likely be ``` client.authenticate({"Servers": [credentials]}, discover=False) ``` However,...

This block of code has been changed in jellyfin-kodi due to platform specific issues. https://github.com/jellyfin/jellyfin-apiclient-python/blob/deb00de02b87aa3df1b1f3071b662e725f98e687/jellyfin_apiclient_python/connection_manager.py#L239-L251 https://github.com/jellyfin/jellyfin-kodi/blob/2a8b06a911d6334339537ad0e988607448c44db9/jellyfin_kodi/jellyfin/connection_manager.py#L214-L219

The Jellyfin API endpoint `/PlayedItems` accepts an optional parameter, `datePlayed`. If the item specified in the API call is `watched` in the jellyfin-api-client `item_played` call, and the caller passes a...

Can you publish an updated version of the API on pypi? There seem to be a lot of changes since the last version was published and a number of issues...

Amend the get_next function which calls /Shows/NextUp to include an optional seriesid and userid parameter. This will allow you to retrieve the next up just for a specific series rather...