We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While the RadarrAPI class exposes /movie/editor as upd_movies(), the SonarrAPI class doesn't expose /series/editor despite it being a valid endpoint.
upd_movies()
I made a quick monkeypatch so I could use it in a one-off script:
from pyarr import SonarrAPI as _SonarrAPI class SonarrAPI(_SonarrAPI): def edit_series(self, data): return self._put("series/editor", self.ver_uri, data=data)
That being said, it would be nice if something similar could be put into the official class.
I wanted to edit the root folder of all series matching a particular criteria in a one-off script.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is there an existing issue for this?
Expected feature
While the RadarrAPI class exposes /movie/editor as
upd_movies()
, the SonarrAPI class doesn't expose /series/editor despite it being a valid endpoint.Possible Solutions
I made a quick monkeypatch so I could use it in a one-off script:
That being said, it would be nice if something similar could be put into the official class.
Context / Reason
I wanted to edit the root folder of all series matching a particular criteria in a one-off script.
Code of Conduct
The text was updated successfully, but these errors were encountered: