Mercurial > hg > config
view python/namespace.py @ 620:a43d0205f80b
STUB: python/html2flux.py
| author | Jeff Hammel <k0scist@gmail.com> |
|---|---|
| date | Wed, 05 Feb 2014 08:33:16 -0800 |
| 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)
