Skip to content

Commit 7bf2131

Browse files
committed
Initial commit
1 parent 86ad4dd commit 7bf2131

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# [Appwrite SDK for Python](https://appwrite.io)   [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=Appwrite%20is%20a%20backend%20as%20a%20service%20for%20building%20web%20or%20mobile%20apps&url=http%3A%2F%2Fappwrite.io&via=appwrite_io&hashtags=JS%2Cjavascript%2Creactjs%2Cangular%2Cios%2Candroid)
22

33
![License](https://img.shields.io/github/license/appwrite/sdk-for-python.svg?v=1)
4-
![Version](https://img.shields.io/badge/api%20version-0.1.3-blue.svg?v=1)
4+
![Version](https://img.shields.io/badge/api%20version-latest-blue.svg?v=1)
55

66
**WORK IN PROGRESS - NOT READY FOR USAGE**
77

@@ -11,7 +11,7 @@ Appwrite backend as a service cuts up to 70% of the time and costs required for
1111

1212
![Appwrite](https://appwrite.io/images/github.png)
1313

14-
**API Version: 0.1.3**
14+
**API Version: latest**
1515

1616
## Installation
1717

appwrite/services/avatars.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def get_flag(self, code, width=100, height=100, quality=100):
5353
}, params)
5454

5555
def get_image(self, url, width=400, height=400):
56-
"""Get image from and HTTP URL and crop to any size."""
56+
"""Get Image from URL"""
5757

5858
params = {}
5959
path = '/avatars/image'

appwrite/services/storage.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def delete_file(self, file_id):
5353
}, params)
5454

5555
def get_file_download(self, file_id):
56-
"""Download File"""
56+
"""Get File for Download"""
5757

5858
params = {}
5959
path = '/storage/files/{fileId}/download'
@@ -63,7 +63,7 @@ def get_file_download(self, file_id):
6363
}, params)
6464

6565
def get_file_preview(self, file_id, width=0, height=0, quality=100, background='', output=''):
66-
"""Preview File"""
66+
"""Get File Preview"""
6767

6868
params = {}
6969
path = '/storage/files/{fileId}/preview'
@@ -78,7 +78,7 @@ def get_file_preview(self, file_id, width=0, height=0, quality=100, background='
7878
}, params)
7979

8080
def get_file_view(self, file_id, as=''):
81-
"""View File"""
81+
"""Get File for View"""
8282

8383
params = {}
8484
path = '/storage/files/{fileId}/view'

appwrite/services/teams.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def delete_team_membership(self, team_id, invite_id):
9595
}, params)
9696

9797
def create_team_membership_resend(self, team_id, invite_id, redirect):
98-
"""Create Team Membership (Resend Invitation Email)"""
98+
"""Create Team Membership (Resend)"""
9999

100100
params = {}
101101
path = '/teams/{teamId}/memberships/{inviteId}/resend'

0 commit comments

Comments
 (0)