pypath.share.curl.dryrun_on§

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

Bases: _global_context_on

This is a context handler which results pypath.curl.Curl() to do all setup steps, but do not perform download or cache read.

Behind the scenes it sets the value of the pypath.curl.DRYRUN module level variable to True (by default it is False).

Example:

import pypath
from pypath import curl, data_formats

pa = pypath.PyPath()

with curl.cache_dryrun_on():
    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.