1
0
Fork 0
mirror of synced 2024-08-07 14:27:52 +12:00
appwrite/app/sdks/python/docs/examples/locale/get-continents.md
2020-01-28 15:29:26 +02:00

14 lines
202 B
Markdown

from appwrite.client import Client
from appwrite.services.locale import Locale
client = Client()
(client
.set_project('')
.set_key('')
)
locale = Locale(client)
result = locale.get_continents()