1
0
Fork 0
mirror of synced 2024-08-07 06:18:17 +12:00
appwrite/app/sdks/python/docs/examples/database/delete-document.md
2020-01-28 15:29:26 +02:00

14 lines
247 B
Markdown

from appwrite.client import Client
from appwrite.services.database import Database
client = Client()
(client
.set_project('')
.set_key('')
)
database = Database(client)
result = database.delete_document('[COLLECTION_ID]', '[DOCUMENT_ID]')