Key Start/End Bevel Factor ans Evaluation Time in Python

Hey!:slight_smile:
Is there a possibility to key the Start/End Bevel Factor and Evaluation Time of a curve in Phyton?
A script would be nice and maybe a description?:slight_smile:

Tanks!:slight_smile:

curve = bpy.context.object.data # assume it’s a CURVE object

curve.bevel_factor_start = 0.2
curve.keyframe_insert(data_path=“bevel_factor_start”)
curve.bevel_factor_start = 1.0
curve.keyframe_insert(data_path=“bevel_factor_start”, frame=123)

#curve.keyframe_insert(data_path=“bevel_factor_end”)
#curve.keyframe_insert(data_path=“eval_time”)

Danke!:slight_smile: Hat funktioniert.