Skip to content

Commit

Permalink
docs: fixes the python-sdk docs import statement (#2646)
Browse files Browse the repository at this point in the history
  • Loading branch information
harshsbhat authored Nov 5, 2024
1 parent 06cf362 commit aec5dc6
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 35 deletions.
10 changes: 5 additions & 5 deletions apps/docs/libraries/py/services/apis.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ title: Apis

```python
import os
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down Expand Up @@ -52,7 +52,7 @@ if res.object is not None:

```python
import os
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down Expand Up @@ -98,7 +98,7 @@ if res.object is not None:

```python
import os
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down Expand Up @@ -147,7 +147,7 @@ if res.object is not None:

```python
import os
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down Expand Up @@ -193,7 +193,7 @@ if res.object is not None:

```python
import os
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down
10 changes: 5 additions & 5 deletions apps/docs/libraries/py/services/identities.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ title: Identities

```python
import os
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down Expand Up @@ -66,7 +66,7 @@ if res.object is not None:

```python
import os
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down Expand Up @@ -111,7 +111,7 @@ if res.object is not None:

```python
import os
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down Expand Up @@ -161,7 +161,7 @@ if res.object is not None:

```python
import os
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down Expand Up @@ -225,7 +225,7 @@ if res.object is not None:

```python
import os
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down
28 changes: 14 additions & 14 deletions apps/docs/libraries/py/services/keys.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ title: Keys

```python
import os
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down Expand Up @@ -52,7 +52,7 @@ if res.key is not None:

```python
import os
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down Expand Up @@ -98,7 +98,7 @@ if res.object is not None:

```python
import os
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down Expand Up @@ -145,7 +145,7 @@ if res.object is not None:
```python
import os
import unkey
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down Expand Up @@ -217,7 +217,7 @@ if res.object is not None:

```python
import os
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down Expand Up @@ -277,7 +277,7 @@ if res.v1_keys_verify_key_response is not None:
```python
import os
import unkey
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down Expand Up @@ -370,7 +370,7 @@ if res.object is not None:
```python
import os
import unkey
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down Expand Up @@ -419,7 +419,7 @@ if res.object is not None:
```python
import os
import unkey
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down Expand Up @@ -469,7 +469,7 @@ if res.object is not None:

```python
import os
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down Expand Up @@ -518,7 +518,7 @@ if res.response_bodies is not None:

```python
import os
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down Expand Up @@ -572,7 +572,7 @@ if res.object is not None:

```python
import os
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down Expand Up @@ -630,7 +630,7 @@ if res.response_bodies is not None:

```python
import os
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down Expand Up @@ -688,7 +688,7 @@ if res.response_bodies is not None:

```python
import os
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down Expand Up @@ -742,7 +742,7 @@ if res.object is not None:

```python
import os
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down
4 changes: 2 additions & 2 deletions apps/docs/libraries/py/services/migrations.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ title: Migrations
```python
import os
import unkey
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down Expand Up @@ -86,7 +86,7 @@ if res.object is not None:
```python
import os
import unkey
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down
16 changes: 8 additions & 8 deletions apps/docs/libraries/py/services/permissions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ title: Permissions

```python
import os
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down Expand Up @@ -55,7 +55,7 @@ if res.object is not None:

```python
import os
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down Expand Up @@ -101,7 +101,7 @@ if res.object is not None:

```python
import os
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down Expand Up @@ -145,7 +145,7 @@ if res.object is not None:

```python
import os
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down Expand Up @@ -188,7 +188,7 @@ if res.response_bodies is not None:

```python
import os
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down Expand Up @@ -235,7 +235,7 @@ if res.object is not None:

```python
import os
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down Expand Up @@ -281,7 +281,7 @@ if res.object is not None:

```python
import os
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down Expand Up @@ -325,7 +325,7 @@ if res.object is not None:

```python
import os
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/libraries/py/services/ratelimits.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ title: Ratelimits

```python
import os
from unkey import Unkey
from unkey_py import Unkey

s = Unkey(
bearer_auth=os.getenv("UNKEY_BEARER_AUTH", ""),
Expand Down

0 comments on commit aec5dc6

Please sign in to comment.