Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed #84-Documentation: Account function being used without importing. #92

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/examples/account/create-anonymous-session.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
from appwrite.client import Client
from appwrite.services.account import Account


client = Client()

client.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint

client.set_project('5df5acd0d48c2') # Your project ID

account = Account(client)
Expand Down
4 changes: 4 additions & 0 deletions docs/examples/account/create-email-password-session.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
from appwrite.client import Client
from appwrite.services.account import Account


client = Client()

client.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint

client.set_project('5df5acd0d48c2') # Your project ID

account = Account(client)
Expand Down
4 changes: 4 additions & 0 deletions docs/examples/account/create-email-token.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
from appwrite.client import Client
from appwrite.services.account import Account


client = Client()

client.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint

client.set_project('5df5acd0d48c2') # Your project ID

account = Account(client)
Expand Down
4 changes: 4 additions & 0 deletions docs/examples/account/create-j-w-t.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
from appwrite.client import Client
from appwrite.services.account import Account


client = Client()

client.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint

client.set_project('5df5acd0d48c2') # Your project ID

account = Account(client)
Expand Down
4 changes: 4 additions & 0 deletions docs/examples/account/create-magic-u-r-l-token.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
from appwrite.client import Client
from appwrite.services.account import Account


client = Client()

client.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint

client.set_project('5df5acd0d48c2') # Your project ID

account = Account(client)
Expand Down
5 changes: 5 additions & 0 deletions docs/examples/account/create-mfa-authenticator.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
from appwrite.client import Client
from appwrite.enums import AuthenticatorType
from appwrite.services.account import Account


client = Client()

client.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint

client.set_project('5df5acd0d48c2') # Your project ID

client.set_session('') # The user session to authenticate with

account = Account(client)
Expand Down
4 changes: 4 additions & 0 deletions docs/examples/account/create-mfa-challenge.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
from appwrite.client import Client
from appwrite.enums import AuthenticationFactor
from appwrite.services.account import Account


client = Client()

client.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint

client.set_project('5df5acd0d48c2') # Your project ID

account = Account(client)
Expand Down
5 changes: 5 additions & 0 deletions docs/examples/account/create-mfa-recovery-codes.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
from appwrite.client import Client
from appwrite.services.account import Account


client = Client()

client.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint

client.set_project('5df5acd0d48c2') # Your project ID

client.set_session('') # The user session to authenticate with

account = Account(client)
Expand Down
4 changes: 4 additions & 0 deletions docs/examples/account/create-o-auth2token.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
from appwrite.client import Client
from appwrite.enums import OAuthProvider
from appwrite.services.account import Account


client = Client()

client.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint

client.set_project('5df5acd0d48c2') # Your project ID

account = Account(client)
Expand Down
4 changes: 4 additions & 0 deletions docs/examples/account/create-phone-token.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
from appwrite.client import Client
from appwrite.services.account import Account


client = Client()

client.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint

client.set_project('5df5acd0d48c2') # Your project ID

account = Account(client)
Expand Down
4 changes: 4 additions & 0 deletions docs/examples/account/create-phone-verification.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
from appwrite.client import Client
from appwrite.services.account import Account

client = Client()

client.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint

client.set_project('5df5acd0d48c2') # Your project ID

client.set_session('') # The user session to authenticate with

account = Account(client)
Expand Down
5 changes: 5 additions & 0 deletions docs/examples/account/create-recovery.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
from appwrite.client import Client
from appwrite.services.account import Account


client = Client()

client.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint

client.set_project('5df5acd0d48c2') # Your project ID

client.set_session('') # The user session to authenticate with

account = Account(client)
Expand Down
4 changes: 4 additions & 0 deletions docs/examples/account/create-session.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
from appwrite.client import Client
from appwrite.services.account import Account


client = Client()

client.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint

client.set_project('5df5acd0d48c2') # Your project ID

account = Account(client)
Expand Down
5 changes: 5 additions & 0 deletions docs/examples/account/create-verification.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
from appwrite.client import Client
from appwrite.services.account import Account


client = Client()

client.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint

client.set_project('5df5acd0d48c2') # Your project ID

client.set_session('') # The user session to authenticate with

account = Account(client)
Expand Down
5 changes: 5 additions & 0 deletions docs/examples/account/delete-identity.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
from appwrite.client import Client
from appwrite.services.account import Account


client = Client()

client.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint

client.set_project('5df5acd0d48c2') # Your project ID

client.set_session('') # The user session to authenticate with

account = Account(client)
Expand Down
5 changes: 5 additions & 0 deletions docs/examples/account/delete-mfa-authenticator.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
from appwrite.client import Client
from appwrite.enums import AuthenticatorType
from appwrite.services.account import Account


client = Client()

client.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint

client.set_project('5df5acd0d48c2') # Your project ID

client.set_session('') # The user session to authenticate with

account = Account(client)
Expand Down
5 changes: 5 additions & 0 deletions docs/examples/account/delete-session.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
from appwrite.client import Client
from appwrite.services.account import Account


client = Client()

client.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint

client.set_project('5df5acd0d48c2') # Your project ID

client.set_session('') # The user session to authenticate with

account = Account(client)
Expand Down
5 changes: 5 additions & 0 deletions docs/examples/account/delete-sessions.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
from appwrite.client import Client
from appwrite.services.account import Account


client = Client()

client.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint

client.set_project('5df5acd0d48c2') # Your project ID

client.set_session('') # The user session to authenticate with

account = Account(client)
Expand Down
4 changes: 4 additions & 0 deletions docs/examples/account/get-mfa-recovery-codes.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
from appwrite.client import Client
from appwrite.services.account import Account

client = Client()

client.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint

client.set_project('5df5acd0d48c2') # Your project ID

client.set_session('') # The user session to authenticate with

account = Account(client)
Expand Down
5 changes: 5 additions & 0 deletions docs/examples/account/get-prefs.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
from appwrite.client import Client
from appwrite.services.account import Account


client = Client()

client.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint

client.set_project('5df5acd0d48c2') # Your project ID

client.set_session('') # The user session to authenticate with

account = Account(client)
Expand Down
5 changes: 5 additions & 0 deletions docs/examples/account/get-session.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
from appwrite.client import Client
from appwrite.services.account import Account


client = Client()

client.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint

client.set_project('5df5acd0d48c2') # Your project ID

client.set_session('') # The user session to authenticate with

account = Account(client)
Expand Down
5 changes: 5 additions & 0 deletions docs/examples/account/get.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
from appwrite.client import Client
from appwrite.services.account import Account


client = Client()

client.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint

client.set_project('5df5acd0d48c2') # Your project ID

client.set_session('') # The user session to authenticate with

account = Account(client)
Expand Down
5 changes: 5 additions & 0 deletions docs/examples/account/list-identities.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
from appwrite.client import Client
from appwrite.services.account import Account


client = Client()

client.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint

client.set_project('5df5acd0d48c2') # Your project ID

client.set_session('') # The user session to authenticate with

account = Account(client)
Expand Down
5 changes: 5 additions & 0 deletions docs/examples/account/list-logs.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
from appwrite.client import Client
from appwrite.services.account import Account


client = Client()

client.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint

client.set_project('5df5acd0d48c2') # Your project ID

client.set_session('') # The user session to authenticate with

account = Account(client)
Expand Down
5 changes: 5 additions & 0 deletions docs/examples/account/list-mfa-factors.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
from appwrite.client import Client
from appwrite.services.account import Account


client = Client()

client.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint

client.set_project('5df5acd0d48c2') # Your project ID

client.set_session('') # The user session to authenticate with

account = Account(client)
Expand Down
5 changes: 5 additions & 0 deletions docs/examples/account/list-sessions.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
from appwrite.client import Client
from appwrite.services.account import Account


client = Client()

client.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint

client.set_project('5df5acd0d48c2') # Your project ID

client.set_session('') # The user session to authenticate with

account = Account(client)
Expand Down
5 changes: 5 additions & 0 deletions docs/examples/account/update-email.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
from appwrite.client import Client
from appwrite.services.account import Account


client = Client()

client.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint

client.set_project('5df5acd0d48c2') # Your project ID

client.set_session('') # The user session to authenticate with

account = Account(client)
Expand Down
5 changes: 5 additions & 0 deletions docs/examples/account/update-m-f-a.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
from appwrite.client import Client
from appwrite.services.account import Account


client = Client()

client.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint

client.set_project('5df5acd0d48c2') # Your project ID

client.set_session('') # The user session to authenticate with

account = Account(client)
Expand Down
4 changes: 4 additions & 0 deletions docs/examples/account/update-magic-u-r-l-session.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
from appwrite.client import Client
from appwrite.services.account import Account


client = Client()

client.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint

client.set_project('5df5acd0d48c2') # Your project ID

account = Account(client)
Expand Down
Loading