Class: QgsNetworkAccessManager

class qgis.core.QgsNetworkAccessManager

Bases: PyQt5.QtNetwork.QNetworkAccessManager

network access manager for QGIS

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.

Methods

blockingGet

Posts a GET request to obtain the contents of the target request and returns a new QgsNetworkReplyContent object for reading.

blockingPost

Posts a POST request to obtain the contents of the target request, using the given data, and returns a new QgsNetworkReplyContent object for reading.

cacheLoadControlFromName

Returns QNetworkRequest.CacheLoadControl from a name.

cacheLoadControlName

Returns the name for QNetworkRequest.CacheLoadControl.

childEvent

connectNotify

createRequest

param op

customEvent

disconnectNotify

excludeList

Returns the proxy exclude list.

fallbackProxy

Returns the fallback proxy used by the manager.

insertProxyFactory

Inserts a factory into the proxy factories list.

instance

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

isSignalConnected

noProxyList

Returns the no proxy list.

proxyFactories

Returns a list of proxy factories used by the manager.

receivers

removeProxyFactory

Removes a factory from the proxy factories list.

sender

senderSignalIndex

setFallbackProxyAndExcludes

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

setTimeout

Sets the maximum timeout time for network requests, in milliseconds.

setupDefaultProxyAndCache

Setup the QgsNetworkAccessManager (NAM) according to the user’s settings.

supportedSchemesImplementation

timeout

Returns the network timeout length, in milliseconds.

timerEvent

useSystemProxy

Returns whether the system proxy should be used.

Signals

downloadProgress

Emitted when a network reply receives a progress report.

finished

Emitted whenever a pending network reply is finished.

requestAboutToBeCreated

requestAuthDetailsAdded

Emitted when network authentication details have been added to a request.

requestCreated

requestEncounteredSslErrors

Emitted when a network request encounters SSL errors.

requestRequiresAuth

Emitted when a network request prompts an authentication request.

requestTimedOut

Emitted when a network request has timed out.

blockingGet(request: QNetworkRequest, authCfg: str = '', forceRefresh: bool = False, feedback: QgsFeedback = None)QgsNetworkReplyContent

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.

See also

blockingPost()

New in version 3.6.

Parameters
  • request (QNetworkRequest) –

  • authCfg (str = '') –

  • forceRefresh (bool = False) –

  • feedback (QgsFeedback = None) –

Return type

QgsNetworkReplyContent

blockingPost(request: QNetworkRequest, data: Union[QByteArray, bytes, bytearray], authCfg: str = '', forceRefresh: bool = False, feedback: QgsFeedback = None)QgsNetworkReplyContent

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.

See also

blockingGet()

New in version 3.6.

Parameters
  • request (QNetworkRequest) –

  • data (Union[QByteArray) –

  • authCfg (str = '') –

  • forceRefresh (bool = False) –

  • feedback (QgsFeedback = None) –

Return type

QgsNetworkReplyContent

cacheLoadControlFromName(name: str)QNetworkRequest.CacheLoadControl

Returns QNetworkRequest.CacheLoadControl from a name.

Parameters

name (str) –

Return type

QNetworkRequest.CacheLoadControl

cacheLoadControlName(control: QNetworkRequest.CacheLoadControl)str

Returns the name for QNetworkRequest.CacheLoadControl.

Parameters

control (QNetworkRequest.CacheLoadControl) –

Return type

str

childEvent(self, QChildEvent)
connectNotify(self, QMetaMethod)
createRequest(self, op: QNetworkAccessManager.Operation, req: QNetworkRequest, outgoingData: QIODevice = None)QNetworkReply
Parameters
  • op (QNetworkAccessManager.Operation) –

  • req (QNetworkRequest) –

  • outgoingData (QIODevice = None) –

Return type

QNetworkReply

customEvent(self, QEvent)
disconnectNotify(self, QMetaMethod)
downloadProgress

Emitted when a network reply receives a progress report.

The requestId argument reflects the unique ID identifying the original request which the progress report relates to.

The bytesReceived parameter indicates the number of bytes received, while bytesTotal indicates the total number of bytes expected to be downloaded. If the number of bytes to be downloaded is not known, bytesTotal will be -1.

This signal is propagated to the main thread QgsNetworkAccessManager instance, so it is necessary only to connect to the main thread’s signal in order to receive notifications about requests created in any thread.

New in version 3.6: [signal]

Parameters
  • requestId (int) –

  • bytesReceived (int) –

  • bytesTotal (int) –

excludeList(self)List[str]

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

finished

Emitted whenever a pending network reply is finished.

The reply parameter will contain a QgsNetworkReplyContent object, containing all the useful information relating to the reply, including headers and reply content.

This signal is propagated to the main thread QgsNetworkAccessManager instance, so it is necessary only to connect to the main thread’s signal in order to receive notifications about requests created in any thread.

New in version 3.6: [signal]

Parameters

reply (QgsNetworkReplyContent) –

insertProxyFactory(self, factory: QNetworkProxyFactory)

Inserts a factory into the proxy factories list.

Ownership of factory is transferred to the manager.

See also

proxyFactories()

Parameters

factory (QNetworkProxyFactory) –

instance(connectionType: Qt.ConnectionType = Qt.BlockingQueuedConnection)QgsNetworkAccessManager

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

QgsNetworkAccessManager

isSignalConnected(self, QMetaMethod)bool
noProxyList(self)List[str]

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]

proxyFactories(self)List[QNetworkProxyFactory]

Returns a list of proxy factories used by the manager.

See also

proxyFactories()

Return type

List[QNetworkProxyFactory]

receivers(self, PYQT_SIGNAL)int
removeProxyFactory(self, factory: QNetworkProxyFactory)

Removes a factory from the proxy factories list.

See also

proxyFactories()

Parameters

factory (QNetworkProxyFactory) –

requestAboutToBeCreated

Deprecated since version Use: the thread-safe requestAboutToBeCreated( QgsNetworkRequestParameters ) signal instead. [signal]

requestAboutToBeCreated(self, request: QgsNetworkRequestParameters) Emitted when a network request is about to be created.

This signal is propagated to the main thread QgsNetworkAccessManager instance, so it is necessary only to connect to the main thread’s signal in order to receive notifications about requests created in any thread.

See also

finished()

New in version 3.6: [signal]

requestAuthDetailsAdded

Emitted when network authentication details have been added to a request.

The requestId argument reflects the unique ID identifying the original request which the authentication relates to.

This signal is always sent from the main thread QgsNetworkAccessManager instance, so it is necessary only to connect to the main thread’s signal in order to receive notifications about authentication requests from any thread.

This signal is for debugging and logging purposes only, and should not be used to respond to the requests. See QgsNetworkAuthenticationHandler for details on how to handle authentication requests.

New in version 3.6: [signal]

Parameters
  • requestId (int) –

  • realm (str) –

  • user (str) –

  • password (str) –

requestCreated

Deprecated since version Use: the thread-safe requestAboutToBeCreated( QgsNetworkRequestParameters ) signal instead. [signal]

requestEncounteredSslErrors

Emitted when a network request encounters SSL errors.

The requestId argument reflects the unique ID identifying the original request which the SSL error relates to.

This signal is propagated to the main thread QgsNetworkAccessManager instance, so it is necessary only to connect to the main thread’s signal in order to receive notifications about SSL errors from any thread.

This signal is for debugging and logging purposes only, and cannot be used to respond to the errors. See QgsSslErrorHandler for details on how to handle SSL errors and potentially ignore them.

New in version 3.6: [signal]

Parameters
  • requestId (int) –

  • errors (Iterable[QSslError]) –

requestRequiresAuth

Emitted when a network request prompts an authentication request.

The requestId argument reflects the unique ID identifying the original request which the authentication relates to.

This signal is propagated to the main thread QgsNetworkAccessManager instance, so it is necessary only to connect to the main thread’s signal in order to receive notifications about authentication requests from any thread.

This signal is for debugging and logging purposes only, and cannot be used to respond to the requests. See QgsNetworkAuthenticationHandler for details on how to handle authentication requests.

New in version 3.6: [signal]

Parameters
  • requestId (int) –

  • realm (str) –

requestTimedOut

Emitted when a network request has timed out.

This signal is propagated to the main thread QgsNetworkAccessManager instance, so it is necessary only to connect to the main thread’s signal in order to receive notifications about requests created in any thread.

See also

finished()

New in version 3.6: [signal]

requestTimedOut(self, QNetworkReply) [signal]

Parameters

request (QgsNetworkRequestParameters) –

sender(self)QObject
senderSignalIndex(self)int
setFallbackProxyAndExcludes(self, proxy: QNetworkProxy, excludes: Iterable[str], noProxyURLs: Iterable[str])

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[str]) –

  • noProxyURLs (Iterable[str]) –

setTimeout(time: int)

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

See also

timeout()

New in version 3.6.

Parameters

time (int) –

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

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) –

supportedSchemesImplementation(self)List[str]
timeout()int

Returns the network timeout length, in milliseconds.

See also

setTimeout()

New in version 3.6.

Return type

int

timerEvent(self, QTimerEvent)
useSystemProxy(self)bool

Returns whether the system proxy should be used.

Return type

bool