Developer Interface¶
This part of the documentation covers all the interfaces of Niquests. For parts where Niquests depends on external libraries, we document the most important right here and provide links to the canonical documentation.
Main Interface¶
All of Niquests’ functionality can be accessed by these 7 methods.
They all return an instance of the Response object.
- niquests.request(method: HttpMethodType, url: str, *, params: QueryParameterType | None = None, data: BodyType | None = None, json: Any | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, files: MultiPartFilesType | MultiPartFilesAltType | None = None, auth: HttpAuthenticationType | None = None, timeout: TimeoutType | None = 120, allow_redirects: bool = True, proxies: ProxyType | None = None, verify: TLSVerifyType = True, stream: bool = False, cert: TLSClientCertType | None = None, hooks: HookType[PreparedRequest | Response] | None = None, retries: RetryType = 0) Response[source]¶
Constructs and sends a
Request.This does not keep the connection alive. Use a
Sessionto reuse the connection.- Parameters:
method – method for the new
Requestobject:GET,OPTIONS,HEAD,POST,PUT,PATCH, orDELETE.url – URL for the new
Requestobject.params – (optional) Dictionary, list of tuples or bytes to send in the query string for the
Request.data – (optional) Dictionary, list of tuples, bytes, or file-like object to send in the body of the
Request.json – (optional) A JSON serializable Python object to send in the body of the
Request.headers – (optional) Dictionary of HTTP Headers to send with the
Request.cookies – (optional) Dict or CookieJar object to send with the
Request.files – (optional) Dictionary of
'name': file-like-objects(or{'name': file-tuple}) for multipart encoding upload.file-tuplecan be a 2-tuple('filename', fileobj), 3-tuple('filename', fileobj, 'content_type')or a 4-tuple('filename', fileobj, 'content_type', custom_headers), where'content_type'is a string defining the content type of the given file andcustom_headersa dict-like object containing additional headers to add for the file.auth – (optional) Auth tuple to enable Basic/Digest/Custom HTTP Auth.
timeout – (optional) How many seconds to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
allow_redirects – (optional) Boolean. Enable/disable GET/OPTIONS/POST/PUT/PATCH/DELETE/HEAD redirection. Defaults to
True.proxies – (optional) Dictionary mapping protocol to the URL of the proxy.
verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. Defaults to
True. It is also possible to put the certificates (directly) in a string or bytes.stream – (optional) if
False, the response content will be immediately downloaded.cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
hooks – (optional) Register functions that should be called at very specific moment in the request lifecycle.
retries – (optional) If integer, determine the number of retry in case of a timeout or connection error. Otherwise, for fine gained retry, use directly a
Retryinstance from urllib3.
- Returns:
Responseobject
Usage:
>>> import niquests >>> req = niquests.request('GET', 'https://httpbin.org/get') >>> req <Response HTTP/2 [200]>
- niquests.head(url: str, *, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, auth: HttpAuthenticationType | None = None, timeout: TimeoutType | None = 30, allow_redirects: bool = False, proxies: ProxyType | None = None, verify: TLSVerifyType = True, stream: bool = False, cert: TLSClientCertType | None = None, hooks: HookType[PreparedRequest | Response] | None = None, retries: RetryType = 0, **kwargs: Any) Response[source]¶
Sends a HEAD request. This does not keep the connection alive. Use a
Sessionto reuse the connection.- Parameters:
url – URL for the new
Requestobject.params – (optional) Dictionary, list of tuples or bytes to send in the query string for the
Request.headers – (optional) Dictionary of HTTP Headers to send with the
Request.cookies – (optional) Dict or CookieJar object to send with the
Request.auth – (optional) Auth tuple to enable Basic/Digest/Custom HTTP Auth.
timeout – (optional) How many seconds to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
allow_redirects – (optional) Boolean. Enable/disable GET/OPTIONS/POST/PUT/PATCH/DELETE/HEAD redirection. Defaults to
False.proxies – (optional) Dictionary mapping protocol to the URL of the proxy.
verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. Defaults to
True. It is also possible to put the certificates (directly) in a string or bytes.stream – (optional) if
False, the response content will be immediately downloaded.cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
hooks – (optional) Register functions that should be called at very specific moment in the request lifecycle.
retries – (optional) If integer, determine the number of retry in case of a timeout or connection error. Otherwise, for fine gained retry, use directly a
Retryinstance from urllib3.
- Returns:
Responseobject
- niquests.get(url: str, params: QueryParameterType | None = None, *, headers: HeadersType | None = None, cookies: CookiesType | None = None, auth: HttpAuthenticationType | None = None, timeout: TimeoutType | None = 30, allow_redirects: bool = True, proxies: ProxyType | None = None, verify: TLSVerifyType = True, stream: bool = False, cert: TLSClientCertType | None = None, hooks: HookType[PreparedRequest | Response] | None = None, retries: RetryType = 0, **kwargs: Any) Response[source]¶
Sends a GET request. This does not keep the connection alive. Use a
Sessionto reuse the connection.- Parameters:
url – URL for the new
Requestobject.params – (optional) Dictionary, list of tuples or bytes to send in the query string for the
Request.params – (optional) Dictionary, list of tuples or bytes to send in the query string for the
Request.headers – (optional) Dictionary of HTTP Headers to send with the
Request.cookies – (optional) Dict or CookieJar object to send with the
Request.auth – (optional) Auth tuple to enable Basic/Digest/Custom HTTP Auth.
timeout – (optional) How many seconds to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
allow_redirects – (optional) Boolean. Enable/disable GET/OPTIONS/POST/PUT/PATCH/DELETE/HEAD redirection. Defaults to
True.proxies – (optional) Dictionary mapping protocol to the URL of the proxy.
verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. Defaults to
True. It is also possible to put the certificates (directly) in a string or bytes.stream – (optional) if
False, the response content will be immediately downloaded.cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
hooks – (optional) Register functions that should be called at very specific moment in the request lifecycle.
retries – (optional) If integer, determine the number of retry in case of a timeout or connection error. Otherwise, for fine gained retry, use directly a
Retryinstance from urllib3.
- Returns:
Responseobject
- niquests.post(url: str, data: BodyType | None = None, json: Any | None = None, *, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, files: MultiPartFilesType | MultiPartFilesAltType | None = None, auth: HttpAuthenticationType | None = None, timeout: TimeoutType | None = 120, allow_redirects: bool = True, proxies: ProxyType | None = None, verify: TLSVerifyType = True, stream: bool = False, cert: TLSClientCertType | None = None, hooks: HookType[PreparedRequest | Response] | None = None, retries: RetryType = 0) Response[source]¶
Sends a POST request. This does not keep the connection alive. Use a
Sessionto reuse the connection.- Parameters:
url – URL for the new
Requestobject.params – (optional) Dictionary, list of tuples or bytes to send in the query string for the
Request.data – (optional) Dictionary, list of tuples, bytes, or file-like object to send in the body of the
Request.json – (optional) A JSON serializable Python object to send in the body of the
Request.headers – (optional) Dictionary of HTTP Headers to send with the
Request.cookies – (optional) Dict or CookieJar object to send with the
Request.files – (optional) Dictionary of
'name': file-like-objects(or{'name': file-tuple}) for multipart encoding upload.file-tuplecan be a 2-tuple('filename', fileobj), 3-tuple('filename', fileobj, 'content_type')or a 4-tuple('filename', fileobj, 'content_type', custom_headers), where'content_type'is a string defining the content type of the given file andcustom_headersa dict-like object containing additional headers to add for the file.auth – (optional) Auth tuple to enable Basic/Digest/Custom HTTP Auth.
timeout – (optional) How many seconds to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
allow_redirects – (optional) Boolean. Enable/disable GET/OPTIONS/POST/PUT/PATCH/DELETE/HEAD redirection. Defaults to
True.proxies – (optional) Dictionary mapping protocol to the URL of the proxy.
verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. Defaults to
True. It is also possible to put the certificates (directly) in a string or bytes.stream – (optional) if
False, the response content will be immediately downloaded.cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
hooks – (optional) Register functions that should be called at very specific moment in the request lifecycle.
retries – (optional) If integer, determine the number of retry in case of a timeout or connection error. Otherwise, for fine gained retry, use directly a
Retryinstance from urllib3.
- Returns:
Responseobject
- niquests.put(url: str, data: BodyType | None = None, *, json: Any | None = None, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, files: MultiPartFilesType | MultiPartFilesAltType | None = None, auth: HttpAuthenticationType | None = None, timeout: TimeoutType | None = 120, allow_redirects: bool = True, proxies: ProxyType | None = None, verify: TLSVerifyType = True, stream: bool = False, cert: TLSClientCertType | None = None, hooks: HookType[PreparedRequest | Response] | None = None, retries: RetryType = 0) Response[source]¶
Sends a PUT request. This does not keep the connection alive. Use a
Sessionto reuse the connection.- Parameters:
url – URL for the new
Requestobject.params – (optional) Dictionary, list of tuples or bytes to send in the query string for the
Request.data – (optional) Dictionary, list of tuples, bytes, or file-like object to send in the body of the
Request.json – (optional) A JSON serializable Python object to send in the body of the
Request.headers – (optional) Dictionary of HTTP Headers to send with the
Request.cookies – (optional) Dict or CookieJar object to send with the
Request.files – (optional) Dictionary of
'name': file-like-objects(or{'name': file-tuple}) for multipart encoding upload.file-tuplecan be a 2-tuple('filename', fileobj), 3-tuple('filename', fileobj, 'content_type')or a 4-tuple('filename', fileobj, 'content_type', custom_headers), where'content_type'is a string defining the content type of the given file andcustom_headersa dict-like object containing additional headers to add for the file.auth – (optional) Auth tuple to enable Basic/Digest/Custom HTTP Auth.
timeout – (optional) How many seconds to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
allow_redirects – (optional) Boolean. Enable/disable GET/OPTIONS/POST/PUT/PATCH/DELETE/HEAD redirection. Defaults to
True.proxies – (optional) Dictionary mapping protocol to the URL of the proxy.
verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. Defaults to
True. It is also possible to put the certificates (directly) in a string or bytes.stream – (optional) if
False, the response content will be immediately downloaded.cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
hooks – (optional) Register functions that should be called at very specific moment in the request lifecycle.
retries – (optional) If integer, determine the number of retry in case of a timeout or connection error. Otherwise, for fine gained retry, use directly a
Retryinstance from urllib3.
- Returns:
Responseobject
- niquests.patch(url: str, data: BodyType | None = None, *, json: Any | None = None, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, files: MultiPartFilesType | MultiPartFilesAltType | None = None, auth: HttpAuthenticationType | None = None, timeout: TimeoutType | None = 120, allow_redirects: bool = True, proxies: ProxyType | None = None, verify: TLSVerifyType = True, stream: bool = False, cert: TLSClientCertType | None = None, hooks: HookType[PreparedRequest | Response] | None = None, retries: RetryType = 0) Response[source]¶
Sends a PATCH request. This does not keep the connection alive. Use a
Sessionto reuse the connection.- Parameters:
url – URL for the new
Requestobject.params – (optional) Dictionary, list of tuples or bytes to send in the query string for the
Request.data – (optional) Dictionary, list of tuples, bytes, or file-like object to send in the body of the
Request.json – (optional) A JSON serializable Python object to send in the body of the
Request.headers – (optional) Dictionary of HTTP Headers to send with the
Request.cookies – (optional) Dict or CookieJar object to send with the
Request.files – (optional) Dictionary of
'name': file-like-objects(or{'name': file-tuple}) for multipart encoding upload.file-tuplecan be a 2-tuple('filename', fileobj), 3-tuple('filename', fileobj, 'content_type')or a 4-tuple('filename', fileobj, 'content_type', custom_headers), where'content_type'is a string defining the content type of the given file andcustom_headersa dict-like object containing additional headers to add for the file.auth – (optional) Auth tuple to enable Basic/Digest/Custom HTTP Auth.
timeout – (optional) How many seconds to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
allow_redirects – (optional) Boolean. Enable/disable GET/OPTIONS/POST/PUT/PATCH/DELETE/HEAD redirection. Defaults to
True.proxies – (optional) Dictionary mapping protocol to the URL of the proxy.
verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. Defaults to
True. It is also possible to put the certificates (directly) in a string or bytes.stream – (optional) if
False, the response content will be immediately downloaded.cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
hooks – (optional) Register functions that should be called at very specific moment in the request lifecycle.
retries – (optional) If integer, determine the number of retry in case of a timeout or connection error. Otherwise, for fine gained retry, use directly a
Retryinstance from urllib3.
- Returns:
Responseobject
- niquests.delete(url: str, *, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, auth: HttpAuthenticationType | None = None, timeout: TimeoutType | None = 120, allow_redirects: bool = True, proxies: ProxyType | None = None, verify: TLSVerifyType = True, stream: bool = False, cert: TLSClientCertType | None = None, hooks: HookType[PreparedRequest | Response] | None = None, retries: RetryType = 0, **kwargs: Any) Response[source]¶
Sends a DELETE request. This does not keep the connection alive. Use a
Sessionto reuse the connection.- Parameters:
url – URL for the new
Requestobject.params – (optional) Dictionary, list of tuples or bytes to send in the query string for the
Request.headers – (optional) Dictionary of HTTP Headers to send with the
Request.cookies – (optional) Dict or CookieJar object to send with the
Request.auth – (optional) Auth tuple to enable Basic/Digest/Custom HTTP Auth.
timeout – (optional) How many seconds to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
allow_redirects – (optional) Boolean. Enable/disable GET/OPTIONS/POST/PUT/PATCH/DELETE/HEAD redirection. Defaults to
True.proxies – (optional) Dictionary mapping protocol to the URL of the proxy.
verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. Defaults to
True. It is also possible to put the certificates (directly) in a string or bytes.stream – (optional) if
False, the response content will be immediately downloaded.cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
hooks – (optional) Register functions that should be called at very specific moment in the request lifecycle.
retries – (optional) If integer, determine the number of retry in case of a timeout or connection error. Otherwise, for fine gained retry, use directly a
Retryinstance from urllib3.
- Returns:
Responseobject
- async niquests.ahead(url: str, *, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, auth: HttpAuthenticationType | AsyncHttpAuthenticationType | None = None, timeout: TimeoutType | None = 30, allow_redirects: bool = False, proxies: ProxyType | None = None, hooks: AsyncHookType[PreparedRequest | Response] | None = None, verify: TLSVerifyType | None = None, stream: bool | None = None, cert: TLSClientCertType | None = None, retries: RetryType = 0, **kwargs: Any) Response | AsyncResponse¶
Sends a HEAD request. This does not keep the connection alive. Use an
AsyncSessionto reuse the connection.- Parameters:
url – URL for the new
Requestobject.params – (optional) Dictionary, list of tuples or bytes to send in the query string for the
Request.headers – (optional) Dictionary of HTTP Headers to send with the
Request.cookies – (optional) Dict or CookieJar object to send with the
Request.auth – (optional) Auth tuple to enable Basic/Digest/Custom HTTP Auth.
timeout – (optional) How many seconds to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
allow_redirects – (optional) Boolean. Enable/disable GET/OPTIONS/POST/PUT/PATCH/DELETE/HEAD redirection. Defaults to
False.proxies – (optional) Dictionary mapping protocol to the URL of the proxy.
verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. Defaults to
True. It is also possible to put the certificates (directly) in a string or bytes.stream – (optional) if
False, the response content will be immediately downloaded. Otherwise, the response will be of typeAsyncResponseso that it will be awaitable.cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
hooks – (optional) Register functions that should be called at very specific moment in the request lifecycle.
retries – (optional) If integer, determine the number of retry in case of a timeout or connection error. Otherwise, for fine gained retry, use directly a
Retryinstance from urllib3.
- Returns:
Responseobject if stream=None or False. OtherwiseAsyncResponse
- async niquests.aget(url: str, params: QueryParameterType | None = None, *, headers: HeadersType | None = None, cookies: CookiesType | None = None, auth: HttpAuthenticationType | AsyncHttpAuthenticationType | None = None, timeout: TimeoutType | None = 30, allow_redirects: bool = True, proxies: ProxyType | None = None, hooks: AsyncHookType[PreparedRequest | Response] | None = None, verify: TLSVerifyType | None = None, stream: bool | None = None, cert: TLSClientCertType | None = None, retries: RetryType = 0, **kwargs: Any) Response | AsyncResponse¶
Sends a GET request. This does not keep the connection alive. Use an
AsyncSessionto reuse the connection.- Parameters:
url – URL for the new
Requestobject.params – (optional) Dictionary, list of tuples or bytes to send in the query string for the
Request.params – (optional) Dictionary, list of tuples or bytes to send in the query string for the
Request.headers – (optional) Dictionary of HTTP Headers to send with the
Request.cookies – (optional) Dict or CookieJar object to send with the
Request.auth – (optional) Auth tuple to enable Basic/Digest/Custom HTTP Auth.
timeout – (optional) How many seconds to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
allow_redirects – (optional) Boolean. Enable/disable GET/OPTIONS/POST/PUT/PATCH/DELETE/HEAD redirection. Defaults to
True.proxies – (optional) Dictionary mapping protocol to the URL of the proxy.
verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. Defaults to
True. It is also possible to put the certificates (directly) in a string or bytes.stream – (optional) if
False, the response content will be immediately downloaded. Otherwise, the response will be of typeAsyncResponseso that it will be awaitable.cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
hooks – (optional) Register functions that should be called at very specific moment in the request lifecycle.
retries – (optional) If integer, determine the number of retry in case of a timeout or connection error. Otherwise, for fine gained retry, use directly a
Retryinstance from urllib3.
- Returns:
Responseobject if stream=None or False. OtherwiseAsyncResponse
- async niquests.apost(url: str, data: BodyType | AsyncBodyType | None = None, json: Any | None = None, *, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, files: MultiPartFilesType | MultiPartFilesAltType | None = None, auth: HttpAuthenticationType | AsyncHttpAuthenticationType | None = None, timeout: TimeoutType | None = 120, allow_redirects: bool = True, proxies: ProxyType | None = None, hooks: AsyncHookType[PreparedRequest | Response] | None = None, verify: TLSVerifyType | None = None, stream: bool | None = None, cert: TLSClientCertType | None = None, retries: RetryType = 0) Response | AsyncResponse¶
Sends a POST request. This does not keep the connection alive. Use an
AsyncSessionto reuse the connection.- Parameters:
url – URL for the new
Requestobject.params – (optional) Dictionary, list of tuples or bytes to send in the query string for the
Request.data – (optional) Dictionary, list of tuples, bytes, or (awaitable or not) file-like object to send in the body of the
Request.json – (optional) A JSON serializable Python object to send in the body of the
Request.headers – (optional) Dictionary of HTTP Headers to send with the
Request.cookies – (optional) Dict or CookieJar object to send with the
Request.files – (optional) Dictionary of
'name': file-like-objects(or{'name': file-tuple}) for multipart encoding upload.file-tuplecan be a 2-tuple('filename', fileobj), 3-tuple('filename', fileobj, 'content_type')or a 4-tuple('filename', fileobj, 'content_type', custom_headers), where'content_type'is a string defining the content type of the given file andcustom_headersa dict-like object containing additional headers to add for the file.auth – (optional) Auth tuple to enable Basic/Digest/Custom HTTP Auth.
timeout – (optional) How many seconds to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
allow_redirects – (optional) Boolean. Enable/disable GET/OPTIONS/POST/PUT/PATCH/DELETE/HEAD redirection. Defaults to
True.proxies – (optional) Dictionary mapping protocol to the URL of the proxy.
verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. Defaults to
True. It is also possible to put the certificates (directly) in a string or bytes.stream – (optional) if
False, the response content will be immediately downloaded. Otherwise, the response will be of typeAsyncResponseso that it will be awaitable.cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
hooks – (optional) Register functions that should be called at very specific moment in the request lifecycle.
retries – (optional) If integer, determine the number of retry in case of a timeout or connection error. Otherwise, for fine gained retry, use directly a
Retryinstance from urllib3.
- Returns:
Responseobject if stream=None or False. OtherwiseAsyncResponse
- async niquests.aput(url: str, data: BodyType | AsyncBodyType | None = None, *, json: Any | None = None, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, files: MultiPartFilesType | MultiPartFilesAltType | None = None, auth: HttpAuthenticationType | AsyncHttpAuthenticationType | None = None, timeout: TimeoutType | None = 120, allow_redirects: bool = True, proxies: ProxyType | None = None, hooks: AsyncHookType[PreparedRequest | Response] | None = None, verify: TLSVerifyType | None = None, stream: bool | None = None, cert: TLSClientCertType | None = None, retries: RetryType = 0) Response | AsyncResponse¶
Sends a PUT request. This does not keep the connection alive. Use an
AsyncSessionto reuse the connection.- Parameters:
url – URL for the new
Requestobject.params – (optional) Dictionary, list of tuples or bytes to send in the query string for the
Request.data – (optional) Dictionary, list of tuples, bytes, or (awaitable or not) file-like object to send in the body of the
Request.json – (optional) A JSON serializable Python object to send in the body of the
Request.headers – (optional) Dictionary of HTTP Headers to send with the
Request.cookies – (optional) Dict or CookieJar object to send with the
Request.files – (optional) Dictionary of
'name': file-like-objects(or{'name': file-tuple}) for multipart encoding upload.file-tuplecan be a 2-tuple('filename', fileobj), 3-tuple('filename', fileobj, 'content_type')or a 4-tuple('filename', fileobj, 'content_type', custom_headers), where'content_type'is a string defining the content type of the given file andcustom_headersa dict-like object containing additional headers to add for the file.auth – (optional) Auth tuple to enable Basic/Digest/Custom HTTP Auth.
timeout – (optional) How many seconds to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
allow_redirects – (optional) Boolean. Enable/disable GET/OPTIONS/POST/PUT/PATCH/DELETE/HEAD redirection. Defaults to
True.proxies – (optional) Dictionary mapping protocol to the URL of the proxy.
verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. Defaults to
True. It is also possible to put the certificates (directly) in a string or bytes.stream – (optional) if
False, the response content will be immediately downloaded. Otherwise, the response will be of typeAsyncResponseso that it will be awaitable.cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
hooks – (optional) Register functions that should be called at very specific moment in the request lifecycle.
retries – (optional) If integer, determine the number of retry in case of a timeout or connection error. Otherwise, for fine gained retry, use directly a
Retryinstance from urllib3.
- Returns:
Responseobject if stream=None or False. OtherwiseAsyncResponse
- async niquests.apatch(url: str, data: BodyType | AsyncBodyType | None = None, *, json: Any | None = None, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, files: MultiPartFilesType | MultiPartFilesAltType | None = None, auth: HttpAuthenticationType | AsyncHttpAuthenticationType | None = None, timeout: TimeoutType | None = 120, allow_redirects: bool = True, proxies: ProxyType | None = None, hooks: AsyncHookType[PreparedRequest | Response] | None = None, verify: TLSVerifyType | None = None, stream: bool | None = None, cert: TLSClientCertType | None = None, retries: RetryType = 0) Response | AsyncResponse¶
Sends a PATCH request. This does not keep the connection alive. Use an
AsyncSessionto reuse the connection.- Parameters:
url – URL for the new
Requestobject.params – (optional) Dictionary, list of tuples or bytes to send in the query string for the
Request.data – (optional) Dictionary, list of tuples, bytes, or (awaitable or not) file-like object to send in the body of the
Request.json – (optional) A JSON serializable Python object to send in the body of the
Request.headers – (optional) Dictionary of HTTP Headers to send with the
Request.cookies – (optional) Dict or CookieJar object to send with the
Request.files – (optional) Dictionary of
'name': file-like-objects(or{'name': file-tuple}) for multipart encoding upload.file-tuplecan be a 2-tuple('filename', fileobj), 3-tuple('filename', fileobj, 'content_type')or a 4-tuple('filename', fileobj, 'content_type', custom_headers), where'content_type'is a string defining the content type of the given file andcustom_headersa dict-like object containing additional headers to add for the file.auth – (optional) Auth tuple to enable Basic/Digest/Custom HTTP Auth.
timeout – (optional) How many seconds to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
allow_redirects – (optional) Boolean. Enable/disable GET/OPTIONS/POST/PUT/PATCH/DELETE/HEAD redirection. Defaults to
True.proxies – (optional) Dictionary mapping protocol to the URL of the proxy.
verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. Defaults to
True. It is also possible to put the certificates (directly) in a string or bytes.stream – (optional) if
False, the response content will be immediately downloaded. Otherwise, the response will be of typeAsyncResponseso that it will be awaitable.cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
hooks – (optional) Register functions that should be called at very specific moment in the request lifecycle.
retries – (optional) If integer, determine the number of retry in case of a timeout or connection error. Otherwise, for fine gained retry, use directly a
Retryinstance from urllib3.
- Returns:
Responseobject if stream=None or False. OtherwiseAsyncResponse
- async niquests.adelete(url: str, *, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, auth: HttpAuthenticationType | AsyncHttpAuthenticationType | None = None, timeout: TimeoutType | None = 120, allow_redirects: bool = True, proxies: ProxyType | None = None, hooks: AsyncHookType[PreparedRequest | Response] | None = None, verify: TLSVerifyType | None = None, stream: bool | None = None, cert: TLSClientCertType | None = None, retries: RetryType = 0, **kwargs: Any) Response | AsyncResponse¶
Sends a DELETE request. This does not keep the connection alive. Use an
AsyncSessionto reuse the connection.- Parameters:
url – URL for the new
Requestobject.params – (optional) Dictionary, list of tuples or bytes to send in the query string for the
Request.headers – (optional) Dictionary of HTTP Headers to send with the
Request.cookies – (optional) Dict or CookieJar object to send with the
Request.auth – (optional) Auth tuple to enable Basic/Digest/Custom HTTP Auth.
timeout – (optional) How many seconds to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
allow_redirects – (optional) Boolean. Enable/disable GET/OPTIONS/POST/PUT/PATCH/DELETE/HEAD redirection. Defaults to
True.proxies – (optional) Dictionary mapping protocol to the URL of the proxy.
verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. Defaults to
True. It is also possible to put the certificates (directly) in a string or bytes.stream – (optional) if
False, the response content will be immediately downloaded. Otherwise, the response will be of typeAsyncResponseso that it will be awaitable.cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
hooks – (optional) Register functions that should be called at very specific moment in the request lifecycle.
retries – (optional) If integer, determine the number of retry in case of a timeout or connection error. Otherwise, for fine gained retry, use directly a
Retryinstance from urllib3.
- Returns:
Responseobject if stream=None or False. OtherwiseAsyncResponse
Exceptions¶
- exception niquests.RequestException(*args, **kwargs)[source]¶
There was an ambiguous exception that occurred while handling your request.
- exception niquests.ConnectTimeout(*args, **kwargs)[source]¶
The request timed out while trying to connect to the remote server.
Requests that produced this error are safe to retry.
- exception niquests.ReadTimeout(*args, **kwargs)[source]¶
The server did not send any data in the allotted amount of time.
Request Sessions¶
- class niquests.Session(*, resolver: ResolverType | None = None, source_address: tuple[str, int] | None = None, quic_cache_layer: CacheLayerAltSvcType | None = None, retries: RetryType = 0, multiplexed: bool = False, disable_http1: bool = False, disable_http2: bool = False, disable_http3: bool = False, disable_ipv6: bool = False, disable_ipv4: bool = False, pool_connections: int = 10, pool_maxsize: int = 10, happy_eyeballs: bool | int = False, keepalive_delay: float | int | None = 600.0, keepalive_idle_window: float | int | None = 60.0, base_url: str | None = None, timeout: TimeoutType | None = None, headers: HeadersType | None = None, auth: HttpAuthenticationType | None = None, hooks: HookType[PreparedRequest | Response] | None = None, revocation_configuration: RevocationConfiguration | None = RevocationConfiguration(strategy=<RevocationStrategy.PREFER_OCSP: 0>, strict_mode=False), app: WSGIApp | ASGIApp | None = None, params: QueryParameterType | None = None, cookies: CookiesType | None = None, proxies: ProxyType | None = None, verify: TLSVerifyType | None = None, cert: TLSClientCertType | None = None, allow_incoming_cookies: bool = True)[source]¶
A Requests session.
Provides cookie persistence, connection-pooling, and configuration.
Basic Usage:
>>> import niquests >>> s = niquests.Session() >>> s.get('https://httpbin.org/get') <Response HTTP/2 [200]>
Or as a context manager:
>>> with niquests.Session() as s: ... s.get('https://httpbin.org/get') <Response HTTP/2 [200]>
- allow_incoming_cookies: bool¶
Toggle whether cookies sent by the remote peer (
Set-Cookie) are extracted and merged into this Session. WhenFalse, every incoming cookie is ignored while outgoing cookies set by the user are still emitted.
- cert: TLSClientCertType | None¶
SSL client certificate default, if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
- cookies: RequestsCookieJar¶
A CookieJar containing all currently outstanding cookies set on this session. It is always a
RequestsCookieJar. A mapping or a nativecookielib.CookieJarpassed at construction time is silently coerced.
- delete(url: str, *, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, auth: HttpAuthenticationType | None = None, timeout: TimeoutType | None = None, allow_redirects: bool = True, proxies: ProxyType | None = None, hooks: HookType[PreparedRequest | Response] | None = None, verify: TLSVerifyType | None = None, stream: bool | None = None, cert: TLSClientCertType | None = None, **kwargs: Any) Response[source]¶
Sends a DELETE request. Returns
Responseobject.- Parameters:
url – URL for the new
Requestobject.params – (optional) Dictionary or bytes to be sent in the query string for the
Request.headers – (optional) Dictionary of HTTP Headers to send with the
Request.cookies – (optional) Dict or CookieJar object to send with the
Request.auth – (optional) Auth tuple or callable to enable Basic/Digest/Custom HTTP Auth.
timeout – (optional) How long to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
allow_redirects – (optional) Set to True by default.
proxies – (optional) Dictionary mapping protocol or protocol and hostname to the URL of the proxy.
hooks – (optional) Dictionary mapping hook name to one event or list of events, event must be callable.
stream – (optional) whether to immediately download the response content. Defaults to
False.verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. Defaults to
True. When set toFalse, requests will accept any TLS certificate presented by the server, and will ignore hostname mismatches and/or expired certificates, which will make your application vulnerable to man-in-the-middle (MitM) attacks. Setting verify toFalsemay be useful during local development or testing. It is also possible to put the certificates (directly) in a string or bytes.cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
- gather(*responses: Response, max_fetch: int | None = None) None[source]¶
Call this method to make sure in-flight responses are retrieved efficiently. This is a no-op if multiplexed is set to False (which is the default value). Passing a limited set of responses will wait for given promises and discard others for later.
- Parameters:
max_fetch – Maximal number of response to be fetched before exiting the loop. By default, it waits until all pending (lazy) response are resolved.
- get(url: str, *, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, auth: HttpAuthenticationType | None = None, timeout: TimeoutType | None = None, allow_redirects: bool = True, proxies: ProxyType | None = None, hooks: HookType[PreparedRequest | Response] | None = None, verify: TLSVerifyType | None = None, stream: bool | None = None, cert: TLSClientCertType | None = None, **kwargs: Any) Response[source]¶
Sends a GET request. Returns
Responseobject.- Parameters:
url – URL for the new
Requestobject.params – (optional) Dictionary or bytes to be sent in the query string for the
Request.headers – (optional) Dictionary of HTTP Headers to send with the
Request.cookies – (optional) Dict or CookieJar object to send with the
Request.auth – (optional) Auth tuple or callable to enable Basic/Digest/Custom HTTP Auth.
timeout – (optional) How long to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
allow_redirects – (optional) Set to True by default.
proxies – (optional) Dictionary mapping protocol or protocol and hostname to the URL of the proxy.
hooks – (optional) Dictionary mapping hook name to one event or list of events, event must be callable.
stream – (optional) whether to immediately download the response content. Defaults to
False.verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. Defaults to
True. When set toFalse, requests will accept any TLS certificate presented by the server, and will ignore hostname mismatches and/or expired certificates, which will make your application vulnerable to man-in-the-middle (MitM) attacks. Setting verify toFalsemay be useful during local development or testing. It is also possible to put the certificates (directly) in a string or bytes.cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
- get_adapter(url: str) BaseAdapter[source]¶
Returns the appropriate connection adapter for the given URL.
- get_redirect_target(resp: Response) str | None[source]¶
Receives a Response. Returns a redirect URI or
None
- head(url: str, *, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, auth: HttpAuthenticationType | None = None, timeout: TimeoutType | None = None, allow_redirects: bool = False, proxies: ProxyType | None = None, hooks: HookType[PreparedRequest | Response] | None = None, verify: TLSVerifyType | None = None, stream: bool | None = None, cert: TLSClientCertType | None = None, **kwargs: Any) Response[source]¶
Sends a HEAD request. Returns
Responseobject.- Parameters:
url – URL for the new
Requestobject.params – (optional) Dictionary or bytes to be sent in the query string for the
Request.headers – (optional) Dictionary of HTTP Headers to send with the
Request.cookies – (optional) Dict or CookieJar object to send with the
Request.auth – (optional) Auth tuple or callable to enable Basic/Digest/Custom HTTP Auth.
timeout – (optional) How long to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
allow_redirects – (optional) Set to False by default.
proxies – (optional) Dictionary mapping protocol or protocol and hostname to the URL of the proxy.
hooks – (optional) Dictionary mapping hook name to one event or list of events, event must be callable.
stream – (optional) whether to immediately download the response content. Defaults to
False.verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. Defaults to
True. When set toFalse, requests will accept any TLS certificate presented by the server, and will ignore hostname mismatches and/or expired certificates, which will make your application vulnerable to man-in-the-middle (MitM) attacks. Setting verify toFalsemay be useful during local development or testing. It is also possible to put the certificates (directly) in a string or bytes.cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
- headers¶
A case-insensitive dictionary of headers to be sent on each
Requestsent from thisSession.
- hooks: HookType[PreparedRequest | Response]¶
Event-handling hooks.
- max_redirects: int¶
Maximum number of redirects allowed. If the request exceeds this limit, a
TooManyRedirectsexception is raised. This defaults to requests.models.DEFAULT_REDIRECT_LIMIT, which is 30.
- merge_environment_settings(url: str, proxies: Dict[str, str], stream: bool | None, verify: bool | str | bytes | PathLike[str] | None, cert: str | Tuple[str, str] | Tuple[str, str, str] | None) dict[str, Any][source]¶
Check the environment and merge it with some settings.
- mount(prefix: str, adapter: BaseAdapter) None[source]¶
Registers a connection adapter to a prefix.
Adapters are sorted in descending order by prefix length.
- multiplexed¶
Toggle to leverage multiplexed connection.
- options(url: str, *, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, auth: HttpAuthenticationType | None = None, timeout: TimeoutType | None = None, allow_redirects: bool = True, proxies: ProxyType | None = None, hooks: HookType[PreparedRequest | Response] | None = None, verify: TLSVerifyType | None = None, stream: bool | None = None, cert: TLSClientCertType | None = None, **kwargs: Any) Response[source]¶
Sends a OPTIONS request. Returns
Responseobject.- Parameters:
url – URL for the new
Requestobject.params – (optional) Dictionary or bytes to be sent in the query string for the
Request.headers – (optional) Dictionary of HTTP Headers to send with the
Request.cookies – (optional) Dict or CookieJar object to send with the
Request.auth – (optional) Auth tuple or callable to enable Basic/Digest/Custom HTTP Auth.
timeout – (optional) How long to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
allow_redirects – (optional) Set to True by default.
proxies – (optional) Dictionary mapping protocol or protocol and hostname to the URL of the proxy.
hooks – (optional) Dictionary mapping hook name to one event or list of events, event must be callable.
stream – (optional) whether to immediately download the response content. Defaults to
False.verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. Defaults to
True. When set toFalse, requests will accept any TLS certificate presented by the server, and will ignore hostname mismatches and/or expired certificates, which will make your application vulnerable to man-in-the-middle (MitM) attacks. Setting verify toFalsemay be useful during local development or testing. It is also possible to put the certificates (directly) in a string or bytes.cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
- params: QueryParameterType¶
Dictionary of querystring data to attach to each
Request. The dictionary values may be lists for representing multivalued query parameters.
- patch(url: str, data: BodyType | None = None, *, json: Any | None = None, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, files: MultiPartFilesType | MultiPartFilesAltType | None = None, auth: HttpAuthenticationType | None = None, timeout: TimeoutType | None = None, allow_redirects: bool = True, proxies: ProxyType | None = None, hooks: HookType[PreparedRequest | Response] | None = None, verify: TLSVerifyType | None = None, stream: bool | None = None, cert: TLSClientCertType | None = None) Response[source]¶
Sends a PATCH request. Returns
Responseobject.- Parameters:
url – URL for the new
Requestobject.params – (optional) Dictionary or bytes to be sent in the query string for the
Request.data – (optional) Dictionary, list of tuples, bytes, or file-like object to send in the body of the
Request.json – (optional) json to send in the body of the
Request.headers – (optional) Dictionary of HTTP Headers to send with the
Request.cookies – (optional) Dict or CookieJar object to send with the
Request.files – (optional) Dictionary of
'filename': file-like-objectsfor multipart encoding upload.auth – (optional) Auth tuple or callable to enable Basic/Digest/Custom HTTP Auth.
timeout – (optional) How long to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
allow_redirects – (optional) Set to True by default.
proxies – (optional) Dictionary mapping protocol or protocol and hostname to the URL of the proxy.
hooks – (optional) Dictionary mapping hook name to one event or list of events, event must be callable.
stream – (optional) whether to immediately download the response content. Defaults to
False.verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. Defaults to
True. When set toFalse, requests will accept any TLS certificate presented by the server, and will ignore hostname mismatches and/or expired certificates, which will make your application vulnerable to man-in-the-middle (MitM) attacks. Setting verify toFalsemay be useful during local development or testing. It is also possible to put the certificates (directly) in a string or bytes.cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
- post(url: str, data: BodyType | None = None, json: Any | None = None, *, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, files: MultiPartFilesType | MultiPartFilesAltType | None = None, auth: HttpAuthenticationType | None = None, timeout: TimeoutType | None = None, allow_redirects: bool = True, proxies: ProxyType | None = None, hooks: HookType[PreparedRequest | Response] | None = None, verify: TLSVerifyType | None = None, stream: bool | None = None, cert: TLSClientCertType | None = None) Response[source]¶
Sends a POST request. Returns
Responseobject.- Parameters:
url – URL for the new
Requestobject.params – (optional) Dictionary or bytes to be sent in the query string for the
Request.data – (optional) Dictionary, list of tuples, bytes, or file-like object to send in the body of the
Request.json – (optional) json to send in the body of the
Request.headers – (optional) Dictionary of HTTP Headers to send with the
Request.cookies – (optional) Dict or CookieJar object to send with the
Request.files – (optional) Dictionary of
'filename': file-like-objectsfor multipart encoding upload.auth – (optional) Auth tuple or callable to enable Basic/Digest/Custom HTTP Auth.
timeout – (optional) How long to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
allow_redirects – (optional) Set to True by default.
proxies – (optional) Dictionary mapping protocol or protocol and hostname to the URL of the proxy.
hooks – (optional) Dictionary mapping hook name to one event or list of events, event must be callable.
stream – (optional) whether to immediately download the response content. Defaults to
False.verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. Defaults to
True. When set toFalse, requests will accept any TLS certificate presented by the server, and will ignore hostname mismatches and/or expired certificates, which will make your application vulnerable to man-in-the-middle (MitM) attacks. Setting verify toFalsemay be useful during local development or testing. It is also possible to put the certificates (directly) in a string or bytes.cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
- prepare_request(request: Request) PreparedRequest[source]¶
Constructs a
PreparedRequestfor transmission and returns it. ThePreparedRequesthas settings merged from theRequestinstance and those of theSession.- Parameters:
request –
Requestinstance to prepare with this session’s settings.
- proxies: ProxyType¶
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’}) to be used on each
Request.
- put(url: str, data: BodyType | None = None, *, json: Any | None = None, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, files: MultiPartFilesType | MultiPartFilesAltType | None = None, auth: HttpAuthenticationType | None = None, timeout: TimeoutType | None = None, allow_redirects: bool = True, proxies: ProxyType | None = None, hooks: HookType[PreparedRequest | Response] | None = None, verify: TLSVerifyType | None = None, stream: bool | None = None, cert: TLSClientCertType | None = None) Response[source]¶
Sends a PUT request. Returns
Responseobject.- Parameters:
url – URL for the new
Requestobject.params – (optional) Dictionary or bytes to be sent in the query string for the
Request.data – (optional) Dictionary, list of tuples, bytes, or file-like object to send in the body of the
Request.json – (optional) json to send in the body of the
Request.headers – (optional) Dictionary of HTTP Headers to send with the
Request.cookies – (optional) Dict or CookieJar object to send with the
Request.files – (optional) Dictionary of
'filename': file-like-objectsfor multipart encoding upload.auth – (optional) Auth tuple or callable to enable Basic/Digest/Custom HTTP Auth.
timeout – (optional) How long to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
allow_redirects – (optional) Set to True by default.
proxies – (optional) Dictionary mapping protocol or protocol and hostname to the URL of the proxy.
hooks – (optional) Dictionary mapping hook name to one event or list of events, event must be callable.
stream – (optional) whether to immediately download the response content. Defaults to
False.verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. Defaults to
True. When set toFalse, requests will accept any TLS certificate presented by the server, and will ignore hostname mismatches and/or expired certificates, which will make your application vulnerable to man-in-the-middle (MitM) attacks. Setting verify toFalsemay be useful during local development or testing. It is also possible to put the certificates (directly) in a string or bytes.cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
- quic_cache_layer¶
A simple dict that allows us to persist which server support QUIC It is simply forwarded to urllib3.future that handle the caching logic. Can be any mutable mapping.
- rebuild_auth(prepared_request: PreparedRequest, response: Response) None[source]¶
When being redirected we may want to strip authentication from the request to avoid leaking credentials. This method intelligently removes and reapplies authentication where possible to avoid credential loss.
- rebuild_method(prepared_request: PreparedRequest, response: Response)[source]¶
When being redirected we may want to change the method of the request based on certain specs or browser behavior.
- rebuild_proxies(prepared_request: PreparedRequest, proxies: Dict[str, str] | None) Dict[str, str][source]¶
This method re-evaluates the proxy configuration by considering the environment variables. If we are redirected to a URL covered by NO_PROXY, we strip the proxy configuration. Otherwise, we set missing proxy keys for this URL (in case they were stripped by a previous redirect).
This method also replaces the Proxy-Authorization header where necessary.
- request(method: HttpMethodType, url: str, params: QueryParameterType | None = None, data: BodyType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, files: MultiPartFilesType | MultiPartFilesAltType | None = None, auth: HttpAuthenticationType | None = None, timeout: TimeoutType | None = None, allow_redirects: bool = True, proxies: ProxyType | None = None, hooks: HookType[PreparedRequest | Response] | None = None, stream: bool | None = None, verify: TLSVerifyType | None = None, cert: TLSClientCertType | None = None, json: Any | None = None, override_scheme: str | None = None) Response[source]¶
Constructs a
Request, prepares it and sends it. ReturnsResponseobject.- Parameters:
method – method for the new
Requestobject.url – URL for the new
Requestobject.params – (optional) Dictionary or bytes to be sent in the query string for the
Request.data – (optional) Dictionary, list of tuples, bytes, or file-like object to send in the body of the
Request.json – (optional) json to send in the body of the
Request.headers – (optional) Dictionary of HTTP Headers to send with the
Request.cookies – (optional) Dict or CookieJar object to send with the
Request.files – (optional) Dictionary of
'filename': file-like-objectsfor multipart encoding upload.auth – (optional) Auth tuple or callable to enable Basic/Digest/Custom HTTP Auth.
timeout – (optional) How long to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
allow_redirects – (optional) Set to True by default.
proxies – (optional) Dictionary mapping protocol or protocol and hostname to the URL of the proxy.
hooks – (optional) Dictionary mapping hook name to one event or list of events, event must be callable.
stream – (optional) whether to immediately download the response content. Defaults to
False.verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. Defaults to
True. When set toFalse, requests will accept any TLS certificate presented by the server, and will ignore hostname mismatches and/or expired certificates, which will make your application vulnerable to man-in-the-middle (MitM) attacks. Setting verify toFalsemay be useful during local development or testing. It is also possible to put the certificates (directly) in a string or bytes.cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
override_scheme – (optional) Override the scheme of the final URL just before picking the adapter. Only applied when a
base_urlis set on the Session. Useful to target a different scheme (e.g.sseorws/wss, optionally with an implementation suffix likesse+unix) than the one carried bybase_urlwithout retyping the full URL.
- resolve_redirects(resp: Response, req: PreparedRequest, stream: bool = False, timeout: int | float | None = None, verify: bool | str | bytes | PathLike[str] = True, cert: str | Tuple[str, str] | Tuple[str, str, str] | None = None, proxies: Dict[str, str] | None = None, yield_requests: bool = False, yield_requests_trail: bool = False, **adapter_kwargs: Any) Generator[Response | PreparedRequest, None, None][source]¶
Receives a Response. Returns a generator of Responses or Requests.
- resolver¶
Custom DNS resolution method.
- retries¶
Configured retries for current Session
- send(request: PreparedRequest, **kwargs: Any) Response[source]¶
Send a given PreparedRequest.
- should_strip_auth(old_url: str, new_url: str) bool[source]¶
Decide whether Authorization header should be removed when redirecting
- source_address¶
Bind to address/network adapter
- stream¶
Stream response content default.
- timeout¶
global timeout configuration
- trust_env: bool¶
Trust environment settings for proxy configuration, default authentication and similar.
- verify: TLSVerifyType¶
SSL Verification default. Defaults to True, requiring requests to verify the TLS certificate at the remote end. If verify is set to False, requests will accept any TLS certificate presented by the server, and will ignore hostname mismatches and/or expired certificates, which will make your application vulnerable to man-in-the-middle (MitM) attacks. Only set this to False for testing.
- class niquests.AsyncSession(*, resolver: AsyncResolverType | None = None, source_address: tuple[str, int] | None = None, quic_cache_layer: CacheLayerAltSvcType | None = None, retries: RetryType = 0, multiplexed: bool = False, disable_http1: bool = False, disable_http2: bool = False, disable_http3: bool = False, disable_ipv6: bool = False, disable_ipv4: bool = False, pool_connections: int = 10, pool_maxsize: int = 10, happy_eyeballs: bool | int = False, keepalive_delay: float | int | None = 600.0, keepalive_idle_window: float | int | None = 60.0, base_url: str | None = None, timeout: TimeoutType | None = None, headers: HeadersType | None = None, auth: HttpAuthenticationType | AsyncHttpAuthenticationType | None = None, hooks: AsyncHookType[PreparedRequest | Response | AsyncResponse] | None = None, revocation_configuration: RevocationConfiguration | None = RevocationConfiguration(strategy=<RevocationStrategy.PREFER_OCSP: 0>, strict_mode=False), app: ASGIApp | None = None, params: QueryParameterType | None = None, cookies: CookiesType | None = None, proxies: ProxyType | None = None, verify: TLSVerifyType | None = None, cert: TLSClientCertType | None = None, allow_incoming_cookies: bool = True)[source]¶
A Requests asynchronous session.
Provides cookie persistence, connection-pooling, and configuration.
Basic Usage:
>>> import niquests >>> s = niquests.AsyncSession() >>> await s.get('https://httpbin.org/get') <Response HTTP/2 [200]>
Or as a context manager:
>>> async with niquests.AsyncSession() as s: ... await s.get('https://httpbin.org/get') <Response HTTP/2 [200]>
- allow_incoming_cookies: bool¶
Toggle whether cookies sent by the remote peer (
Set-Cookie) are extracted and merged into this Session. WhenFalse, every incoming cookie is ignored while outgoing cookies set by the user are still emitted.
- cert: TLSClientCertType | None¶
SSL client certificate default, if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
- cookies: RequestsCookieJar¶
A CookieJar containing all currently outstanding cookies set on this session. It is always a
RequestsCookieJar. A mapping or a nativecookielib.CookieJarpassed at construction time is silently coerced.
- async delete(url: str, *, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, auth: HttpAuthenticationType | AsyncHttpAuthenticationType | None = None, timeout: TimeoutType | None = None, allow_redirects: bool = True, proxies: ProxyType | None = None, hooks: AsyncHookType[PreparedRequest | Response] | None = None, verify: TLSVerifyType | None = None, stream: Literal[False] | Literal[None] = None, cert: TLSClientCertType | None = None, **kwargs: Any) Response[source]¶
- async delete(url: str, *, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, auth: HttpAuthenticationType | AsyncHttpAuthenticationType | None = None, timeout: TimeoutType | None = None, allow_redirects: bool = True, proxies: ProxyType | None = None, hooks: AsyncHookType[PreparedRequest | Response] | None = None, verify: TLSVerifyType | None = None, stream: Literal[True], cert: TLSClientCertType | None = None, **kwargs: Any) AsyncResponse
Sends a DELETE request. Returns
Responseobject.- Parameters:
url – URL for the new
Requestobject.params – (optional) Dictionary or bytes to be sent in the query string for the
Request.headers – (optional) Dictionary of HTTP Headers to send with the
Request.cookies – (optional) Dict or CookieJar object to send with the
Request.auth – (optional) Auth tuple or callable to enable Basic/Digest/Custom HTTP Auth.
timeout – (optional) How long to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
allow_redirects – (optional) Set to True by default.
proxies – (optional) Dictionary mapping protocol or protocol and hostname to the URL of the proxy.
hooks – (optional) Dictionary mapping hook name to one event or list of events, event must be callable.
stream – (optional) whether to immediately download the response content. Defaults to
False.verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. Defaults to
True. When set toFalse, requests will accept any TLS certificate presented by the server, and will ignore hostname mismatches and/or expired certificates, which will make your application vulnerable to man-in-the-middle (MitM) attacks. Setting verify toFalsemay be useful during local development or testing. It is also possible to put the certificates (directly) in a string or bytes.cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
- async gather(*responses: Response, max_fetch: int | None = None) None[source]¶
Call this method to make sure in-flight responses are retrieved efficiently. This is a no-op if multiplexed is set to False (which is the default value). Passing a limited set of responses will wait for given promises and discard others for later.
- Parameters:
max_fetch – Maximal number of response to be fetched before exiting the loop. By default, it waits until all pending (lazy) response are resolved.
- async get(url: str, *, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, auth: HttpAuthenticationType | AsyncHttpAuthenticationType | None = None, timeout: TimeoutType | None = None, allow_redirects: bool = True, proxies: ProxyType | None = None, hooks: AsyncHookType[PreparedRequest | Response] | None = None, verify: TLSVerifyType | None = None, stream: Literal[False] | None = None, cert: TLSClientCertType | None = None, **kwargs: Any) Response[source]¶
- async get(url: str, *, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, auth: HttpAuthenticationType | AsyncHttpAuthenticationType | None = None, timeout: TimeoutType | None = None, allow_redirects: bool = True, proxies: ProxyType | None = None, hooks: AsyncHookType[PreparedRequest | Response] | None = None, verify: TLSVerifyType | None = None, stream: Literal[True] = None, cert: TLSClientCertType | None = None, **kwargs: Any) AsyncResponse
Sends a GET request. Returns
Responseobject.- Parameters:
url – URL for the new
Requestobject.params – (optional) Dictionary or bytes to be sent in the query string for the
Request.headers – (optional) Dictionary of HTTP Headers to send with the
Request.cookies – (optional) Dict or CookieJar object to send with the
Request.auth – (optional) Auth tuple or callable to enable Basic/Digest/Custom HTTP Auth.
timeout – (optional) How long to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
allow_redirects – (optional) Set to True by default.
proxies – (optional) Dictionary mapping protocol or protocol and hostname to the URL of the proxy.
hooks – (optional) Dictionary mapping hook name to one event or list of events, event must be callable.
stream – (optional) whether to immediately download the response content. Defaults to
False.verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. Defaults to
True. When set toFalse, requests will accept any TLS certificate presented by the server, and will ignore hostname mismatches and/or expired certificates, which will make your application vulnerable to man-in-the-middle (MitM) attacks. Setting verify toFalsemay be useful during local development or testing. It is also possible to put the certificates (directly) in a string or bytes.cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
- get_adapter(url: str) AsyncBaseAdapter[source]¶
Returns the appropriate connection adapter for the given URL.
- async head(url: str, *, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, auth: HttpAuthenticationType | AsyncHttpAuthenticationType | None = None, timeout: TimeoutType | None = None, allow_redirects: bool = False, proxies: ProxyType | None = None, hooks: AsyncHookType[PreparedRequest | Response] | None = None, verify: TLSVerifyType | None = None, stream: Literal[False] | Literal[None] = None, cert: TLSClientCertType | None = None, **kwargs: Any) Response[source]¶
- async head(url: str, *, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, auth: HttpAuthenticationType | AsyncHttpAuthenticationType | None = None, timeout: TimeoutType | None = None, allow_redirects: bool = False, proxies: ProxyType | None = None, hooks: AsyncHookType[PreparedRequest | Response] | None = None, verify: TLSVerifyType | None = None, stream: Literal[True], cert: TLSClientCertType | None = None, **kwargs: Any) AsyncResponse
Sends a HEAD request. Returns
Responseobject.- Parameters:
url – URL for the new
Requestobject.params – (optional) Dictionary or bytes to be sent in the query string for the
Request.headers – (optional) Dictionary of HTTP Headers to send with the
Request.cookies – (optional) Dict or CookieJar object to send with the
Request.auth – (optional) Auth tuple or callable to enable Basic/Digest/Custom HTTP Auth.
timeout – (optional) How long to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
allow_redirects – (optional) Set to False by default.
proxies – (optional) Dictionary mapping protocol or protocol and hostname to the URL of the proxy.
hooks – (optional) Dictionary mapping hook name to one event or list of events, event must be callable.
stream – (optional) whether to immediately download the response content. Defaults to
False.verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. Defaults to
True. When set toFalse, requests will accept any TLS certificate presented by the server, and will ignore hostname mismatches and/or expired certificates, which will make your application vulnerable to man-in-the-middle (MitM) attacks. Setting verify toFalsemay be useful during local development or testing. It is also possible to put the certificates (directly) in a string or bytes.cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
- headers¶
A case-insensitive dictionary of headers to be sent on each
Requestsent from thisSession.
- hooks: AsyncHookType[PreparedRequest | Response | AsyncResponse]¶
Event-handling hooks.
- max_redirects: int¶
Maximum number of redirects allowed. If the request exceeds this limit, a
TooManyRedirectsexception is raised. This defaults to requests.models.DEFAULT_REDIRECT_LIMIT, which is 30.
- merge_environment_settings(url: str, proxies: Dict[str, str], stream: bool | None, verify: bool | str | bytes | PathLike[str] | None, cert: str | Tuple[str, str] | Tuple[str, str, str] | None) dict[str, Any]¶
Check the environment and merge it with some settings.
- mount(prefix: str, adapter: AsyncBaseAdapter) None[source]¶
Registers a connection adapter to a prefix.
Adapters are sorted in descending order by prefix length.
- multiplexed¶
Toggle to leverage multiplexed connection.
- async options(url: str, *, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, auth: HttpAuthenticationType | AsyncHttpAuthenticationType | None = None, timeout: TimeoutType | None = None, allow_redirects: bool = True, proxies: ProxyType | None = None, hooks: AsyncHookType[PreparedRequest | Response] | None = None, verify: TLSVerifyType | None = None, stream: Literal[False] | Literal[None] = None, cert: TLSClientCertType | None = None, **kwargs: Any) Response[source]¶
- async options(url: str, *, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, auth: HttpAuthenticationType | AsyncHttpAuthenticationType | None = None, timeout: TimeoutType | None = None, allow_redirects: bool = True, proxies: ProxyType | None = None, hooks: AsyncHookType[PreparedRequest | Response] | None = None, verify: TLSVerifyType | None = None, stream: Literal[True], cert: TLSClientCertType | None = None, **kwargs: Any) AsyncResponse
Sends a OPTIONS request. Returns
Responseobject.- Parameters:
url – URL for the new
Requestobject.params – (optional) Dictionary or bytes to be sent in the query string for the
Request.headers – (optional) Dictionary of HTTP Headers to send with the
Request.cookies – (optional) Dict or CookieJar object to send with the
Request.auth – (optional) Auth tuple or callable to enable Basic/Digest/Custom HTTP Auth.
timeout – (optional) How long to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
allow_redirects – (optional) Set to True by default.
proxies – (optional) Dictionary mapping protocol or protocol and hostname to the URL of the proxy.
hooks – (optional) Dictionary mapping hook name to one event or list of events, event must be callable.
stream – (optional) whether to immediately download the response content. Defaults to
False.verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. Defaults to
True. When set toFalse, requests will accept any TLS certificate presented by the server, and will ignore hostname mismatches and/or expired certificates, which will make your application vulnerable to man-in-the-middle (MitM) attacks. Setting verify toFalsemay be useful during local development or testing. It is also possible to put the certificates (directly) in a string or bytes.cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
- params: QueryParameterType¶
Dictionary of querystring data to attach to each
Request. The dictionary values may be lists for representing multivalued query parameters.
- async patch(url: str, data: BodyType | AsyncBodyType | None = None, *, json: Any | None = None, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, files: MultiPartFilesType | MultiPartFilesAltType | None = None, auth: HttpAuthenticationType | AsyncHttpAuthenticationType | None = None, timeout: TimeoutType | None = None, allow_redirects: bool = True, proxies: ProxyType | None = None, hooks: AsyncHookType[PreparedRequest | Response] | None = None, verify: TLSVerifyType | None = None, stream: Literal[False] | Literal[None] = None, cert: TLSClientCertType | None = None) Response[source]¶
- async patch(url: str, data: BodyType | AsyncBodyType | None = None, *, json: Any | None = None, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, files: MultiPartFilesType | MultiPartFilesAltType | None = None, auth: HttpAuthenticationType | AsyncHttpAuthenticationType | None = None, timeout: TimeoutType | None = None, allow_redirects: bool = True, proxies: ProxyType | None = None, hooks: AsyncHookType[PreparedRequest | Response] | None = None, verify: TLSVerifyType | None = None, stream: Literal[True], cert: TLSClientCertType | None = None) AsyncResponse
Sends a PATCH request. Returns
Responseobject.- Parameters:
url – URL for the new
Requestobject.params – (optional) Dictionary or bytes to be sent in the query string for the
Request.data – (optional) Dictionary, list of tuples, bytes, or file-like object to send in the body of the
Request.json – (optional) json to send in the body of the
Request.headers – (optional) Dictionary of HTTP Headers to send with the
Request.cookies – (optional) Dict or CookieJar object to send with the
Request.files – (optional) Dictionary of
'filename': file-like-objectsfor multipart encoding upload.auth – (optional) Auth tuple or callable to enable Basic/Digest/Custom HTTP Auth.
timeout – (optional) How long to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
allow_redirects – (optional) Set to True by default.
proxies – (optional) Dictionary mapping protocol or protocol and hostname to the URL of the proxy.
hooks – (optional) Dictionary mapping hook name to one event or list of events, event must be callable.
stream – (optional) whether to immediately download the response content. Defaults to
False.verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. Defaults to
True. When set toFalse, requests will accept any TLS certificate presented by the server, and will ignore hostname mismatches and/or expired certificates, which will make your application vulnerable to man-in-the-middle (MitM) attacks. Setting verify toFalsemay be useful during local development or testing. It is also possible to put the certificates (directly) in a string or bytes.cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
- async post(url: str, data: BodyType | AsyncBodyType | None = None, json: Any | None = None, *, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, files: MultiPartFilesType | MultiPartFilesAltType | None = None, auth: HttpAuthenticationType | AsyncHttpAuthenticationType | None = None, timeout: TimeoutType | None = None, allow_redirects: bool = True, proxies: ProxyType | None = None, hooks: AsyncHookType[PreparedRequest | Response] | None = None, verify: TLSVerifyType | None = None, stream: Literal[False] | Literal[None] = None, cert: TLSClientCertType | None = None) Response[source]¶
- async post(url: str, data: BodyType | AsyncBodyType | None = None, json: Any | None = None, *, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, files: MultiPartFilesType | MultiPartFilesAltType | None = None, auth: HttpAuthenticationType | AsyncHttpAuthenticationType | None = None, timeout: TimeoutType | None = None, allow_redirects: bool = True, proxies: ProxyType | None = None, hooks: AsyncHookType[PreparedRequest | Response] | None = None, verify: TLSVerifyType | None = None, stream: Literal[True], cert: TLSClientCertType | None = None) AsyncResponse
Sends a POST request. Returns
Responseobject.- Parameters:
url – URL for the new
Requestobject.params – (optional) Dictionary or bytes to be sent in the query string for the
Request.data – (optional) Dictionary, list of tuples, bytes, or file-like object to send in the body of the
Request.json – (optional) json to send in the body of the
Request.headers – (optional) Dictionary of HTTP Headers to send with the
Request.cookies – (optional) Dict or CookieJar object to send with the
Request.files – (optional) Dictionary of
'filename': file-like-objectsfor multipart encoding upload.auth – (optional) Auth tuple or callable to enable Basic/Digest/Custom HTTP Auth.
timeout – (optional) How long to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
allow_redirects – (optional) Set to True by default.
proxies – (optional) Dictionary mapping protocol or protocol and hostname to the URL of the proxy.
hooks – (optional) Dictionary mapping hook name to one event or list of events, event must be callable.
stream – (optional) whether to immediately download the response content. Defaults to
False.verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. Defaults to
True. When set toFalse, requests will accept any TLS certificate presented by the server, and will ignore hostname mismatches and/or expired certificates, which will make your application vulnerable to man-in-the-middle (MitM) attacks. Setting verify toFalsemay be useful during local development or testing. It is also possible to put the certificates (directly) in a string or bytes.cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
- prepare_request(request: Request) PreparedRequest¶
Constructs a
PreparedRequestfor transmission and returns it. ThePreparedRequesthas settings merged from theRequestinstance and those of theSession.- Parameters:
request –
Requestinstance to prepare with this session’s settings.
- proxies: ProxyType¶
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’}) to be used on each
Request.
- async put(url: str, data: BodyType | AsyncBodyType | None = None, *, json: Any | None = None, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, files: MultiPartFilesType | MultiPartFilesAltType | None = None, auth: HttpAuthenticationType | AsyncHttpAuthenticationType | None = None, timeout: TimeoutType | None = None, allow_redirects: bool = True, proxies: ProxyType | None = None, hooks: AsyncHookType[PreparedRequest | Response] | None = None, verify: TLSVerifyType | None = None, stream: Literal[False] | Literal[None] = None, cert: TLSClientCertType | None = None) Response[source]¶
- async put(url: str, data: BodyType | AsyncBodyType | None = None, *, json: Any | None = None, params: QueryParameterType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, files: MultiPartFilesType | MultiPartFilesAltType | None = None, auth: HttpAuthenticationType | AsyncHttpAuthenticationType | None = None, timeout: TimeoutType | None = None, allow_redirects: bool = True, proxies: ProxyType | None = None, hooks: AsyncHookType[PreparedRequest | Response] | None = None, verify: TLSVerifyType | None = None, stream: Literal[True], cert: TLSClientCertType | None = None) AsyncResponse
Sends a PUT request. Returns
Responseobject.- Parameters:
url – URL for the new
Requestobject.params – (optional) Dictionary or bytes to be sent in the query string for the
Request.data – (optional) Dictionary, list of tuples, bytes, or file-like object to send in the body of the
Request.json – (optional) json to send in the body of the
Request.headers – (optional) Dictionary of HTTP Headers to send with the
Request.cookies – (optional) Dict or CookieJar object to send with the
Request.files – (optional) Dictionary of
'filename': file-like-objectsfor multipart encoding upload.auth – (optional) Auth tuple or callable to enable Basic/Digest/Custom HTTP Auth.
timeout – (optional) How long to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
allow_redirects – (optional) Set to True by default.
proxies – (optional) Dictionary mapping protocol or protocol and hostname to the URL of the proxy.
hooks – (optional) Dictionary mapping hook name to one event or list of events, event must be callable.
stream – (optional) whether to immediately download the response content. Defaults to
False.verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. Defaults to
True. When set toFalse, requests will accept any TLS certificate presented by the server, and will ignore hostname mismatches and/or expired certificates, which will make your application vulnerable to man-in-the-middle (MitM) attacks. Setting verify toFalsemay be useful during local development or testing. It is also possible to put the certificates (directly) in a string or bytes.cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
- quic_cache_layer¶
A simple dict that allows us to persist which server support QUIC It is simply forwarded to urllib3.future that handle the caching logic. Can be any mutable mapping.
- rebuild_auth(prepared_request: PreparedRequest, response: Response) None¶
When being redirected we may want to strip authentication from the request to avoid leaking credentials. This method intelligently removes and reapplies authentication where possible to avoid credential loss.
- rebuild_method(prepared_request: PreparedRequest, response: Response)¶
When being redirected we may want to change the method of the request based on certain specs or browser behavior.
- rebuild_proxies(prepared_request: PreparedRequest, proxies: Dict[str, str] | None) Dict[str, str]¶
This method re-evaluates the proxy configuration by considering the environment variables. If we are redirected to a URL covered by NO_PROXY, we strip the proxy configuration. Otherwise, we set missing proxy keys for this URL (in case they were stripped by a previous redirect).
This method also replaces the Proxy-Authorization header where necessary.
- async request(method: HttpMethodType, url: str, params: QueryParameterType | None = None, data: BodyType | AsyncBodyType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, files: MultiPartFilesType | MultiPartFilesAltType | None = None, auth: HttpAuthenticationType | AsyncHttpAuthenticationType | None = None, timeout: TimeoutType | None = None, allow_redirects: bool = True, proxies: ProxyType | None = None, hooks: AsyncHookType[PreparedRequest | Response] | None = None, stream: Literal[False] | None = None, verify: TLSVerifyType | None = None, cert: TLSClientCertType | None = None, json: Any | None = None, override_scheme: str | None = None) Response[source]¶
- async request(method: HttpMethodType, url: str, params: QueryParameterType | None = None, data: BodyType | AsyncBodyType | None = None, headers: HeadersType | None = None, cookies: CookiesType | None = None, files: MultiPartFilesType | MultiPartFilesAltType | None = None, auth: HttpAuthenticationType | AsyncHttpAuthenticationType | None = None, timeout: TimeoutType | None = None, allow_redirects: bool = True, proxies: ProxyType | None = None, hooks: AsyncHookType[PreparedRequest | Response] | None = None, stream: Literal[True] = None, verify: TLSVerifyType | None = None, cert: TLSClientCertType | None = None, json: Any | None = None, override_scheme: str | None = None) AsyncResponse
Constructs a
Request, prepares it and sends it. ReturnsResponseobject.- Parameters:
method – method for the new
Requestobject.url – URL for the new
Requestobject.params – (optional) Dictionary or bytes to be sent in the query string for the
Request.data – (optional) Dictionary, list of tuples, bytes, or file-like object to send in the body of the
Request.json – (optional) json to send in the body of the
Request.headers – (optional) Dictionary of HTTP Headers to send with the
Request.cookies – (optional) Dict or CookieJar object to send with the
Request.files – (optional) Dictionary of
'filename': file-like-objectsfor multipart encoding upload.auth – (optional) Auth tuple or callable to enable Basic/Digest/Custom HTTP Auth.
timeout – (optional) How long to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
allow_redirects – (optional) Set to True by default.
proxies – (optional) Dictionary mapping protocol or protocol and hostname to the URL of the proxy.
hooks – (optional) Dictionary mapping hook name to one event or list of events, event must be callable.
stream – (optional) whether to immediately download the response content. Defaults to
False.verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. Defaults to
True. When set toFalse, requests will accept any TLS certificate presented by the server, and will ignore hostname mismatches and/or expired certificates, which will make your application vulnerable to man-in-the-middle (MitM) attacks. Setting verify toFalsemay be useful during local development or testing. It is also possible to put the certificates (directly) in a string or bytes.cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair, or (‘cert’, ‘key’, ‘key_password’).
override_scheme – (optional) Override the scheme of the final URL just before picking the adapter. Only applied when a
base_urlis set on the Session. Useful to target a different scheme (e.g.sseorws/wss, optionally with an implementation suffix likesse+unix) than the one carried bybase_urlwithout retyping the full URL.
- async resolve_redirects(resp: AsyncResponse, req: PreparedRequest, stream: bool = False, timeout: int | float | None = None, verify: bool | str | bytes | PathLike[str] = True, cert: str | Tuple[str, str] | Tuple[str, str, str] | None = None, proxies: Dict[str, str] | None = None, yield_requests: bool = False, yield_requests_trail: bool = False, **adapter_kwargs: Any) AsyncGenerator[AsyncResponse | PreparedRequest, None][source]¶
Receives a Response. Returns a generator of Responses or Requests.
- resolver: AsyncBaseResolver¶
Custom DNS resolution method.
- retries¶
Configured retries for current Session
- async send(request: PreparedRequest, *, stream: Literal[True], **kwargs: Any) AsyncResponse[source]¶
- async send(request: PreparedRequest, **kwargs: Any) Response
Send a given PreparedRequest.
- should_strip_auth(old_url: str, new_url: str) bool¶
Decide whether Authorization header should be removed when redirecting
- source_address¶
Bind to address/network adapter
- stream¶
Stream response content default.
- timeout¶
global timeout configuration
- trust_env: bool¶
Trust environment settings for proxy configuration, default authentication and similar.
- verify: TLSVerifyType¶
SSL Verification default. Defaults to True, requiring requests to verify the TLS certificate at the remote end. If verify is set to False, requests will accept any TLS certificate presented by the server, and will ignore hostname mismatches and/or expired certificates, which will make your application vulnerable to man-in-the-middle (MitM) attacks. Only set this to False for testing.
Lower-Level Classes¶
- class niquests.Request(method: HttpMethodType | None = None, url: str | None = None, headers: HeadersType | None = None, files: MultiPartFilesType | MultiPartFilesAltType | None = None, data: BodyType | AsyncBodyType | None = None, params: QueryParameterType | None = None, auth: HttpAuthenticationType | AsyncHttpAuthenticationType | None = None, cookies: CookiesType | None = None, hooks: HookType | AsyncHookType | None = None, json: Any | None = None, base_url: str | None = None, override_scheme: str | None = None)[source]¶
A user-created
Requestobject.Used to prepare a
PreparedRequest, which is sent to the server.- Parameters:
method – HTTP method to use.
url – URL to send.
headers – dictionary of headers to send.
files – dictionary of {filename: fileobject} files to multipart upload.
data – the body to attach to the request. If a dictionary or list of tuples
[(key, value)]is provided, form-encoding will take place.json – json for the body to attach to the request (if files or data is not specified).
params – URL parameters to append to the URL. If a dictionary or list of tuples
[(key, value)]is provided, form-encoding will take place.auth – Auth handler or (user, pass) tuple.
cookies – dictionary or CookieJar of cookies to attach to this request.
hooks – dictionary of callback hooks, for internal usage.
Usage:
>>> import niquests >>> req = niquests.Request('GET', 'https://httpbin.org/get') >>> req.prepare() <PreparedRequest [GET]>
- deregister_hook(event: str, hook: Callable[[Response | PreparedRequest], PreparedRequest | Response | None]) bool[source]¶
Deregister a previously registered hook. Returns True if the hook existed, False if not.
- prepare() PreparedRequest[source]¶
Constructs a
PreparedRequestfor transmission and returns it.
- register_hook(event: str, hook: Callable[[Response | PreparedRequest], PreparedRequest | Response | None] | list[Callable[[Response | PreparedRequest], PreparedRequest | Response | None]]) None[source]¶
Properly register a hook.
- class niquests.Response[source]¶
The
Responseobject, which contains a server’s response to an HTTP request.- close() None[source]¶
Releases the connection back to the pool. Once this method has been called the underlying
rawobject must not be accessed again.Note: Should not normally need to be called explicitly.
- property conn_info: ConnectionInfo | None¶
Provide context to the established connection that was used to perform the request.
- cookies: RequestsCookieJar¶
A CookieJar of Cookies the server sent back.
- download_progress: TransferProgress | None¶
download progress if any. this property won’t be set unless using stream=True + iter_content + content-length set!
- elapsed: datetime.timedelta¶
The amount of time elapsed between sending the request and the arrival of the response (as a timedelta). This property specifically measures the time taken between sending the first byte of the request and finishing parsing the headers. It is therefore unaffected by consuming the response content or the value of the
streamkeyword argument.
- property extension: None | RawExtensionFromHTTP | ServerSideEventExtensionFromHTTP | AsyncRawExtensionFromHTTP | AsyncServerSideEventExtensionFromHTTP¶
Access the I/O after an Upgraded connection. E.g. for a WebSocket handler. If the server opened a WebSocket, then the extension will be of type WebSocketExtensionFromHTTP. Otherwise, on unknown protocol, it will be RawExtensionFromHTTP. Warning: If you stand in an async inclosure, the type will be AsyncWebSocketExtensionFromHTTP or AsyncRawExtensionFromHTTP.
- headers: CaseInsensitiveDict[str, str]¶
Case-insensitive Dictionary of Response Headers. For example,
headers['content-encoding']will return the value of a'Content-Encoding'response header.
- history: list[Response]¶
A list of
Responseobjects from the history of the Request. Any redirect responses will end up here. The list is sorted from the oldest to the most recent request.
- property http_version: int | None¶
Shortcut to negotiated HTTP version protocol. See HttpVersion from urllib3.future. It returns an integer. It is as follows:
11 for HTTP/1.1
20 for HTTP/2
30 for HTTP/3
- property is_permanent_redirect: bool¶
True if this Response one of the permanent versions of redirect.
- property is_redirect: bool¶
True if this Response is a well-formed HTTP redirect that could have been processed automatically (by
Session.resolve_redirects).
- iter_content(chunk_size: int | None = -1, decode_unicode: Literal[False] = False) Generator[bytes, None, None][source]¶
- iter_content(chunk_size: int | None = -1, *, decode_unicode: Literal[True]) Generator[str, None, None]
Iterates over the response data. When stream=True is set on the request, this avoids reading the content at once into memory for large responses. The chunk size is the number of bytes it should read into memory. This is not necessarily the length of each item returned as decoding can take place.
chunk_size must be of type int or None. A value of None will function differently depending on the value of stream. stream=True will read data as it arrives in whatever size the chunks are received. If stream=False, data is returned as a single chunk.
If decode_unicode is True, content will be decoded using the best available encoding based on the response.
We recommend setting chunk_size=-1 (default) to receive chunk as they come for performance purposes.
- iter_lines(chunk_size: int = -1, decode_unicode: Literal[False] = False, delimiter: str | bytes | None = None) Generator[bytes, None, None][source]¶
- iter_lines(chunk_size: int = -1, *, decode_unicode: Literal[True], delimiter: str | bytes | None = None) Generator[str, None, None]
Iterates over the response data, one line at a time. When stream=True is set on the request, this avoids reading the content at once into memory for large responses.
Note
This method is not reentrant safe.
- iter_raw(chunk_size: int = -1) Generator[bytes, None, None][source]¶
Iterates over the response raw and possibly compressed data. When stream=True is set on the request, this avoids reading the content at once into memory for large responses. The chunk size is the number of bytes it should read into memory. This is not necessarily the length of each item returned as decoding can take place.
chunk_size must be of type int or None. A value of None will function differently depending on the value of stream. stream=True will read data as it arrives in whatever size the chunks are received. If stream=False, data is returned as a single chunk.
If decode_unicode is True, content will be decoded using the best available encoding based on the response.
We recommend setting chunk_size=-1 (default) to receive chunk as they come for performance purposes.
- json(**kwargs: Any) Any[source]¶
Returns the json-encoded content of a response, if any.
- Parameters:
**kwargs – Optional arguments that
json.loadstakes.- Raises:
requests.exceptions.JSONDecodeError – If the response body does not contain valid json or if content-type is not about json.
- property lazy: bool¶
Determine if response isn’t received and is actually a placeholder. Only significant if request was sent through a multiplexed connection.
- property links¶
Returns the parsed header links of the response, if any.
- property next: PreparedRequest | None¶
Returns a PreparedRequest for the next request in a redirect chain, if there is one.
- property oheaders: Headers¶
Retrieve headers as they were objects. There is no need to parse headers yourself. A simple Mapping isn’t enough to quickly access and analyze them. Read the full documentation of object-oriented headers at https://jawah.github.io/kiss-headers/ >>> import niquests >>> r = niquests.get(”https://google.com”) >>> r.oheaders.content_type.charset ‘ISO-8859-1’ >>> r.oheaders.content_type ‘text/html; charset=ISO-8859-1’ >>> r.oheaders.content_type[0] ‘text/html’
- property ok: bool¶
Returns True if
status_codeis less than 400, False if not.This attribute checks if the status code of the response is between 400 and 600 to see if there was a client error or a server error. If the status code is between 200 and 400, this will return True. This is not a check to see if the response code is
200 OK.
- property otrailers: Headers¶
Retrieve trailers as they were objects. There is no need to parse headers yourself.
- raw: BaseHTTPResponse | None¶
File-like object representation of response (for advanced usage). Use of
rawrequires thatstream=Truebe set on the request. This requirement does not apply for use internally to Requests.
- request: PreparedRequest | None¶
The
PreparedRequestobject to which this is a response.
- property text: str | None¶
Content of the response, in unicode.
If Response.encoding is None, encoding will be guessed using
charset_normalizer.The encoding of the response content is determined based solely on HTTP headers, following RFC 2616 to the letter. If you can take advantage of non-HTTP knowledge to make a better guess at the encoding, you should set
r.encodingappropriately before accessing this property.
- class niquests.AsyncResponse[source]¶
- async close() None[source]¶
Releases the connection back to the pool. Once this method has been called the underlying
rawobject must not be accessed again.Note: Should not normally need to be called explicitly.
- property conn_info: ConnectionInfo | None¶
Provide context to the established connection that was used to perform the request.
- cookies: RequestsCookieJar¶
A CookieJar of Cookies the server sent back.
- download_progress: TransferProgress | None¶
download progress if any. this property won’t be set unless using stream=True + iter_content + content-length set!
- elapsed: datetime.timedelta¶
The amount of time elapsed between sending the request and the arrival of the response (as a timedelta). This property specifically measures the time taken between sending the first byte of the request and finishing parsing the headers. It is therefore unaffected by consuming the response content or the value of the
streamkeyword argument.
- property extension: None | AsyncRawExtensionFromHTTP¶
Access the I/O after an Upgraded connection. E.g. for a WebSocket handler. If the server opened a WebSocket, then the extension will be of type AsyncWebSocketExtensionFromHTTP. Otherwise, on unknown protocol, it will be AsyncRawExtensionFromHTTP.
- headers: CaseInsensitiveDict[str, str]¶
Case-insensitive Dictionary of Response Headers. For example,
headers['content-encoding']will return the value of a'Content-Encoding'response header.
- history: list[Response]¶
A list of
Responseobjects from the history of the Request. Any redirect responses will end up here. The list is sorted from the oldest to the most recent request.
- property http_version: int | None¶
Shortcut to negotiated HTTP version protocol. See HttpVersion from urllib3.future. It returns an integer. It is as follows:
11 for HTTP/1.1
20 for HTTP/2
30 for HTTP/3
- property is_permanent_redirect: bool¶
True if this Response one of the permanent versions of redirect.
- property is_redirect: bool¶
True if this Response is a well-formed HTTP redirect that could have been processed automatically (by
Session.resolve_redirects).
- async iter_content(chunk_size: int | None = -1, decode_unicode: Literal[False] = False) AsyncGenerator[bytes, None][source]¶
- async iter_content(chunk_size: int | None = -1, *, decode_unicode: Literal[True]) AsyncGenerator[str, None]
Iterates over the response data. When stream=True is set on the request, this avoids reading the content at once into memory for large responses. The chunk size is the number of bytes it should read into memory. This is not necessarily the length of each item returned as decoding can take place.
chunk_size must be of type int or None. A value of None will function differently depending on the value of stream. stream=True will read data as it arrives in whatever size the chunks are received. If stream=False, data is returned as a single chunk.
If decode_unicode is True, content will be decoded using the best available encoding based on the response.
We recommend setting chunk_size=-1 (default) to receive chunk as they come for performance purposes.
- async iter_lines(chunk_size: int = -1, decode_unicode: Literal[False] = False, delimiter: str | bytes | None = None) AsyncGenerator[bytes, None][source]¶
- async iter_lines(chunk_size: int = -1, *, decode_unicode: Literal[True], delimiter: str | bytes | None = None) AsyncGenerator[str, None]
Iterates over the response data, one line at a time. When stream=True is set on the request, this avoids reading the content at once into memory for large responses.
Note
This method is not reentrant safe.
- async iter_raw(chunk_size: int = -1) AsyncGenerator[bytes, None][source]¶
Iterates over the response raw and possibly compressed data. When stream=True is set on the request, this avoids reading the content at once into memory for large responses. The chunk size is the number of bytes it should read into memory. This is not necessarily the length of each item returned as decoding can take place.
chunk_size must be of type int or None. A value of None will function differently depending on the value of stream. stream=True will read data as it arrives in whatever size the chunks are received. If stream=False, data is returned as a single chunk.
If decode_unicode is True, content will be decoded using the best available encoding based on the response.
We recommend setting chunk_size=-1 (default) to receive chunk as they come for performance purposes.
- async json(**kwargs: Any) Any[source]¶
Returns the json-encoded content of a response, if any.
- Parameters:
**kwargs – Optional arguments that
json.loadstakes.- Raises:
requests.exceptions.JSONDecodeError – If the response body does not contain valid json or if content-type is not about json.
- property lazy: bool¶
Determine if response isn’t received and is actually a placeholder. Only significant if request was sent through a multiplexed connection.
- property links¶
Returns the parsed header links of the response, if any.
- property next: PreparedRequest | None¶
Returns a PreparedRequest for the next request in a redirect chain, if there is one.
- property oheaders: Headers¶
Retrieve headers as they were objects. There is no need to parse headers yourself. A simple Mapping isn’t enough to quickly access and analyze them. Read the full documentation of object-oriented headers at https://jawah.github.io/kiss-headers/ >>> import niquests >>> r = niquests.get(”https://google.com”) >>> r.oheaders.content_type.charset ‘ISO-8859-1’ >>> r.oheaders.content_type ‘text/html; charset=ISO-8859-1’ >>> r.oheaders.content_type[0] ‘text/html’
- property ok: bool¶
Returns True if
status_codeis less than 400, False if not.This attribute checks if the status code of the response is between 400 and 600 to see if there was a client error or a server error. If the status code is between 200 and 400, this will return True. This is not a check to see if the response code is
200 OK.
- property otrailers: Headers¶
Retrieve trailers as they were objects. There is no need to parse headers yourself.
- raise_for_status() AsyncResponse[source]¶
Raises
HTTPError, if one occurred.
- raw: BaseAsyncHTTPResponse | None¶
File-like object representation of response (for advanced usage). Use of
rawrequires thatstream=Truebe set on the request. This requirement does not apply for use internally to Requests.
- request: PreparedRequest | None¶
The
PreparedRequestobject to which this is a response.
- property text: str | None¶
Content of the response, in unicode.
If Response.encoding is None, encoding will be guessed using
charset_normalizer.The encoding of the response content is determined based solely on HTTP headers, following RFC 2616 to the letter. If you can take advantage of non-HTTP knowledge to make a better guess at the encoding, you should set
r.encodingappropriately before accessing this property.
Warning
AsyncResponse are only to be expected in async mode when you specify stream=True. Otherwise expect the typical Response instance.
Lower-Lower-Level Classes¶
- class niquests.PreparedRequest[source]¶
The fully mutable
PreparedRequestobject, containing the exact bytes that will be sent to the server.Instances are generated from a
Requestobject, and should not be instantiated manually; doing so may produce undesirable effects.Usage:
>>> import niquests >>> req = niquests.Request('GET', 'https://httpbin.org/get') >>> r = req.prepare() >>> r <PreparedRequest [GET]> >>> s = niquests.Session() >>> s.send(r) <Response HTTP/2 [200]>
- deregister_hook(event: str, hook) bool[source]¶
Deregister a previously registered hook. Returns True if the hook existed, False if not.
- hooks: HookType[Response | PreparedRequest]¶
dictionary of callback hooks, for internal usage.
- prepare(method: HttpMethodType | None = None, url: str | None = None, headers: HeadersType | None = None, files: MultiPartFilesType | MultiPartFilesAltType | None = None, data: BodyType | AsyncBodyType | None = None, params: QueryParameterType | None = None, auth: HttpAuthenticationType | AsyncHttpAuthenticationType | None = None, cookies: CookiesType | None = None, hooks: HookType[Response | PreparedRequest] | None = None, json: Any | None = None, base_url: str | None = None, override_scheme: str | None = None) None[source]¶
Prepares the entire request with the given parameters.
- prepare_auth(auth: Tuple[str | bytes, str | bytes] | str | AuthBase | Callable[[PreparedRequest], PreparedRequest] | AsyncAuthBase | Callable[[PreparedRequest], Awaitable[PreparedRequest]] | None, url: str = '') None[source]¶
Prepares the given HTTP auth data.
- prepare_body(data: str | bytes | bytearray | IO[bytes] | IO[str] | List[Tuple[str, str]] | Dict[str, str | List[str]] | Iterable[bytes] | Iterable[str] | AsyncIterable[bytes] | AsyncIterable[str] | None, files: List[Tuple[str, str | bytes | bytearray | IO[str] | IO[bytes] | Tuple[str, str | bytes | bytearray | IO[str] | IO[bytes]] | Tuple[str, str | bytes | bytearray | IO[str] | IO[bytes], str] | Tuple[str, str | bytes | bytearray | IO[str] | IO[bytes], str, MutableMapping[str | bytes, str | bytes] | MutableMapping[str, str] | MutableMapping[bytes, bytes] | CaseInsensitiveDict | List[Tuple[str | bytes, str | bytes]] | Headers]]] | Dict[str, str | bytes | bytearray | IO[str] | IO[bytes] | Tuple[str, str | bytes | bytearray | IO[str] | IO[bytes]] | Tuple[str, str | bytes | bytearray | IO[str] | IO[bytes], str] | Tuple[str, str | bytes | bytearray | IO[str] | IO[bytes], str, MutableMapping[str | bytes, str | bytes] | MutableMapping[str, str] | MutableMapping[bytes, bytes] | CaseInsensitiveDict | List[Tuple[str | bytes, str | bytes]] | Headers]] | None, json: Any | None = None) None[source]¶
Prepares the given HTTP body data.
- prepare_content_length(body: str | bytes | bytearray | IO[bytes] | IO[str] | List[Tuple[str, str]] | Dict[str, str | List[str]] | Iterable[bytes] | Iterable[str] | AsyncIterable[bytes] | AsyncIterable[str] | None) None[source]¶
Prepare Content-Length header based on request method and body
- prepare_cookies(cookies: MutableMapping[str, str] | CookieJar | None) None[source]¶
Prepares the given HTTP cookie data.
This function eventually generates a
Cookieheader from the given cookies using cookielib. Due to cookielib’s design, the header will not be regenerated if it already exists, meaning this function can only be called once for the life of thePreparedRequestobject. Any subsequent calls toprepare_cookieswill have no actual effect, unless the “Cookie” header is removed beforehand.
- prepare_headers(headers: MutableMapping[str | bytes, str | bytes] | MutableMapping[str, str] | MutableMapping[bytes, bytes] | CaseInsensitiveDict | List[Tuple[str | bytes, str | bytes]] | Headers | None) None[source]¶
Prepares the given HTTP headers.
- class niquests.adapters.BaseAdapter[source]¶
The Base Transport Adapter
- gather(*responses: Response, max_fetch: int | None = None) None[source]¶
Load responses that are still ‘lazy’. This method is meant for a multiplexed connection. Implementation is not mandatory.
- Parameters:
max_fetch – Maximal number of response to be fetched before exiting the loop. By default, it waits until all pending (lazy) response are resolved.
- send(request: PreparedRequest, stream: bool = False, timeout: int | float | None = None, verify: bool | str | bytes | PathLike[str] = True, cert: str | Tuple[str, str] | Tuple[str, str, str] | None = None, proxies: Dict[str, str] | None = None, on_post_connection: Callable[[Any], None] | None = None, on_upload_body: Callable[[int, int | None, bool, bool], None] | None = None, on_early_response: Callable[[Response], None] | None = None, multiplexed: bool = False) Response[source]¶
Sends PreparedRequest object. Returns Response object.
- Parameters:
request – The
PreparedRequestbeing sent.stream – (optional) Whether to stream the request content.
timeout – (optional) How long to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. It is also possible to put the certificates (directly) in a string or bytes.
cert – (optional) Any user-provided SSL certificate to be trusted.
proxies – (optional) The proxies dictionary to apply to the request.
on_post_connection – (optional) A callable that should be invoked just after the pool mgr picked up a live connection. The function is expected to takes one positional argument and return nothing.
multiplexed – Determine if we should leverage multiplexed connection.
- class niquests.adapters.HTTPAdapter(pool_connections: int = 10, pool_maxsize: int = 10, max_retries: bool | int | ~urllib3.util.retry.Retry = 0, pool_block: bool = False, *, quic_cache_layer: ~typing.MutableMapping[~typing.Tuple[str, int], ~typing.Tuple[str, int] | None] | None = None, disable_http1: bool = False, disable_http2: bool = False, disable_http3: bool = False, max_in_flight_multiplexed: int | None = None, resolver: str | ~urllib3.contrib.resolver.factories.ResolverDescription | ~urllib3.contrib.resolver.protocols.BaseResolver | ~typing.List[str] | ~typing.List[~urllib3.contrib.resolver.factories.ResolverDescription] | None = None, source_address: tuple[str, int] | None = None, disable_ipv4: bool = False, disable_ipv6: bool = False, happy_eyeballs: bool | int = False, keepalive_delay: float | int | None = 600.0, keepalive_idle_window: float | int | None = 60.0, revocation_configuration: ~niquests.extensions.revocation.RevocationConfiguration | None = RevocationConfiguration(strategy=<RevocationStrategy.PREFER_OCSP: 0>, strict_mode=False), allow_incoming_cookies: bool = True)[source]¶
The built-in HTTP Adapter for urllib3.future.
Provides a general-case interface for Requests sessions to contact HTTP and HTTPS urls by implementing the Transport Adapter interface. This class will usually be created by the
Sessionclass under the covers.- Parameters:
pool_connections – The number of urllib3 connection pools to cache.
pool_maxsize – The maximum number of connections to save in the pool.
max_retries – The maximum number of retries each connection should attempt. Note, this applies only to failed DNS lookups, socket connections and connection timeouts, never to requests where data has made it to the server. By default, Requests does not retry failed connections. If you need granular control over the conditions under which we retry a request, import urllib3’s
Retryclass and pass that instead.pool_block – Whether the connection pool should block for connections.
Usage:
>>> import niquests >>> s = niquests.Session() >>> a = niquests.adapters.HTTPAdapter(max_retries=3) >>> s.mount('http://', a)
- add_headers(request: PreparedRequest, **kwargs)[source]¶
Add any headers needed by the connection. As of v2.0 this does nothing by default, but is left for overriding by users that subclass the
HTTPAdapter.This should not be called from user code, and is only exposed for use when subclassing the
HTTPAdapter.- Parameters:
request – The
PreparedRequestto add headers to.kwargs – The keyword arguments from the call to send().
- build_response(req: PreparedRequest, resp: HTTPResponse | ResponsePromise) Response[source]¶
Builds a
Responseobject from a urllib3 response. This should not be called from user code, and is only exposed for use when subclassing theHTTPAdapter- Parameters:
req – The
PreparedRequestused to generate the response.resp – The urllib3 response or promise object.
- cert_verify(conn: HTTPSConnectionPool, url: str, verify: bool | str | bytes | PathLike[str] | None, cert: str | Tuple[str, str] | Tuple[str, str, str] | None) None[source]¶
Verify a SSL certificate. This method should not be called from user code, and is only exposed for use when subclassing the
HTTPAdapter.- Parameters:
conn – The urllib3 connection object associated with the cert.
url – The requested URL.
verify – Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. It is also possible to put the certificates (directly) in a string or bytes.
cert – The SSL certificate to verify.
- close() None[source]¶
Disposes of any internal state.
Currently, this closes the PoolManager and any active ProxyManager, which closes any pooled connections.
- gather(*responses: Response, max_fetch: int | None = None) None[source]¶
Load responses that are still ‘lazy’. This method is meant for a multiplexed connection. Implementation is not mandatory.
- Parameters:
max_fetch – Maximal number of response to be fetched before exiting the loop. By default, it waits until all pending (lazy) response are resolved.
- get_connection(url: str, proxies: Dict[str, str] | None = None) HTTPConnectionPool | HTTPSConnectionPool[source]¶
Returns a urllib3 connection for the given URL. This should not be called from user code, and is only exposed for use when subclassing the
HTTPAdapter.- Parameters:
url – The URL to connect to.
proxies – (optional) A Requests-style dictionary of proxies used on this request.
- init_poolmanager(connections: int, maxsize: int, block: bool = False, quic_cache_layer: MutableMapping[Tuple[str, int], Tuple[str, int] | None] | None = None, **pool_kwargs: Any) None[source]¶
Initializes a urllib3 PoolManager.
This method should not be called from user code, and is only exposed for use when subclassing the
HTTPAdapter.- Parameters:
connections – The number of urllib3 connection pools to cache.
maxsize – The maximum number of connections to save in the pool.
block – Block when no free connections are available.
quic_cache_layer – Caching mutable mapping to remember QUIC capable endpoint.
pool_kwargs – Extra keyword arguments used to initialize the Pool Manager.
- proxy_headers(proxy: str) dict[str, str][source]¶
Returns a dictionary of the headers to add to any request sent through a proxy. This works with urllib3 magic to ensure that they are correctly sent to the proxy, rather than in a tunnelled request if CONNECT is being used.
This should not be called from user code, and is only exposed for use when subclassing the
HTTPAdapter.- Parameters:
proxy – The url of the proxy being used for this request.
- proxy_manager_for(proxy: str, **proxy_kwargs: Any) ProxyManager[source]¶
Return urllib3 ProxyManager for the given proxy.
This method should not be called from user code, and is only exposed for use when subclassing the
HTTPAdapter.- Parameters:
proxy – The proxy to return a urllib3 ProxyManager for.
proxy_kwargs – Extra keyword arguments used to configure the Proxy Manager.
- Returns:
ProxyManager
- request_url(request: PreparedRequest, proxies: Dict[str, str] | None) str[source]¶
Obtain the url to use when making the final request.
If the message is being sent through a HTTP proxy, the full URL has to be used. Otherwise, we should only use the path portion of the URL.
This should not be called from user code, and is only exposed for use when subclassing the
HTTPAdapter.- Parameters:
request – The
PreparedRequestbeing sent.proxies – A dictionary of schemes or schemes and hosts to proxy URLs.
- send(request: PreparedRequest, stream: bool = False, timeout: int | float | Timeout | None = None, verify: bool | str | bytes | PathLike[str] = True, cert: str | Tuple[str, str] | Tuple[str, str, str] | None = None, proxies: Dict[str, str] | None = None, on_post_connection: Callable[[Any], None] | None = None, on_upload_body: Callable[[int, int | None, bool, bool], None] | None = None, on_early_response: Callable[[Response], None] | None = None, multiplexed: bool = False) Response[source]¶
Sends PreparedRequest object. Returns Response object.
- Parameters:
request – The
PreparedRequestbeing sent.stream – (optional) Whether to stream the request content.
timeout – (optional) How long to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. Defaults to
True. It is also possible to put the certificates (directly) in a string or bytes.cert – (optional) Any user-provided SSL certificate to be trusted.
proxies – (optional) The proxies dictionary to apply to the request.
on_post_connection – (optional) A callable that contain a single positional argument for newly acquired connection. Useful to check acquired connection information.
multiplexed – Determine if request shall be transmitted by leveraging the multiplexed aspect of the protocol if available. Return a lazy instance of Response pending its retrieval.
- class niquests.adapters.AsyncBaseAdapter[source]¶
The Base Transport Adapter
- async gather(*responses: Response, max_fetch: int | None = None) None[source]¶
Load responses that are still ‘lazy’. This method is meant for a multiplexed connection. Implementation is not mandatory.
- Parameters:
max_fetch – Maximal number of response to be fetched before exiting the loop. By default, it waits until all pending (lazy) response are resolved.
- async send(request: PreparedRequest, stream: bool = False, timeout: int | float | None = None, verify: bool | str | bytes | PathLike[str] = True, cert: str | Tuple[str, str] | Tuple[str, str, str] | None = None, proxies: Dict[str, str] | None = None, on_post_connection: Callable[[Any], Awaitable[None]] | None = None, on_upload_body: Callable[[int, int | None, bool, bool], Awaitable[None]] | None = None, on_early_response: Callable[[Response], Awaitable[None]] | None = None, multiplexed: bool = False) AsyncResponse[source]¶
Sends PreparedRequest object. Returns Response object.
- Parameters:
request – The
PreparedRequestbeing sent.stream – (optional) Whether to stream the request content.
timeout – (optional) How long to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. It is also possible to put the certificates (directly) in a string or bytes.
cert – (optional) Any user-provided SSL certificate to be trusted.
proxies – (optional) The proxies dictionary to apply to the request.
on_post_connection – (optional) A callable that should be invoked just after the pool mgr picked up a live connection. The function is expected to takes one positional argument and return nothing.
multiplexed – Determine if we should leverage multiplexed connection.
- class niquests.adapters.AsyncHTTPAdapter(pool_connections: int = 10, pool_maxsize: int = 10, max_retries: bool | int | ~urllib3.util.retry.Retry = 0, pool_block: bool = False, *, quic_cache_layer: ~typing.MutableMapping[~typing.Tuple[str, int], ~typing.Tuple[str, int] | None] | None = None, disable_http1: bool = False, disable_http2: bool = False, disable_http3: bool = False, max_in_flight_multiplexed: int | None = None, resolver: str | ~urllib3.contrib.resolver._async.factories.AsyncResolverDescription | ~urllib3.contrib.resolver._async.protocols.AsyncBaseResolver | ~typing.List[str] | ~typing.List[~urllib3.contrib.resolver._async.factories.AsyncResolverDescription] | None = None, source_address: tuple[str, int] | None = None, disable_ipv4: bool = False, disable_ipv6: bool = False, happy_eyeballs: bool | int = False, keepalive_delay: float | int | None = 600.0, keepalive_idle_window: float | int | None = 60.0, revocation_configuration: ~niquests.extensions.revocation.RevocationConfiguration | None = RevocationConfiguration(strategy=<RevocationStrategy.PREFER_OCSP: 0>, strict_mode=False), allow_incoming_cookies: bool = True)[source]¶
The built-in HTTP Adapter for urllib3.future asynchronous part.
Provides a general-case interface for Requests sessions to contact HTTP and HTTPS urls by implementing the Transport Adapter interface. This class will usually be created by the
Sessionclass under the covers.- Parameters:
pool_connections – The number of urllib3 connection pools to cache.
pool_maxsize – The maximum number of connections to save in the pool.
max_retries – The maximum number of retries each connection should attempt. Note, this applies only to failed DNS lookups, socket connections and connection timeouts, never to requests where data has made it to the server. By default, Requests does not retry failed connections. If you need granular control over the conditions under which we retry a request, import urllib3’s
Retryclass and pass that instead.pool_block – Whether the connection pool should block for connections.
Usage:
>>> import niquests >>> s = niquests.AsyncSession() >>> a = niquests.adapters.AsyncHTTPAdapter(max_retries=3) >>> s.mount('http://', a)
- add_headers(request: PreparedRequest, **kwargs)[source]¶
Add any headers needed by the connection. As of v2.0 this does nothing by default, but is left for overriding by users that subclass the
HTTPAdapter.This should not be called from user code, and is only exposed for use when subclassing the
HTTPAdapter.- Parameters:
request – The
PreparedRequestto add headers to.kwargs – The keyword arguments from the call to send().
- build_response(req: PreparedRequest, resp: AsyncHTTPResponse | ResponsePromise) AsyncResponse[source]¶
Builds a
Responseobject from a urllib3 response. This should not be called from user code, and is only exposed for use when subclassing theHTTPAdapter- Parameters:
req – The
PreparedRequestused to generate the response.resp – The urllib3 response or promise object.
- cert_verify(conn: AsyncHTTPSConnectionPool, url: str, verify: bool | str | bytes | PathLike[str] | None, cert: str | Tuple[str, str] | Tuple[str, str, str] | None) bool[source]¶
Verify a SSL certificate. This method should not be called from user code, and is only exposed for use when subclassing the
HTTPAdapter.- Parameters:
conn – The urllib3 connection object associated with the cert.
url – The requested URL.
verify – Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. It is also possible to put the certificates (directly) in a string or bytes.
cert – The SSL certificate to verify.
- async close() None[source]¶
Disposes of any internal state.
Currently, this closes the PoolManager and any active ProxyManager, which closes any pooled connections.
- async gather(*responses: Response | AsyncResponse, max_fetch: int | None = None) None[source]¶
Load responses that are still ‘lazy’. This method is meant for a multiplexed connection. Implementation is not mandatory.
- Parameters:
max_fetch – Maximal number of response to be fetched before exiting the loop. By default, it waits until all pending (lazy) response are resolved.
- async get_connection(url: str, proxies: Dict[str, str] | None = None) AsyncHTTPConnectionPool | AsyncHTTPSConnectionPool[source]¶
Returns a urllib3 connection for the given URL. This should not be called from user code, and is only exposed for use when subclassing the
HTTPAdapter.- Parameters:
url – The URL to connect to.
proxies – (optional) A Requests-style dictionary of proxies used on this request.
- init_poolmanager(connections: int, maxsize: int, block: bool = False, quic_cache_layer: MutableMapping[Tuple[str, int], Tuple[str, int] | None] | None = None, **pool_kwargs: Any) None[source]¶
Initializes a urllib3 AsyncPoolManager.
This method should not be called from user code, and is only exposed for use when subclassing the
HTTPAdapter.- Parameters:
connections – The number of urllib3 connection pools to cache.
maxsize – The maximum number of connections to save in the pool.
block – Block when no free connections are available.
quic_cache_layer – Caching mutable mapping to remember QUIC capable endpoint.
pool_kwargs – Extra keyword arguments used to initialize the Pool Manager.
- proxy_headers(proxy: str) dict[str, str][source]¶
Returns a dictionary of the headers to add to any request sent through a proxy. This works with urllib3 magic to ensure that they are correctly sent to the proxy, rather than in a tunnelled request if CONNECT is being used.
This should not be called from user code, and is only exposed for use when subclassing the
HTTPAdapter.- Parameters:
proxy – The url of the proxy being used for this request.
- proxy_manager_for(proxy: str, **proxy_kwargs: Any) AsyncProxyManager[source]¶
Return urllib3 AsyncProxyManager for the given proxy.
This method should not be called from user code, and is only exposed for use when subclassing the
HTTPAdapter.- Parameters:
proxy – The proxy to return a urllib3 ProxyManager for.
proxy_kwargs – Extra keyword arguments used to configure the Proxy Manager.
- Returns:
ProxyManager
- request_url(request: PreparedRequest, proxies: Dict[str, str] | None) str[source]¶
Obtain the url to use when making the final request.
If the message is being sent through a HTTP proxy, the full URL has to be used. Otherwise, we should only use the path portion of the URL.
This should not be called from user code, and is only exposed for use when subclassing the
HTTPAdapter.- Parameters:
request – The
PreparedRequestbeing sent.proxies – A dictionary of schemes or schemes and hosts to proxy URLs.
- async send(request: PreparedRequest, stream: bool = False, timeout: int | float | Timeout | None = None, verify: bool | str | bytes | PathLike[str] = True, cert: str | Tuple[str, str] | Tuple[str, str, str] | None = None, proxies: Dict[str, str] | None = None, on_post_connection: Callable[[Any], Awaitable[None]] | None = None, on_upload_body: Callable[[int, int | None, bool, bool], Awaitable[None]] | None = None, on_early_response: Callable[[Response], Awaitable[None]] | None = None, multiplexed: bool = False) AsyncResponse[source]¶
Sends PreparedRequest object. Returns Response object.
- Parameters:
request – The
PreparedRequestbeing sent.stream – (optional) Whether to stream the request content.
timeout – (optional) How long to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
verify – (optional) Either a boolean, in which case it controls whether we verify the server’s TLS certificate, or a path passed as a string or os.Pathlike object, in which case it must be a path to a CA bundle to use. It is also possible to put the certificates (directly) in a string or bytes.
cert – (optional) Any user-provided SSL certificate to be trusted.
proxies – (optional) The proxies dictionary to apply to the request.
on_post_connection – (optional) A callable that contain a single positional argument for newly acquired connection. Useful to check acquired connection information.
multiplexed – Determine if request shall be transmitted by leveraging the multiplexed aspect of the protocol if available. Return a lazy instance of Response pending its retrieval.
Hooks and Middleware¶
- class niquests.hooks.LifeCycleHook[source]
A sync-only middleware to be used in your request/response lifecycles.
- early_response(response: Response, **kwargs: Any) None[source]
An early response caught before receiving the final Response for a given Request. Like but not limited to 103 Early Hints.
- on_upload(prepared_request: PreparedRequest, **kwargs: Any) None[source]
Permit to monitor the upload progress of passed body. This event is triggered each time a block of data is transmitted to the remote peer. Use this hook carefully as it may impact the overall performance. You may not alter the prepared request.
- pre_request(prepared_request: PreparedRequest, **kwargs: Any) PreparedRequest | None[source]
The prepared request just got built. You may alter it prior to be sent through HTTP.
- pre_send(prepared_request: PreparedRequest, **kwargs: Any) None[source]
The prepared request got his ConnectionInfo injected. This event is triggered just after picking a live connection from the pool. You may not alter the prepared request.
- class niquests.hooks.AsyncLifeCycleHook[source]
An async-only middleware to be used in your request/response lifecycles.
- async early_response(response: Response, **kwargs: Any) None[source]
An early response caught before receiving the final Response for a given Request. Like but not limited to 103 Early Hints.
- async on_upload(prepared_request: PreparedRequest, **kwargs: Any) None[source]
Permit to monitor the upload progress of passed body. This event is triggered each time a block of data is transmitted to the remote peer. Use this hook carefully as it may impact the overall performance. You may not alter the prepared request.
- async pre_request(prepared_request: PreparedRequest, **kwargs: Any) PreparedRequest | None[source]
The prepared request just got built. You may alter it prior to be sent through HTTP.
- async pre_send(prepared_request: PreparedRequest, **kwargs: Any) None[source]
The prepared request got his ConnectionInfo injected. This event is triggered just after picking a live connection from the pool. You may not alter the prepared request.
- class niquests.LeakyBucketLimiter(rate: float = 10.0)[source]¶
Rate limiter using the leaky bucket algorithm.
Requests “leak” out at a constant rate. When a request arrives, it waits until enough time has passed since the last request to maintain the rate.
Usage:
limiter = LeakyBucketLimiter(rate=10.0) # 10 requests per second with niquests.Session(hooks=limiter) as session: ...
- class niquests.AsyncLeakyBucketLimiter(rate: float = 10.0)[source]¶
Rate limiter using the leaky bucket algorithm.
Requests “leak” out at a constant rate. When a request arrives, it waits until enough time has passed since the last request to maintain the rate.
Usage:
limiter = AsyncLeakyBucketLimiter(rate=10.0) # 10 requests per second async with niquests.AsyncSession(hooks=limiter) as session: ...
- class niquests.TokenBucketLimiter(rate: float = 10.0, capacity: float | None = None)[source]¶
Rate limiter using the token bucket algorithm.
Tokens are added to a bucket at a constant rate up to a maximum capacity. Each request consumes one token. Allows bursts up to the bucket capacity.
Usage:
limiter = TokenBucketLimiter(rate=10.0, capacity=50.0) # 10/s, burst of 50 with niquests.Session(hooks=limiter) as session: ...
- class niquests.AsyncTokenBucketLimiter(rate: float = 10.0, capacity: float | None = None)[source]¶
Rate limiter using the token bucket algorithm.
Tokens are added to a bucket at a constant rate up to a maximum capacity. Each request consumes one token. Allows bursts up to the bucket capacity.
Usage:
limiter = AsyncTokenBucketLimiter(rate=10.0, capacity=50.0) # 10/s, burst of 50 async with niquests.AsyncSession(hooks=limiter) as session: ...
Authentication¶
- class niquests.auth.AuthBase[source]¶
Base class that all synchronous auth implementations derive from
- class niquests.auth.HTTPBasicAuth(username: str | bytes, password: str | bytes)[source]¶
Attaches HTTP Basic Authentication to the given Request object.
- class niquests.auth.HTTPProxyAuth(username: str | bytes, password: str | bytes)[source]¶
Attaches HTTP Proxy Authentication to a given Request object.
Status Code Lookup¶
- niquests.codes¶
alias of {}
The codes object defines a mapping from common names for HTTP statuses
to their numerical codes, accessible either as attributes or as dictionary
items.
Example:
>>> import niquests
>>> niquests.codes['temporary_redirect']
307
>>> niquests.codes.teapot
418
>>> niquests.codes['\o/']
200
Some codes have multiple names, and both upper- and lower-case versions of
the names are allowed. For example, codes.ok, codes.OK, and
codes.okay all correspond to the HTTP status code 200.
100:
continue101:
switching_protocols102:
processing103:
checkpoint122:
uri_too_long,request_uri_too_long200:
ok,okay,all_ok,all_okay,all_good,\o/,✓201:
created202:
accepted203:
non_authoritative_info,non_authoritative_information204:
no_content205:
reset_content,reset206:
partial_content,partial207:
multi_status,multiple_status,multi_stati,multiple_stati208:
already_reported226:
im_used300:
multiple_choices301:
moved_permanently,moved,\o-302:
found303:
see_other,other304:
not_modified305:
use_proxy306:
switch_proxy307:
temporary_redirect,temporary_moved,temporary308:
permanent_redirect,resume_incomplete,resume400:
bad_request,bad401:
unauthorized402:
payment_required,payment403:
forbidden404:
not_found,-o-405:
method_not_allowed,not_allowed406:
not_acceptable407:
proxy_authentication_required,proxy_auth,proxy_authentication408:
request_timeout,timeout409:
conflict410:
gone411:
length_required412:
precondition_failed,precondition413:
request_entity_too_large414:
request_uri_too_large415:
unsupported_media_type,unsupported_media,media_type416:
requested_range_not_satisfiable,requested_range,range_not_satisfiable417:
expectation_failed418:
im_a_teapot,teapot,i_am_a_teapot421:
misdirected_request422:
unprocessable_entity,unprocessable423:
locked424:
failed_dependency,dependency425:
unordered_collection,unordered,too_early426:
upgrade_required,upgrade428:
precondition_required,precondition429:
too_many_requests,too_many431:
header_fields_too_large,fields_too_large444:
no_response,none449:
retry_with,retry450:
blocked_by_windows_parental_controls,parental_controls451:
unavailable_for_legal_reasons,legal_reasons499:
client_closed_request500:
internal_server_error,server_error,/o\,✗501:
not_implemented502:
bad_gateway503:
service_unavailable,unavailable504:
gateway_timeout505:
http_version_not_supported,http_version506:
variant_also_negotiates507:
insufficient_storage509:
bandwidth_limit_exceeded,bandwidth510:
not_extended511:
network_authentication_required,network_auth,network_authentication
Migrating to 3.x¶
Compared with the 2.0 release, there were relatively few backwards incompatible changes, but there are still a few issues to be aware of with this major release.
Removed¶
Property
apparent_encodingin favor of a discrete internal inference.Support for the legacy
chardetdetector in case it was present in environment. Extrachardet_on_py3is now unavailable.Deprecated function
get_encodings_from_contentfrom utils.Deprecated function
get_unicode_from_responsefrom utils.BasicAuth middleware no-longer support anything else than
bytesorstrfor username and password.Charset fall back ISO-8859-1 when content-type is text and no charset was specified.
Mixin classes
RequestEncodingMixin, andRequestHooksMixindue to OOP violations. Now deported directly into child classes.Function
unicode_is_asciias it is part of the stablestrstdlib on Python 3 or greater.Alias function
sessionforSessioncontext manager that was kept for BC reasons since the v1.pyOpenSSL/urllib3 injection in case built-in ssl module does not have SNI support as it is not the case anymore for every supported interpreters.
Constant
DEFAULT_CA_BUNDLE_PATH, and submodulecertsdue to droppingcertifi.Function
extract_zipped_pathsbecause rendered useless as it was made to handle an edge case wherecertifiis “zipped”.Extra
securitywhen installing this package. It was previously emptied in the previous major.Warning emitted when passing a file opened in text-mode instead of binary. urllib3.future can overrule the content-length if it detects an error. You should not encounter broken request being sent.
Support for
simplejsonif was present in environment.Submodule
compat.Dependency check at runtime for
urllib3. There’s no more check and warnings at runtime for that subject. Ever.
Behavioural Changes¶
Niquests negotiate for a HTTP/2 connection by default, fallback to HTTP/1.1 if not available.
Support for HTTP/3 can be present by default if your platform support the pre-built wheel for qh3.
Server capability for HTTP/3 is remembered automatically (in-memory) for subsequent requests.