Python: Move an existing file

Moves an existing file to a new path in the same bucket.

Parameters

Examples

Move file

response = (
    supabase.storage
    .from_("avatars")
    .move(
        "public/avatar1.png", 
        "private/avatar2.png"
    )
)