Skip to content

Commit f9f4727

Browse files
committed
Initial commit
1 parent 098e076 commit f9f4727

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

appwrite/client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ def __init__(self):
77
self._endpoint = 'https://appwrite.io/v1'
88
self._global_headers = {
99
'content-type': '',
10-
'x-sdk-version': 'appwrite:python:1.0.3',
10+
'x-sdk-version': 'appwrite:python:1.0.4',
1111
}
1212

1313
def set_self_signed(self, status=True):

appwrite/services/locale.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def get_countries_phones(self):
5454
}, params)
5555

5656
def get_currencies(self):
57-
"""List of currencies"""
57+
"""List Currencies"""
5858

5959
params = {}
6060
path = '/locale/currencies'

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
setup(
44
name = 'appwrite',
55
packages = ['appwrite'],
6-
version = '1.0.3',
6+
version = '1.0.4',
77
license='BSD-3-Clause',
88
description = 'Appwrite backend as a service cuts up to 70% of the time and costs required for building a modern application. We abstract and simplify common development tasks behind a REST APIs, to help you develop your app in a fast and secure way. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)',
99
author = 'Appwrite Team',
1010
author_email = '[email protected]',
1111
maintainer = 'Appwrite Team',
1212
maintainer_email = '[email protected]',
1313
url = 'https://appwrite.io/support',
14-
download_url='https://github.com/appwrite/sdk-for-python/archive/1.0.3.tar.gz',
14+
download_url='https://github.com/appwrite/sdk-for-python/archive/1.0.4.tar.gz',
1515
# keywords = ['SOME', 'MEANINGFULL', 'KEYWORDS'],
1616
install_requires=[
1717
'requests',

0 commit comments

Comments
 (0)