bhive.profile module¶
-
class
bhive.profile.
DotDict
(*args)¶ Bases:
dict
-
class
bhive.profile.
Profile
(*args, **kwargs)¶ Bases:
bhive.profile.DotDict
This class is a template to model a user’s on-chain profile according to
-
remove
(key)¶
-
update
([E, ]**F) → None. Update D from dict/iterable E and F.¶ If E is present and has a .keys() method, then does: for k in E: D[k] = E[k] If E is present and lacks a .keys() method, then does: for k, v in E: D[k] = v In either case, this is followed by: for k in F: D[k] = F[k]
-