gitextract_9dsir29s/ ├── .flake8 ├── .github/ │ ├── scripts/ │ │ └── install-fonts.ps1 │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .readthedocs.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs/ │ ├── Makefile │ ├── make.bat │ └── source/ │ ├── conf.py │ ├── index.rst │ ├── quick start.rst │ └── reference/ │ ├── ass core.rst │ ├── convert.rst │ ├── index.rst │ ├── shape.rst │ └── utils.rst ├── examples/ │ ├── 1 - Basics/ │ │ ├── 1 - Look into ASS values.py │ │ ├── 2 - Create the First Output.py │ │ ├── 3 - More lines.py │ │ ├── 4 - Organizing the code.py │ │ └── in.ass │ ├── 2 - Beginner/ │ │ ├── 1 - First Simple Effect.py │ │ ├── 2 - Utilities.py │ │ ├── 3 - Variants.py │ │ ├── 4 - Accelerate Demo.py │ │ ├── 5 - Image to Pixels Demo.py │ │ ├── in.ass │ │ └── in2.ass │ ├── 3 - Advanced/ │ │ ├── 1 - WIP.py │ │ ├── 2 - Testing Pixels (WIP).py │ │ ├── 3 - Morphing.py │ │ └── in.ass │ └── 4 - Community/ │ └── 1 - Dangos/ │ ├── dango_config.py │ ├── in.ass │ └── main.py ├── pyonfx/ │ ├── __init__.py │ ├── ass_core.py │ ├── convert.py │ ├── font.py │ ├── pixel.py │ ├── shape.py │ └── utils.py ├── pyproject.toml ├── requirements.txt └── tests/ ├── Ass/ │ ├── ass_core.ass │ ├── in.ass │ └── in_with_spacing.ass ├── __init__.py ├── shape/ │ ├── __init__.py │ ├── fixtures.py │ ├── test_elements.py │ ├── test_generation.py │ └── test_operations.py ├── test_ass.py ├── test_convert.py └── test_utils.py