An open API service indexing awesome lists of open source software.

https://github.com/wasabina67/moviepy-example

MoviePy example
https://github.com/wasabina67/moviepy-example

moviepy uv

Last synced: 29 days ago
JSON representation

MoviePy example

Awesome Lists containing this project

README

          

# moviepy-example
MoviePy example

## Initialize

### Setup

```bash
uv init --app --python 3.12
```

### Create venv

```bash
uv venv
```

### Add MoviePy dependency

```bash
uv add moviepy
```

### Add ruff, black dev dependency

```bash
uv add --dev ruff black
```

```bash
uv run ruff check .
```

```bash
uv run black .
```

### Install dependencies

```bash
uv sync
```

### Activate venv (if not using `uv run`)

```bash
source .venv/bin/activate
```

```bash
python main.py
```

```bash
deactivate
```

## Run

```bash
uv run python main.py
```