Creates a new Storage bucket
buckets
table permissions: insert
objects
table permissions: noneA unique identifier for the bucket you are creating.
undefined
response = (
supabase.storage
.create_bucket(
"avatars",
options={
"public": False,
"allowed_mime_types": ["image/png"],
"file_size_limit": 1024,
}
)
)