元编程学习

Posted 永远的麦田

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了元编程学习相关的知识,希望对你有一定的参考价值。

#!/usr/bin/env python
# -*- coding: utf-8 -*-

from urllib.request import urlopen
import warnings
import os
import json
URL = http://bangth.com:8080/osconfeed.json
JSON = osconfeed.json

def load():
    if not os.path.exists(JSON):
        msg = downloading {} to {}.format(URL, JSON)
        warnings.warn(msg)
        with urlopen(URL) as remote, open(JSON, wb) as local:
            local.write(remote.read())
    with open(JSON) as fp:
        return json.load(fp)
    
feed = load()

 

#!/usr/bin/env python
# -*- coding: utf-8 -*-

from collections import abc

class FrozenJSON:
    """一个只读接口,使用属性表示法访问JSON类对象
    """
    def __init__(self, mapping):
        self.__data = dict(mapping)
        
    def __getattr__(self, name):
        if hasattr(self.__data, name):
            return getattr(self.__data, name)
        else:
            return FrozenJSON.build(self.__data[name])
        
    @classmethod
    def build(cls, obj):
        if isinstance(obj, abc.Mapping):
            return cls(obj)
        elif isinstance(obj, abc.MutableSequence):
            return [cls.build(item) for item in obj]
        else:
            return obj

以上是关于元编程学习的主要内容,如果未能解决你的问题,请参考以下文章

985高校的高材生只会写代码片段,丢人吗?

985大学的高材生只会写代码片段,丢人吗?

985大学的高材生只会写代码片段,丢人吗?

985大学的高材生只会写代码片段,丢人吗?

续报福利-200元图形化编程短期班限时0元赠送!

golang代码片段(摘抄)