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 0.8.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-python/releases).**
9
+
**This SDK is compatible with Appwrite server version 0.9.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-python/releases).**
9
10
10
-
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.
11
-
Use the Python SDK to integrate your app with the Appwrite server to easily start interacting with all of Appwrite backend APIs and tools.
12
-
For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)
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)
Initialize your SDK code with your project ID which can be found in your project settings page and your new API secret Key from project's API keys section.
27
+
Initialize your SDK with your Appwrite server API endpoint and project ID which can be found in your project settings page and your new API secret Key from project's API keys section.
29
28
30
29
```python
31
30
from appwrite.client import Client
@@ -42,7 +41,7 @@ client = Client()
42
41
```
43
42
44
43
### Make Your First Request
45
-
Once your SDK object is set, create any of the Appwrite service objects and choose any request to send. Full documentation for any service method you would like to use can be found in your SDK documentation or in the API References section.
44
+
Once your SDK object is set, create any of the Appwrite service objects and choose any request to send. Full documentation for any service method you would like to use can be found in your SDK documentation or in the [API References](https://appwrite.io/docs) section.
46
45
47
46
```python
48
47
users = Users(client)
@@ -81,7 +80,7 @@ except AppwriteException as e:
81
80
```
82
81
83
82
### Learn more
84
-
You can use followng resources to learn more and get help
83
+
You can use following resources to learn more and get help
85
84
- 🚀 [Getting Started Tutorial](https://appwrite.io/docs/getting-started-for-server)
Copy file name to clipboardExpand all lines: setup.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3,15 +3,15 @@
3
3
setuptools.setup(
4
4
name='appwrite',
5
5
packages= ['appwrite', 'appwrite/services'],
6
-
version='0.3.0',
6
+
version='0.4.0',
7
7
license='BSD-3-Clause',
8
8
description='Appwrite is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API',
0 commit comments