Skip to content

Commit 68d8271

Browse files
authored
Merge pull request #5 from Permify/ufuk/pythonsdkbug
fix: update README.md
2 parents a0f4799 + 9cd6c78 commit 68d8271

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,16 +53,15 @@ Please follow the [installation procedure](#installation--usage) and then run th
5353
```python
5454

5555
import permify
56-
from permify.rest import ApiException
56+
from permify import ApiException
5757
from pprint import pprint
5858

59-
# Defining the host is optional and defaults to http://localhost
59+
# Defining the host is optional and defaults to http://localhost:3476
6060
# See configuration.py for a list of all supported configuration parameters.
61-
configuration = permify.Configuration(
62-
host = "http://localhost"
63-
)
64-
6561

62+
configuration =permify.Configuration(
63+
host = "http://localhost:3476"
64+
)
6665

6766
# Enter a context with an instance of the API client
6867
with permify.ApiClient(configuration) as api_client:
@@ -83,7 +82,7 @@ with permify.ApiClient(configuration) as api_client:
8382

8483
## Documentation for API Endpoints
8584

86-
All URIs are relative to *http://localhost*
85+
All URIs are relative to *http://localhost:3476*
8786

8887
Class | Method | HTTP request | Description
8988
------------ | ------------- | ------------- | -------------

0 commit comments

Comments
 (0)