pypath.share.curl.cache_print_off§

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

Bases: _global_context_off

This is a context handler which stops pypath.curl.Curl() to print verbose messages about its cache.

Behind the scenes it sets the value of the pypath.curl.CACHEPRINT module level variable to False. As by default it is False, this context won’t modify the default behaviour.

Example:

import pypath
from pypath import curl, data_formats

pa = pypath.PyPath()

with curl.cache_print_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.