Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Joel Lee committed Jan 30, 2021
1 parent 5aca335 commit 3a36696
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,12 @@ Here's how you'd install the library with gotrue
```
import gotrue
client = gotrue.Client(www.genericauthwebsite.com")
client.sign_up({"email": "anemail@gmail.com", "password": "gmebbnok"})
client = gotrue.Client("www.genericauthwebsite.com")
credentials = {"email": "anemail@gmail.com", "password": "gmebbnok"}
client.sign_up(credentials)
client.sign_in(credentials)
```


Expand Down

0 comments on commit 3a36696

Please sign in to comment.