pierogis.course module

class pierogis.course.Course(dishes: Optional[List[pierogis.ingredients.dish.Dish]] = None, fps: Optional[float] = None)[source]

Bases: object

treat a series of Dishes as a unit (animation)

property frames
save(path: str, optimize: bool = True, duration: Optional[float] = None, fps: Optional[float] = None) None[source]
Parameters
  • path – path to save output

  • optimize – whether or not to try to optimize a gif output with gifsicle

  • duration – ms duration between frames (gets converted into fps)

  • fps – frames per second for image

serve()[source]