Python: Upload to a signed URL

Upload a file with a token generated from create_signed_upload_url.

Parameters

Examples

Create Signed URL

with open("./public/avatar1.png", "rb") as f:
    response = (
        supabase.storage
        .from_("avatars")
        .upload_to_signed_url(
            path="folder/cat.jpg",
            token="token-from-create_signed_upload_url",
            file=f,
        )
    )