Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ By default, when you're calling an HTTPS API it will attempt to verify that SSL

```python
client = AuthenticatedClient(
base_url="https://internal_api.example.com",
base_url="https://internal_api.example.com",
token="SuperSecretToken",
verify_ssl="/path/to/certificate_bundle.pem",
)
Expand All @@ -57,7 +57,7 @@ You can also disable certificate validation altogether, but beware that **this i

```python
client = AuthenticatedClient(
base_url="https://internal_api.example.com",
base_url="https://internal_api.example.com",
token="SuperSecretToken",
verify_ssl=False
)
Expand Down
4 changes: 2 additions & 2 deletions end_to_end_tests/golden-record/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ By default, when you're calling an HTTPS API it will attempt to verify that SSL

```python
client = AuthenticatedClient(
base_url="https://internal_api.example.com",
base_url="https://internal_api.example.com",
token="SuperSecretToken",
verify_ssl="/path/to/certificate_bundle.pem",
)
Expand All @@ -57,7 +57,7 @@ You can also disable certificate validation altogether, but beware that **this i

```python
client = AuthenticatedClient(
base_url="https://internal_api.example.com",
base_url="https://internal_api.example.com",
token="SuperSecretToken",
verify_ssl=False
)
Expand Down
4 changes: 2 additions & 2 deletions end_to_end_tests/literal-enums-golden-record/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ By default, when you're calling an HTTPS API it will attempt to verify that SSL

```python
client = AuthenticatedClient(
base_url="https://internal_api.example.com",
base_url="https://internal_api.example.com",
token="SuperSecretToken",
verify_ssl="/path/to/certificate_bundle.pem",
)
Expand All @@ -57,7 +57,7 @@ You can also disable certificate validation altogether, but beware that **this i

```python
client = AuthenticatedClient(
base_url="https://internal_api.example.com",
base_url="https://internal_api.example.com",
token="SuperSecretToken",
verify_ssl=False
)
Expand Down
4 changes: 2 additions & 2 deletions end_to_end_tests/test-3-1-golden-record/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ By default, when you're calling an HTTPS API it will attempt to verify that SSL

```python
client = AuthenticatedClient(
base_url="https://internal_api.example.com",
base_url="https://internal_api.example.com",
token="SuperSecretToken",
verify_ssl="/path/to/certificate_bundle.pem",
)
Expand All @@ -57,7 +57,7 @@ You can also disable certificate validation altogether, but beware that **this i

```python
client = AuthenticatedClient(
base_url="https://internal_api.example.com",
base_url="https://internal_api.example.com",
token="SuperSecretToken",
verify_ssl=False
)
Expand Down
4 changes: 2 additions & 2 deletions integration-tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ By default, when you're calling an HTTPS API it will attempt to verify that SSL

```python
client = AuthenticatedClient(
base_url="https://internal_api.example.com",
base_url="https://internal_api.example.com",
token="SuperSecretToken",
verify_ssl="/path/to/certificate_bundle.pem",
)
Expand All @@ -57,7 +57,7 @@ You can also disable certificate validation altogether, but beware that **this i

```python
client = AuthenticatedClient(
base_url="https://internal_api.example.com",
base_url="https://internal_api.example.com",
token="SuperSecretToken",
verify_ssl=False
)
Expand Down
4 changes: 2 additions & 2 deletions openapi_python_client/templates/README.md.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ By default, when you're calling an HTTPS API it will attempt to verify that SSL

```python
client = AuthenticatedClient(
base_url="https://internal_api.example.com",
base_url="https://internal_api.example.com",
token="SuperSecretToken",
verify_ssl="/path/to/certificate_bundle.pem",
)
Expand All @@ -57,7 +57,7 @@ You can also disable certificate validation altogether, but beware that **this i

```python
client = AuthenticatedClient(
base_url="https://internal_api.example.com",
base_url="https://internal_api.example.com",
token="SuperSecretToken",
verify_ssl=False
)
Expand Down