You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# workos-python
2
2
3
-
Python SDK to conveniently access the [WorkOS API](https://workos.com).
3
+
Python SDK to conveniently access the [WorkOS API](https://workos.com/docs/reference), [hosted on PyPi](https://pypi.org/project/workos/).
4
4
5
5
## Installation
6
6
@@ -16,19 +16,19 @@ python setup.py install
16
16
17
17
## Getting Started
18
18
19
-
The package will need to be configured with your [api key](https://dashboard.workos.com/api-keys) at a minimum and [client id](https://dashboard.workos.com/sso/configuration) if you plan on utilizing SSO:
19
+
The package will need to be configured with your [api key](https://dashboard.workos.com/api-keys) at a minimum and [client id](https://dashboard.workos.com/sso/configuration) if you plan on using SSO:
20
20
```python
21
21
import workos
22
22
23
-
workos.api_key = sk_abdsomecharactersm284
24
-
workos.client_id = client_b27needthisforssotemxo
23
+
workos.api_key ="sk_abdsomecharactersm284"
24
+
workos.client_id ="client_b27needthisforssotemxo"
25
25
```
26
26
27
-
For your convenience, a client is available as an entry point for accessing the WorkOS feature set:
27
+
A client is available as an entry point to the WorkOS feature set:
28
28
```python
29
29
from workos import client
30
30
31
-
# URL to redirect a User to to initiate the WorkOS OAuth 2.0 workflow
31
+
# URL to redirect a User so they can initiate the WorkOS OAuth 2.0 workflow
0 commit comments