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: CHANGELOG-MASTER.rst
+1
Original file line number
Diff line number
Diff line change
@@ -8,4 +8,5 @@ Changelog-Master
8
8
X.X.X (XXXX-XX-XX)
9
9
------------------
10
10
- Add API key authentication via header to RequestsClient
11
+
- Fido client is an optional dependency. **NOTE**: if you intend to use bravado with fido client you need to install bravado with fido extras (``pip install bravado[fido]``)
11
12
- PLACEHOLDER (add before this line your modifications summary)
Copy file name to clipboardexpand all lines: docs/source/quickstart.rst
+8-2
Original file line number
Diff line number
Diff line change
@@ -61,14 +61,19 @@ Time to get Twisted! (Asynchronous client)
61
61
62
62
client = SwaggerClient.from_url(
63
63
'http://petstore.swagger.io/v2/swagger.json',
64
-
FidoClient())
64
+
FidoClient()
65
+
)
65
66
66
67
result = client.pet.getPetById(petId=42).result(timeout=4)
67
68
68
69
.. note::
69
70
70
71
``timeout`` parameter here is the timeout (in seconds) the call will block waiting for the complete response. The default timeout is to wait indefinitely.
71
72
73
+
.. note::
74
+
75
+
To use Fido client you should install bravado with fido extra via ``pip install bravado[fido]``.
76
+
72
77
This is too fancy for me! I want a simple dict response!
0 commit comments