We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 173dd46 + 9b1fd17 commit a0a4edaCopy full SHA for a0a4eda
README.md
@@ -255,7 +255,7 @@ new_file = getUserFile()
255
data = supabase.storage.from_(bucket_name).upload("/user1/profile.png", new_file)
256
```
257
258
-### Delete a file
+### Remove a file
259
260
```python
261
from supabase import create_client, Client
@@ -266,7 +266,7 @@ supabase: Client = create_client(url, key)
266
267
bucket_name: str = "photos"
268
269
-data = supabase.storage.from_(bucket_name).delete(["old_photo.png", "image5.jpg"])
+data = supabase.storage.from_(bucket_name).remove(["old_photo.png", "image5.jpg"])
270
271
272
### List all files
0 commit comments