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
| ``proxies`` | Dictionary mapping protocol or protocol and host to the URL of the proxy (e.g. {‘http’: ‘foo.bar:3128’, ‘http://host.name’: ‘foo.bar:4012’}) |
181
+
| ``proxies`` | Dictionary mapping protocol or protocol and host to the URL of the proxy (e.g. {'http': 'foo.bar:3128', 'http://host.name': 'foo.bar:4012'}) |
182
182
| ``verify`` | Either a boolean, in which case it controls whether we verify the server's TLS certificate, or a string, in which case it must be a path to a CA bundle to use. Defaults to ``True``. Warning: if a session has been created with ``verify=False`` any other requests will not verify the SSL certificate. |
183
183
| ``stream`` | if ``False``, the response content will be immediately downloaded. |
184
184
| ``cert`` | if String, path to ssl client cert file (.pem). If Tuple, ('cert', 'key') pair. |
Copy file name to clipboardExpand all lines: src/RequestsLibrary/SessionKeywords.py
+10-9Lines changed: 10 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -135,7 +135,8 @@ def create_session(self,
135
135
136
136
``timeout`` Connection timeout
137
137
138
-
``proxies`` Dictionary mapping protocol or protocol and host to the URL of the proxy (e.g. {‘http’: ‘foo.bar:3128’, ‘http://host.name’: ‘foo.bar:4012’})
138
+
``proxies`` Dictionary mapping protocol or protocol and host to the URL of the proxy
``proxies`` Dictionary mapping protocol or protocol and host to the URL of the proxy (e.g. {‘http’: ‘foo.bar:3128’, ‘http://host.name’: ‘foo.bar:4012’})
221
-
221
+
``proxies`` Dictionary mapping protocol or protocol and host to the URL of the proxy
``verify`` Whether the SSL cert will be verified. A CA_BUNDLE path can also be provided.
224
225
Defaults to False.
@@ -304,8 +305,8 @@ def create_custom_session(
304
305
305
306
``timeout`` Connection timeout
306
307
307
-
``proxies`` Dictionary mapping protocol or protocol and host to the URL of the proxy (e.g. {‘http’: ‘foo.bar:3128’, ‘http://host.name’: ‘foo.bar:4012’})
308
-
308
+
``proxies`` Dictionary mapping protocol or protocol and host to the URL of the proxy
``verify`` Whether the SSL cert will be verified. A CA_BUNDLE path can also be provided.
311
312
Defaults to False.
@@ -386,8 +387,8 @@ def create_digest_session(
386
387
387
388
``timeout`` Connection timeout
388
389
389
-
``proxies`` Dictionary mapping protocol or protocol and host to the URL of the proxy (e.g. {‘http’: ‘foo.bar:3128’, ‘http://host.name’: ‘foo.bar:4012’})
390
-
390
+
``proxies`` Dictionary mapping protocol or protocol and host to the URL of the proxy
``verify`` Whether the SSL cert will be verified. A CA_BUNDLE path can also be provided.
393
394
Defaults to False.
@@ -465,8 +466,8 @@ def create_ntlm_session(
465
466
466
467
``timeout`` Connection timeout
467
468
468
-
``proxies`` Dictionary mapping protocol or protocol and host to the URL of the proxy (e.g. {‘http’: ‘foo.bar:3128’, ‘http://host.name’: ‘foo.bar:4012’})
469
-
469
+
``proxies`` Dictionary mapping protocol or protocol and host to the URL of the proxy
0 commit comments