You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**This SDK is compatible with Appwrite server version 1.0.0-RC1. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-python/releases).**
9
+
**This SDK is compatible with Appwrite server version 1.0.0. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-python/releases).**
10
10
11
11
Appwrite is an open-source backend as a service server that abstract and simplify complex and repetitive development tasks behind a very simple to use REST API. Appwrite aims to help you develop your apps faster and in a more secure way. Use the Python SDK to integrate your app with the Appwrite server to easily start interacting with all of Appwrite backend APIs and tools. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)
12
12
@@ -53,6 +53,7 @@ result = users.create('[USER_ID]', 'email@example.com', 'password')
53
53
```python
54
54
from appwrite.client import Client
55
55
from appwrite.services.users import Users
56
+
from appwrite.id importID
56
57
57
58
client = Client()
58
59
@@ -65,7 +66,7 @@ client = Client()
65
66
66
67
users = Users(client)
67
68
68
-
result = users.create('[USER_ID]', 'email@example.com', 'password')
69
+
result = users.create(ID.unique(), 'email@example.com', 'password')
69
70
```
70
71
71
72
### Error Handling
@@ -74,7 +75,7 @@ The Appwrite Python SDK raises `AppwriteException` object with `message`, `code`
74
75
```python
75
76
users = Users(client)
76
77
try:
77
-
result = users.create('[USER_ID]', 'email@example.com', 'password')
78
+
result = users.create(ID.unique(), 'email@example.com', 'password')
0 commit comments