import jupyter_manim
COLOR = 'red'
from manimlib.scene.scene import Scene
from manimlib.mobject.geometry import Circle
from manimlib.animation.creation import ShowCreation
%%manim Shapes --low_quality
class Shapes(Scene):
def construct(self):
circle = Circle(color=COLOR)
self.play(ShowCreation(circle))