I have python code to create a bezier curve, from which I create a bezier path.
Here are my imports:
import from svgpathtools import Path, Line, CubicBezier
Here is my code:
bezier_curve = CubicBezier(start_coordinate, control_point_1, control_point_2, end_coordinate)
bezier_path = Path(bezier_curve)
I would like to create a list of coordinates that make up this curve, but none of the documentation I am reading gives a straightforward way to do that. bezier_curve and bezier_path only have parameters for the start point, end point, and control point.

Seems like a pretty reasonable question. Surprised there's no answer. I had to do this myself recently, and the secret is
point().Here's how I got it done, using your boilerplate as a starting point:
Output: