Skip to content
This repository was archived by the owner on Dec 20, 2021. It is now read-only.

Commit 596ccfa

Browse files
authored
Update Login Logout.py
1 parent 430d8ac commit 596ccfa

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/async/Get avatar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ async def main():
1010
a = await client.fetch_avatar("avtr_fa5303c6-78d1-451c-a678-faf3eadb5c50")
1111
author = await a.author() # Get author of the avatar
1212
print("Avatar '"+a.name+"' was made by "+author.displayName)
13-
## This should print "Avatar 'Etoigne' was made by ***REMOVED***"
13+
## This should print "Avatar 'Etoigne' was made by Katfish"
1414

1515
# Close client session cleanly, invalidate auth cookie
1616
await client.logout()

examples/async/Login Logout.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
async def main():
66
# Initialise vrcpy wrapper client and login with username + password
77
client = vrcpy.AClient()
8-
await client.login("***REMOVED***", "***REMOVED***")
8+
await client.login("username", "password")
99

1010
# Close client session, invalidate auth cookie
1111
await client.logout()

examples/sync/Get avatar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def main():
99
a = client.fetch_avatar("avtr_fa5303c6-78d1-451c-a678-faf3eadb5c50")
1010
author = a.author() # Get author of the avatar
1111
print("Avatar '"+a.name+"' was made by "+author.displayName)
12-
## This should print "Avatar 'Etoigne' was made by ***REMOVED***"
12+
## This should print "Avatar 'Etoigne' was made by Katfish"
1313

1414
# Close client session, invalidate auth cookie
1515
client.logout()

0 commit comments

Comments
 (0)