Python-Spamprotection-API/spamprotection/utils.py

7 lines
168 B
Python
Raw Normal View History

2021-01-02 10:09:20 +01:00
class attrdict(dict):
def __init__(self, *args, **kwargs):
dict.__init__(self, *args, **kwargs)
def __getattr__(self, name):
return self[name]