Configuration documents for BioBlend
BioBlend
- exception bioblend.ConnectionError(message: str, body: Optional[Union[bytes, str]] = None, status_code: Optional[int] = None)[source]
An exception class that is raised when unexpected HTTP responses come back.
Should make it easier to debug when strange HTTP things happen such as a proxy server getting in the way of the request etc. @see: body attribute to see the content of the http response
- class bioblend.NullHandler(level=0)[source]
Initializes the instance - basically setting the formatter to None and the filter list to empty.
- bioblend.get_version() str [source]
Returns a string with the current version of the library (e.g., “0.2.0”)
Config
- class bioblend.config.Config(path: Optional[str] = None, fp: Optional[IO[str]] = None, do_load: bool = True)[source]
BioBlend allows library-wide configuration to be set in external files. These configuration files can be used to specify access keys, for example. By default we use two locations for the BioBlend configurations:
System wide:
/etc/bioblend.cfg
Individual user:
~/.bioblend
(which works on both Windows and Unix)