Class: QgsNetworkAccessManager

QNetworkAccessManager with additional QGIS specific logic.

This class implements the QGIS network access manager. It’s a singleton that can be used across QGIS.

Plugins can insert proxy factories and thereby redirect requests to individual proxies.

If no proxy factories are there or none returns a proxy for an URL a fallback proxy can be set. There’s also a exclude list that defines URLs that the fallback proxy should not be used for, then no proxy will be used.

Class Hierarchy

Inheritance diagram of qgis.core.QgsNetworkAccessManager

Base classes

QNetworkAccessManager

QObject

class qgis.core.QgsNetworkAccessManager[source]

Bases: QNetworkAccessManager

abortAuthBrowser(self)[source]

Abort any outstanding external browser login request.

Note

Background threads will listen to aborted browser request signals from the network manager on the main thread.

Added in version 3.20.

signal authBrowserAborted[source]

pyqtSignal(*types, name: str = …, revision: int = …, arguments: Sequence = …) -> PYQT_SIGNAL

types is normally a sequence of individual types. Each type is either a type object or a string that is the name of a C++ type. Alternatively each type could itself be a sequence of types each describing a different overloaded signal. name is the optional C++ name of the signal. If it is not specified then the name of the class attribute that is bound to the signal is used. revision is the optional revision of the signal that is exported to QML. If it is not specified then 0 is used. arguments is the optional sequence of the names of the signal’s arguments.

static blockingGet(request: QNetworkRequest, authCfg: str | None = '', forceRefresh: bool = False, feedback: QgsFeedback | None = None, flags: Qgis.NetworkRequestFlags | Qgis.NetworkRequestFlag = Qgis.NetworkRequestFlags()) QgsNetworkReplyContent[source]

Posts a GET request to obtain the contents of the target request and returns a new QgsNetworkReplyContent object for reading. The current thread will be blocked until the request is returned.

This method is safe to call in either the main thread or a worker thread.

If forceRefresh is False then previously cached replies may be used for the request. If it is set to True then a new query is always performed.

If an authCfg has been specified, then that authentication configuration required will automatically be applied to request. There is no need to manually apply the authentication to the request prior to calling this method.

The optional feedback argument can be used to abort ongoing requests.

The contents of the reply will be returned after the request is completed or an error occurs.

The flags argument was added in QGIS 4.0.

See also

blockingPost()

Added in version 3.6.

Parameters:
Return type:

QgsNetworkReplyContent

static blockingPost(request: QNetworkRequest, data: QByteArray | bytes | bytearray, authCfg: str | None = '', forceRefresh: bool = False, feedback: QgsFeedback | None = None, flags: Qgis.NetworkRequestFlags | Qgis.NetworkRequestFlag = Qgis.NetworkRequestFlags()) QgsNetworkReplyContent[source]

Posts a POST request to obtain the contents of the target request, using the given data, and returns a new QgsNetworkReplyContent object for reading. The current thread will be blocked until the request is returned.

This method is safe to call in either the main thread or a worker thread.

If forceRefresh is False then previously cached replies may be used for the request. If it is set to True then a new query is always performed.

If an authCfg has been specified, then that authentication configuration required will automatically be applied to request. There is no need to manually apply the authentication to the request prior to calling this method.

The optional feedback argument can be used to abort ongoing requests.

The contents of the reply will be returned after the request is completed or an error occurs.

The flags argument was added in QGIS 4.0.

See also

blockingGet()

Added in version 3.6.

Parameters:
Return type:

QgsNetworkReplyContent

static cacheLoadControlFromName(name: str | None) QNetworkRequest.CacheLoadControl[source]

Returns QNetworkRequest.CacheLoadControl from a name.

Parameters:

name (Optional[str])

Return type:

QNetworkRequest.CacheLoadControl

static cacheLoadControlName(control: QNetworkRequest.CacheLoadControl) str[source]

Returns the name for QNetworkRequest.CacheLoadControl.

Parameters:

control (QNetworkRequest.CacheLoadControl)

Return type:

str

signal cookiesChanged[source]

pyqtSignal(*types, name: str = …, revision: int = …, arguments: Sequence = …) -> PYQT_SIGNAL

types is normally a sequence of individual types. Each type is either a type object or a string that is the name of a C++ type. Alternatively each type could itself be a sequence of types each describing a different overloaded signal. name is the optional C++ name of the signal. If it is not specified then the name of the class attribute that is bound to the signal is used. revision is the optional revision of the signal that is exported to QML. If it is not specified then 0 is used. arguments is the optional sequence of the names of the signal’s arguments.

signal downloadProgress[source]

pyqtSignal(*types, name: str = …, revision: int = …, arguments: Sequence = …) -> PYQT_SIGNAL

types is normally a sequence of individual types. Each type is either a type object or a string that is the name of a C++ type. Alternatively each type could itself be a sequence of types each describing a different overloaded signal. name is the optional C++ name of the signal. If it is not specified then the name of the class attribute that is bound to the signal is used. revision is the optional revision of the signal that is exported to QML. If it is not specified then 0 is used. arguments is the optional sequence of the names of the signal’s arguments.

excludeList(self) List[str][source]

Returns the proxy exclude list.

This list consists of the beginning of URL strings which will not use the fallback proxy.

See also

noProxyList()

See also

fallbackProxy()

Return type:

List[str]

fallbackProxy(self) QNetworkProxy

Returns the fallback proxy used by the manager.

The fallback proxy is used for URLs which no other proxy factory returned proxies for.

See also

proxyFactories()

Return type:

QNetworkProxy

insertProxyFactory(self, factory: QNetworkProxyFactory | None)[source]

Inserts a factory into the proxy factories list.

Ownership of factory is transferred to the manager.

See also

proxyFactories()

Parameters:

factory (Optional[QNetworkProxyFactory])

static instance(connectionType: Qt.ConnectionType = Qt.BlockingQueuedConnection) QgsNetworkAccessManager | None[source]

Returns a pointer to the active QgsNetworkAccessManager for the current thread.

With the connectionType parameter it is possible to setup the default connection type that is used to handle signals that might require user interaction and therefore need to be handled on the main thread. See in-depth discussion below.

Parameters:

connectionType (Qt.ConnectionType = Qt.BlockingQueuedConnection) – In most cases the default of using a Qt.BlockingQueuedConnection is ok, to make a background thread wait for the main thread to answer such a request is fine and anything else is dangerous. However, in case the request was started on the main thread, one should execute a local event loop in a helper thread and freeze the main thread for the duration of the download. In this case, if an authentication request is sent from the background thread network access manager, the background thread should be blocked, the main thread be woken up, processEvents() executed once, the main thread frozen again and the background thread continued.

Return type:

Optional[QgsNetworkAccessManager]

noProxyList(self) List[str][source]

Returns the no proxy list.

This list consists of the beginning of URL strings which will not use any proxy at all

See also

excludeList()

See also

fallbackProxy()

Return type:

List[str]

preprocessRequest(self, req: QNetworkRequest | None)[source]

Preprocesses request

Parameters:

req (Optional[QNetworkRequest]) – the request to preprocess

Added in version 3.22.

proxyFactories(self) List[QNetworkProxyFactory]

Returns a list of proxy factories used by the manager.

See also

proxyFactories()

Return type:

List[QNetworkProxyFactory]

static removeAdvancedRequestPreprocessor(id: str | None)[source]

Removes an advanced request pre-processor function with matching id.

The id must correspond to a pre-processor previously added via a call to setAdvancedRequestPreprocessor().

Returns True if processor existed and was removed.

Added in version 3.44.

Parameters:

id (Optional[str])

removeProxyFactory(self, factory: QNetworkProxyFactory | None)[source]

Removes a factory from the proxy factories list.

See also

proxyFactories()

Parameters:

factory (Optional[QNetworkProxyFactory])

static removeReplyPreprocessor(id: str | None)[source]

Removes the custom reply pre-processor function with matching id.

The id must correspond to a pre-processor previously added via a call to setReplyPreprocessor().

Returns True if processor existed and was removed.

Added in version 3.26.

Parameters:

id (Optional[str])

static removeRequestPreprocessor(id: str | None)[source]

Removes the custom request pre-processor function with matching id.

The id must correspond to a pre-processor previously added via a call to setRequestPreprocessor().

Returns True if processor existed and was removed.

Added in version 3.22.

Parameters:

id (Optional[str])

signal requestAboutToBeCreated[source]

pyqtSignal(*types, name: str = …, revision: int = …, arguments: Sequence = …) -> PYQT_SIGNAL

types is normally a sequence of individual types. Each type is either a type object or a string that is the name of a C++ type. Alternatively each type could itself be a sequence of types each describing a different overloaded signal. name is the optional C++ name of the signal. If it is not specified then the name of the class attribute that is bound to the signal is used. revision is the optional revision of the signal that is exported to QML. If it is not specified then 0 is used. arguments is the optional sequence of the names of the signal’s arguments.

requestAuthCloseBrowser(self)[source]

Forwards an external browser login closure request to the authentication handler.

Note

If called by a background thread, the request will be forwarded to the network manager on the main thread.

Added in version 3.20.

signal requestAuthDetailsAdded[source]

pyqtSignal(*types, name: str = …, revision: int = …, arguments: Sequence = …) -> PYQT_SIGNAL

types is normally a sequence of individual types. Each type is either a type object or a string that is the name of a C++ type. Alternatively each type could itself be a sequence of types each describing a different overloaded signal. name is the optional C++ name of the signal. If it is not specified then the name of the class attribute that is bound to the signal is used. revision is the optional revision of the signal that is exported to QML. If it is not specified then 0 is used. arguments is the optional sequence of the names of the signal’s arguments.

requestAuthOpenBrowser(self, url: QUrl)[source]

Forwards an external browser login url opening request to the authentication handler.

Note

If called by a background thread, the request will be forwarded to the network manager on the main thread.

Added in version 3.20.

Parameters:

url (QUrl)

signal requestCreated[source]

pyqtSignal(*types, name: str = …, revision: int = …, arguments: Sequence = …) -> PYQT_SIGNAL

types is normally a sequence of individual types. Each type is either a type object or a string that is the name of a C++ type. Alternatively each type could itself be a sequence of types each describing a different overloaded signal. name is the optional C++ name of the signal. If it is not specified then the name of the class attribute that is bound to the signal is used. revision is the optional revision of the signal that is exported to QML. If it is not specified then 0 is used. arguments is the optional sequence of the names of the signal’s arguments.

signal requestEncounteredSslErrors[source]

pyqtSignal(*types, name: str = …, revision: int = …, arguments: Sequence = …) -> PYQT_SIGNAL

types is normally a sequence of individual types. Each type is either a type object or a string that is the name of a C++ type. Alternatively each type could itself be a sequence of types each describing a different overloaded signal. name is the optional C++ name of the signal. If it is not specified then the name of the class attribute that is bound to the signal is used. revision is the optional revision of the signal that is exported to QML. If it is not specified then 0 is used. arguments is the optional sequence of the names of the signal’s arguments.

signal requestRequiresAuth[source]

pyqtSignal(*types, name: str = …, revision: int = …, arguments: Sequence = …) -> PYQT_SIGNAL

types is normally a sequence of individual types. Each type is either a type object or a string that is the name of a C++ type. Alternatively each type could itself be a sequence of types each describing a different overloaded signal. name is the optional C++ name of the signal. If it is not specified then the name of the class attribute that is bound to the signal is used. revision is the optional revision of the signal that is exported to QML. If it is not specified then 0 is used. arguments is the optional sequence of the names of the signal’s arguments.

signal requestTimedOut[source]

pyqtSignal(*types, name: str = …, revision: int = …, arguments: Sequence = …) -> PYQT_SIGNAL

types is normally a sequence of individual types. Each type is either a type object or a string that is the name of a C++ type. Alternatively each type could itself be a sequence of types each describing a different overloaded signal. name is the optional C++ name of the signal. If it is not specified then the name of the class attribute that is bound to the signal is used. revision is the optional revision of the signal that is exported to QML. If it is not specified then 0 is used. arguments is the optional sequence of the names of the signal’s arguments.

static setAdvancedRequestPreprocessor(a0: Callable[..., None] | None) str[source]

Sets an advanced request pre-processor function, which allows manipulation of a network request before it is processed.

The processor function takes the QNetworkRequest, network operation (a QNetworkAccessManager.Operation cast to an integer value), and request data as its arguments, and can mutate the request if necessary.

It should return the desired operation (as a QNetworkAccessManager.Operation cast to an integer value) and request data as a tuple, transforming as desired.

Return type:

str

Returns:

An auto-generated string uniquely identifying the preprocessor, which can later be used to remove the preprocessor (via a call to removeAdvancedRequestPreprocessor()).

Added in version 3.44.

Parameters:

a0 (Optional[Callable[..., None]])

setFallbackProxyAndExcludes(self, proxy: QNetworkProxy, excludes: Iterable[str | None], noProxyURLs: Iterable[str | None])[source]

Sets the fallback proxy and URLs which shouldn’t use it.

The fallback proxy is used for URLs which no other proxy factory returned proxies for. The excludes list specifies the beginning of URL strings which will not use this fallback proxy. The noProxyURLs list specifies the beginning of URL strings which will not use any proxy at all

See also

fallbackProxy()

See also

excludeList()

See also

noProxyList()

Parameters:
  • proxy (QNetworkProxy)

  • excludes (Iterable[Optional[str]])

  • noProxyURLs (Iterable[Optional[str]])

static setReplyPreprocessor(a0: Callable[..., None] | None) str[source]

Sets a reply pre-processor function, which allows manipulation of QNetworkReply objects after they are created (but before they are fetched).

The processor function takes a QNetworkRequest request and a QNetworkReply as arguments, and can connect to QNetworkReply signals directly as desired.

Return type:

str

Returns:

An auto-generated string uniquely identifying the preprocessor, which can later be used to remove the preprocessor (via a call to removeReplyPreprocessor()).

Added in version 3.26.

Parameters:

a0 (Optional[Callable[..., None]])

static setRequestPreprocessor(a0: Callable[..., None] | None) str[source]

Sets a request pre-processor function, which allows manipulation of a network request before it is processed.

The processor function takes the QNetworkRequest as its argument, and can mutate the request if necessary.

Return type:

str

Returns:

An auto-generated string uniquely identifying the preprocessor, which can later be used to remove the preprocessor (via a call to removeRequestPreprocessor()).

Added in version 3.22.

Parameters:

a0 (Optional[Callable[..., None]])

static setTimeout(time: int)[source]

Sets the maximum timeout time for network requests, in milliseconds. If set to 0, no timeout is set.

See also

timeout()

Added in version 3.6.

Parameters:

time (int)

setupDefaultProxyAndCache(self, connectionType: Qt.ConnectionType = Qt.BlockingQueuedConnection)[source]

Setup the QgsNetworkAccessManager (NAM) according to the user’s settings. The connectionType sets up the default connection type that is used to handle signals that might require user interaction and therefore need to be handled on the main thread. See in-depth discussion in the documentation for the constructor of this class.

Parameters:

connectionType (Qt.ConnectionType = Qt.BlockingQueuedConnection)

static timeout() int[source]

Returns the network timeout length, in milliseconds.

See also

setTimeout()

Added in version 3.6.

Return type:

int

useSystemProxy(self) bool[source]

Returns whether the system proxy should be used.

Return type:

bool