pypath.share.curl.cache_delete_off§

class pypath.share.curl.cache_delete_off[source]§

Bases: _global_context_off

This is a context handler which stops pypath.curl.Curl() deleting the cache files. This is the default behaviour, so this context won’t change anything by default.

Behind the scenes it sets the value of the pypath.curl.CACHEDEL module level variable to False.

Example:

import pypath
from pypath import curl, data_formats

pa = pypath.PyPath()

with curl.cache_delete_off():
    pa.load_resources({'signor': data_formats.pathway['signor']})
__init__()[source]§
Parameters:

name (str) – Name of the module level variable.

Methods

__init__()

param str name:

Name of the module level variable.