django-configurations/configurations/utils.py

8 lines
219 B
Python
Raw Normal View History

2012-07-21 13:56:04 +00:00
def isuppercase(name):
return name == name.upper() and not name.startswith('_')
def uppercase_attributes(obj):
return dict((name, getattr(obj, name))
for name in filter(isuppercase, dir(obj)))