Files
tablib/tabbed/helpers.py
T
2010-07-13 09:30:14 -04:00

7 lines
153 B
Python

# -*- coding: utf-8 -*-
class Object(object):
"""Your attributes are belong to us."""
def __init__(self, **entries):
self.__dict__.update(entries)