Python: Update a bucket

Updates a Storage bucket

Parameters

Examples

Update bucket

response = (
    supabase.storage
    .update_bucket(
        "avatars",
        options=\{
            "public": False,
            "allowed_mime_types": ["image/png"],
            "file_size_limit": 1024,
        \}
    )
)