You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
""" Gets a :class:`~arrapi.objs.reload.Series` by one of the IDs and edits it in Sonarr.
199
+
200
+
Parameters:
201
+
series_id (Optional[int]): Search by Sonarr Series ID.
202
+
tvdb_id (Optional[int]): Search by TVDb ID.
203
+
path (Optional[str]): Path to change the Series to.
204
+
move_files (bool): When changing the path do you want to move the files to the new path.
205
+
quality_profile (Optional[Union[str, int, QualityProfile]]): Quality Profile to change the Series to.
206
+
language_profile (Optional[Union[str, int, LanguageProfile]]): Language Profile to change the Series to.
207
+
monitor (Optional[str]): How you want the Series monitored. Valid options are all, future, missing, existing, pilot, firstSeason, latestSeason, or none.
208
+
monitored (Optional[bool]): Monitor the Series.
209
+
season_folder (Optional[bool]): Use Season Folders for the Series.
210
+
series_type (Optional[str]): Series Type to change the Series to. Valid options are standard, daily, or anime.
211
+
tags (Optional[List[Union[str, int, Tag]]]): Tags to be added, replaced, or removed from the Series.
212
+
apply_tags (str): How you want to edit the Tags. Valid options are add, replace, or remove.
213
+
214
+
Returns:
215
+
:class:`~arrapi.objs.reload.Series`: Series for the ID given.
216
+
217
+
Raises:
218
+
:class:`ValueError`: When no ID is given or when theres no options given.
219
+
:class:`~arrapi.exceptions.Invalid`: When one of the options given is invalid.
220
+
:class:`~arrapi.exceptions.NotFound`: When there's no series with that ID or when the Series hasn't been added to Sonarr.
0 commit comments