{"library":"manim","title":"Manim","description":"Manim (Mathematical Animation Engine) is a Python library for creating explanatory math videos and animations. Current version is 0.20.1 with monthly releases. Requires Python 3.11+.","language":"python","status":"active","last_verified":"Mon Apr 27","install":{"commands":["pip install manim"],"cli":{"name":"manim","version":""}},"imports":["from manim import Scene","from manim import Square"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"from manim import Scene, Square, config\nconfig.frame_height = 8\nconfig.frame_width = 8\n\nclass ExampleScene(Scene):\n    def construct(self):\n        square = Square()\n        self.play(Create(square))\n        self.wait(1)\n","lang":"python","description":"A minimal scene that shows a square.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}