mirror of
https://github.com/excalidraw/excalidraw-playground.git
synced 2026-05-17 13:30:37 +00:00
excalidraw.py
Python library to generate
.excalidrawfiles.
import excalidraw
scene = excalidraw.Excalidraw()
scene.add_rectangle(0, 0, 100, 100)
scene.add_ellipse(120, 0, 100, 100)
scene.save_as("hello")
scene.save_as_lib("hello")