1
0
Fork 0
mirror of synced 2024-09-17 18:07:57 +12:00
appwrite/app/sdks/python/docs/examples/storage/get-file-preview.md

14 lines
220 B
Markdown
Raw Normal View History

2020-01-29 02:29:26 +13:00
from appwrite.client import Client
from appwrite.services.storage import Storage
client = Client()
(client
.set_project('')
.set_key('')
)
storage = Storage(client)
result = storage.get_file_preview('[FILE_ID]')