mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-03-16 22:20:27 +00:00
7 lines
219 B
Python
7 lines
219 B
Python
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)))
|