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
[](https://www.linuxfoundation.org/about/members)
16
16
</div>
@@ -43,35 +43,27 @@ With the Openapi Python Client, you can easily interact with a variety of servic
43
43
44
44
For a complete list of all available services, check out the [Openapi Marketplace](https://console.openapi.com/) 🌐
45
45
46
-
# OpenApi IT Python Client
47
-
48
-
This client is used to interact with the API found at [openapi.it](https://openapi.it/)
49
-
50
-
## Pre-requisites
51
-
52
-
Before using the OpenApi IT Python Client, you will need an account at [openapi.it](https://openapi.it/) and an API key to the sandbox and/or production environment
53
46
54
47
## Installation
55
48
56
-
You can install the OpenApi IT Python Client with the following command using go get:
57
-
58
49
```bash
59
-
pip install openapi-cli-python
50
+
pip install openapi-python-sdk
60
51
```
61
-
52
+
62
53
## Usage
63
54
55
+
Interaction with the Openapi platform happens in two distinct steps.
56
+
57
+
### Step 1 — Generate a token
58
+
59
+
Authenticate with your credentials and obtain a short-lived bearer token scoped to the endpoints you need.
64
60
65
61
```python
66
-
fromopenapi.client import Client, OauthClient
62
+
fromopenapi_python_sdk.client import OauthClient
67
63
68
-
# Initialize the oauth client on the sandbox environment
0 commit comments