QNetworkCacheMetaData#

The QNetworkCacheMetaData class provides cache information. More

Synopsis#

Functions#

Note

This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE

Detailed Description#

QNetworkCacheMetaData provides information about a cache file including the url, when it was last modified, when the cache file was created, headers for file and if the file should be saved onto a disk.

class PySide6.QtNetwork.QNetworkCacheMetaData#

PySide6.QtNetwork.QNetworkCacheMetaData(other)

Parameters:

otherPySide6.QtNetwork.QNetworkCacheMetaData

Constructs an invalid network cache meta data.

See also

isValid()

Constructs a copy of the other QNetworkCacheMetaData .

PySide6.QtNetwork.QNetworkCacheMetaData.attributes()#
Return type:

Dictionary with keys of type .QNetworkRequest.Attribute and values of type QVariant.

Returns all the attributes stored with this cache item.

See also

setAttributes() Attribute

PySide6.QtNetwork.QNetworkCacheMetaData.expirationDate()#
Return type:

PySide6.QtCore.QDateTime

Returns the date and time when the meta data expires.

PySide6.QtNetwork.QNetworkCacheMetaData.isValid()#
Return type:

bool

Returns true if this network cache meta data has attributes that have been set otherwise false.

PySide6.QtNetwork.QNetworkCacheMetaData.lastModified()#
Return type:

PySide6.QtCore.QDateTime

Returns the date and time when the meta data was last modified.

PySide6.QtNetwork.QNetworkCacheMetaData.__ne__(other)#
Parameters:

otherPySide6.QtNetwork.QNetworkCacheMetaData

Return type:

bool

Returns true if this meta data is not equal to the other meta data; otherwise returns false.

See also

operator==()

PySide6.QtNetwork.QNetworkCacheMetaData.__eq__(other)#
Parameters:

otherPySide6.QtNetwork.QNetworkCacheMetaData

Return type:

bool

Returns true if this meta data is equal to the other meta data; otherwise returns false.

See also

operator!=()

PySide6.QtNetwork.QNetworkCacheMetaData.rawHeaders()#
Return type:

.list of std.pair QByteArray,QByteArray

Returns a list of all raw headers that are set in this meta data. The list is in the same order that the headers were set.

See also

setRawHeaders()

PySide6.QtNetwork.QNetworkCacheMetaData.saveToDisk()#
Return type:

bool

Returns is this cache should be allowed to be stored on disk.

Some cache implementations can keep these cache items in memory for performance reasons, but for security reasons they should not be written to disk.

Specifically with http, documents with Cache-control set to no-store or any https document that doesn’t have “Cache-control: public” set will set the saveToDisk to false.

See also

setSaveToDisk()

PySide6.QtNetwork.QNetworkCacheMetaData.setAttributes(attributes)#
Parameters:

attributes – Dictionary with keys of type .QNetworkRequest.Attribute and values of type QVariant.

Sets all attributes of this cache item to be the map attributes.

PySide6.QtNetwork.QNetworkCacheMetaData.setExpirationDate(dateTime)#
Parameters:

dateTimePySide6.QtCore.QDateTime

Sets the date and time when the meta data expires to dateTime.

See also

expirationDate()

PySide6.QtNetwork.QNetworkCacheMetaData.setLastModified(dateTime)#
Parameters:

dateTimePySide6.QtCore.QDateTime

Sets the date and time when the meta data was last modified to dateTime.

See also

lastModified()

PySide6.QtNetwork.QNetworkCacheMetaData.setRawHeaders(headers)#
Parameters:

headers – .list of std.pair QByteArray,QByteArray

Sets the raw headers to list.

See also

rawHeaders()

PySide6.QtNetwork.QNetworkCacheMetaData.setSaveToDisk(allow)#
Parameters:

allow – bool

Sets whether this network cache meta data and associated content should be allowed to be stored on disk to allow.

See also

saveToDisk()

PySide6.QtNetwork.QNetworkCacheMetaData.setUrl(url)#
Parameters:

urlPySide6.QtCore.QUrl

Sets the URL this network cache meta data to be url.

The password and fragment are removed from the url.

See also

url()

PySide6.QtNetwork.QNetworkCacheMetaData.swap(other)#
Parameters:

otherPySide6.QtNetwork.QNetworkCacheMetaData

Swaps this metadata instance with other. This function is very fast and never fails.

PySide6.QtNetwork.QNetworkCacheMetaData.url()#
Return type:

PySide6.QtCore.QUrl

Returns the URL this network cache meta data is referring to.

See also

setUrl()