mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-04-24 16:54:50 +00:00
8 lines
219 B
Python
8 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)))
|