mirror of
https://github.com/kennethreitz/tablib.git
synced 2026-06-05 23:10:17 +00:00
7 lines
153 B
Python
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)
|