Python: Create signed URLs

Creates multiple signed URLs. Use a signed URL to share a file for a fixed amount of time.

Parameters

Examples

Create Signed URLs

response = (
    supabase.storage
    .from_("avatars")
    .create_signed_urls(
        ["folder/avatar1.png", "folder/avatar2.png"], 
        60
    )
)