MCPcopy
hub / github.com/mne-tools/mne-python / Bunch

Class Bunch

mne/utils/_bunch.py:13–18  ·  view source on GitHub ↗

Dictionary-like object that exposes its keys as attributes.

Source from the content-addressed store, hash-verified

11
12
13class Bunch(dict):
14 """Dictionary-like object that exposes its keys as attributes."""
15
16 def __init__(self, **kwargs):
17 dict.__init__(self, kwargs)
18 self.__dict__ = self
19
20
21###############################################################################

Callers 14

executeFunction · 0.90
test_strip_devFunction · 0.90
test_scraperFunction · 0.90
flow_diagram.pyFile · 0.85
get_score_funcsFunction · 0.85
_get_fid_coordsFunction · 0.85
_check_load_matFunction · 0.85
_bunchifyFunction · 0.85
_read_dig_montage_egiFunction · 0.85
_iter_topographyFunction · 0.85

Calls

no outgoing calls

Tested by 4

executeFunction · 0.72
test_strip_devFunction · 0.72
test_scraperFunction · 0.72