Mercurial > hg > config
view python/namespace.py @ 731:e56610c5ece2
now we need pkg-config for pygraphviz
| author | Jeff Hammel <k0scist@gmail.com> |
|---|---|
| date | Sun, 01 Feb 2015 21:15:45 +0000 |
| parents | 0a979b847461 |
| children |
line wrap: on
line source
class Namespace(object): def __init__(self, **kwargs): for key, value in kwargs.items(): setattr(self, key, value)
