reQueueMovie#

hvpy.reQueueMovie(id, force=False)[source]#

Re-generate a custom movie that is no longer cached on the server.

Parameters:
  • id (str) – Unique movie identifier, returned as a response by the queueMovie endpoint request.

  • force (bool) – Boolean to force the re-queueing of the movie. Defaults to False, optional.

Return type:

Union[bytes, str, Dict[str, Any]]

References

Examples

>>> from hvpy import reQueueMovie
>>> reQueueMovie(id="gxRN5", force=True)  
{'id': 'gxRN5', 'eta': 274, 'queue': 0, 'token': '...'}