摘要: class AttrDict(dict): """Dict that can get attribute by dot""" def __init__(self, *args, **kwargs): super(AttrDict, self).__init__(*args, **kwargs) se 阅读全文
posted @ 2018-03-29 16:49 lzp的bky 阅读(144) 评论(0) 推荐(0) 编辑