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
per_request (int): Number of Movies to add per request.
146
146
147
147
Returns:
148
-
Tuple[List[:class:`~arrapi.objs.reload.Movie`], List[:class:`~arrapi.objs.reload.Movie`], List[int]]: List of Movies that were able to be added, List of Movies already in Radarr, List of TMDb IDs of Movies that could not be found.
148
+
Tuple[List[:class:`~arrapi.objs.reload.Movie`], List[:class:`~arrapi.objs.reload.Movie`], List[Union[int, str, Movie]]]: List of Movies that were able to be added, List of Movies already in Radarr, List of Movies that could not be found or were excluded.
149
149
150
150
Raises:
151
151
:class:`~arrapi.exceptions.Invalid`: When one of the options given is invalid.
per_request (int): Number of Movies to edit per request.
206
206
207
207
Returns:
208
-
Tuple[List[:class:`~arrapi.objs.reload.Movie`], List[int]]: List of Movies that were able to be edited, List of TMDb IDs that could not be found in Radarr.
208
+
Tuple[List[:class:`~arrapi.objs.reload.Movie`], List[Union[int, str, Movie]]]: List of Movies that were able to be edited, List of Movies that could not be found in Radarr.
209
209
210
210
Raises:
211
211
:class:`~arrapi.exceptions.Invalid`: When one of the options given is invalid.
per_request (int): Number of Series to add per request.
166
166
167
167
Returns:
168
-
Tuple[List[:class:`~arrapi.objs.reload.Series`], List[:class:`~arrapi.objs.reload.Series`], List[int]]: List of Series that were able to be added, List of Series already in Sonarr, List of TVDb IDs of Series that could not be found.
168
+
Tuple[List[:class:`~arrapi.objs.reload.Series`], List[:class:`~arrapi.objs.reload.Series`], List[Union[int, Series]]]: List of Series that were able to be added, List of Series already in Sonarr, List of Series that could not be found or were excluded.
169
169
170
170
Raises:
171
171
:class:`~arrapi.exceptions.Invalid`: When one of the options given is invalid.
per_request (int): Number of Series to edit per request.
231
231
232
232
Returns:
233
-
Tuple[List[:class:`~arrapi.objs.reload.Series`], List[int]]: List of TVDb that were able to be edited, List of TVDb IDs that could not be found in Sonarr.
233
+
Tuple[List[:class:`~arrapi.objs.reload.Series`], List[Union[Series, int]]]: List of Series that were able to be edited, List of Series that could not be found in Sonarr.
234
234
235
235
Raises:
236
236
:class:`~arrapi.exceptions.Invalid`: When one of the options given is invalid.
0 commit comments