Helioviewer-Project / python-api

Python wrapper around the Helioviewer API.
https://hvpy.readthedocs.io/en/latest/
BSD 2-Clause "Simplified" License
6 stars 5 forks source link

Create function for creating a movie #63

Closed dgarciabriseno closed 2 years ago

dgarciabriseno commented 2 years ago

We should first create a util module. The purpose to place functions here that do actions that would normally take multiple API requests. For example, creating a movie.

To create movie you must:

  1. queueMovie
  2. getMovieStatus until movie is done processing
  3. downloadMovie
  4. save to designated file.

Let's create a util module with a function called createMovie(QueueMovieInputParams)

akash5100 commented 2 years ago

util module already exists, do we need a new module like helper or add it in the current utils.py?