Skip to content

Commit 607bbe7

Browse files
committed
Add 1.8.x support
1 parent c36d726 commit 607bbe7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/examples/databases/decrement-document-attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ from appwrite.services.databases import Databases
44
client = Client()
55
client.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
66
client.set_project('<YOUR_PROJECT_ID>') # Your project ID
7-
client.set_key('<YOUR_API_KEY>') # Your secret API key
7+
client.set_session('') # The user session to authenticate with
88

99
databases = Databases(client)
1010

docs/examples/databases/increment-document-attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ from appwrite.services.databases import Databases
44
client = Client()
55
client.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
66
client.set_project('<YOUR_PROJECT_ID>') # Your project ID
7-
client.set_key('<YOUR_API_KEY>') # Your secret API key
7+
client.set_session('') # The user session to authenticate with
88

99
databases = Databases(client)
1010

docs/examples/tablesdb/decrement-row-column.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDb
44
client = Client()
55
client.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
66
client.set_project('<YOUR_PROJECT_ID>') # Your project ID
7-
client.set_key('<YOUR_API_KEY>') # Your secret API key
7+
client.set_session('') # The user session to authenticate with
88

99
tables_db = TablesDb(client)
1010

docs/examples/tablesdb/increment-row-column.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDb
44
client = Client()
55
client.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
66
client.set_project('<YOUR_PROJECT_ID>') # Your project ID
7-
client.set_key('<YOUR_API_KEY>') # Your secret API key
7+
client.set_session('') # The user session to authenticate with
88

99
tables_db = TablesDb(client)
1010

0 commit comments

Comments
 (0)