view python/namespace.py @ 676:1e1bed921c08

allow multiple date ranges and display of UTC only
author Jeff Hammel <k0scist@gmail.com>
date Thu, 08 May 2014 13:36:24 -0700
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)