gitextract__k8xnxid/ ├── LICENSE.md ├── README.md ├── example/ │ ├── animation.html │ ├── output/ │ │ └── animation.html │ └── parallax_svg_tools/ │ ├── bs4/ │ │ ├── __init__.py │ │ ├── builder/ │ │ │ ├── __init__.py │ │ │ ├── _html5lib.py │ │ │ ├── _htmlparser.py │ │ │ └── _lxml.py │ │ ├── dammit.py │ │ ├── diagnose.py │ │ └── element.py │ ├── run.py │ └── svg/ │ └── __init__.py └── parallax_svg_tools/ ├── bs4/ │ ├── __init__.py │ ├── builder/ │ │ ├── __init__.py │ │ ├── _html5lib.py │ │ ├── _htmlparser.py │ │ └── _lxml.py │ ├── dammit.py │ ├── diagnose.py │ └── element.py ├── run.py └── svg/ └── __init__.py