CoolFace
Apppublic

davidberenstein1957/python-code-gif-generator

sourceHugging Faceupdated 2y agoView on Hugging Face
1likes
README.md39 linesDownload Raw Back to root
1---2title: Python Code Gifs3emoji: 💻4colorFrom: red5colorTo: purple6sdk: gradio7sdk_version: 5.13.28app_file: app.py9pinned: false10---11 12# python-code-gifs13 14Some code to create code gifs with Python15 16## Usage17 18```bash19python app.py20```21 22## install23 24Install the package with pip:25 26```bash27python -m venv .venv28source .venv/bin/activate29pip install .30```31 32Install the package with uv:33 34```bash35uv venv36source .venv/bin/activate37uv pip install .38```39