Functions that enable the Python object to be serialized

Source: Internet
Author: User
from copy import deepcopyfrom str import basestringdef enserializable(model):    """    本函数用于将对象可序列化,且返回的字典都是新的(deepcopy)    """    if isinstance(model, dict):        model = deepcopy(model)        to_pop = []        for k in model:            # 过滤            if isinstance(k, basestring) and (k.startswith(‘_‘) or k.isupper()):                to_pop.append(k)                continue            # 递归            else:                model[k] = enserializable(model[k])        for k in to_pop:            model.pop(k)        return model    elif hasattr(model, ‘__dict__‘):        return enserializable(model.__dict__)    elif isinstance(model, (list, tuple)):        return [enserializable(m) for m in model]    else:        return model

Functions that enable the Python object to be serialized

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.