Skip to content

Commit fec3e7a

Browse files
author
Damiano Bacci
committed
feat(manim): added manim project for animations
1 parent d0f7f45 commit fec3e7a

6 files changed

Lines changed: 597 additions & 1 deletion

File tree

manimations/.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.14

manimations/README.md

Whitespace-only changes.

manimations/main.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
def main():
2+
print("Hello from manimations!")
3+
4+
5+
if __name__ == "__main__":
6+
main()

manimations/pyproject.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[project]
2+
name = "manimations"
3+
version = "0.1.0"
4+
description = "Add your description here"
5+
readme = "README.md"
6+
requires-python = ">=3.14"
7+
dependencies = [
8+
"manim>=0.20.1",
9+
]

manimations/uv.lock

Lines changed: 580 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

readme.MD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# A Common Sense Guide to Data Structures and Algorithms by Jay Wengrow
22

3-
Exercises, examples, plus a webapp to learn and play.
3+
Exercises, examples, plus a webapp to learn and play with interactive widgets and Manim animations.
44

55
## Run the webapp using Docker
66

0 commit comments

Comments
 (0)