Python Pygal Chart Library - 令人沮丧甚至无法定义函数

时间:2014-01-02 00:26:21

标签: python python-2.7 pygal

耶稣基督Python是我曾经处理过的最神秘的 *

出于某种原因,我甚至无法向此类添加函数(包含在项目中,而不是库的一部分)。 Pygal使用某种“Ghost”类类来完成我的操作。

考虑下面的Line类,它只能通过黑魔法实例化,IE:pygal.Line(Config)

class Line(Graph):
    """Line graph"""

    strum_count_dict = {}

    def __init__(self, *args, **kwargs):
        self._self_close = False
        super(Line, self).__init__(*args, **kwargs)

似乎直截了当?

以下是一些Glost课程。

REAL_CHARTS = {}
for NAME in CHARTS_NAMES:
    mod_name = 'pygal.graph.%s' % NAME.lower()
    __import__(mod_name)
    mod = sys.modules[mod_name]
    REAL_CHARTS[NAME] = getattr(mod, NAME)


class Ghost(object):

    def __init__(self, config=None, **kwargs):
        """Init config"""
        name = self.__class__.__name__
        self.cls = REAL_CHARTS[name]
        self.uuid = str(uuid4())
        if config and isinstance(config, type):
            config = config()

        if config:
            config = config.copy()
        else:
            config = Config()

        config(**kwargs)
        self.config = config
        self.raw_series = []
        self.raw_series2 = []

pygal的 init

    __version__ = '1.1.0'
import sys
from pygal.config import Config
from pygal.ghost import Ghost
from pygal.graph import CHARTS_NAMES

CHARTS = []
CHARTS_BY_NAME = {}

for NAME in CHARTS_NAMES:
    _CHART = type(NAME, (Ghost,), {})
    CHARTS.append(_CHART)
    CHARTS_BY_NAME[NAME] = _CHART
    setattr(sys.modules[__name__], NAME, _CHART)


__all__ = CHARTS_NAMES + [Config.__name__, 'CHARTS', 'CHARTS_BY_NAME']  # @UndefinedVariable

向Line.py文件添加一个函数显示:

AttributeError:'Line'对象没有属性'set_extra_data'

即使它像往常一样定义:

def set_extra_data(self):
    print "--> FML Python"

有没有人知道这里发生了什么?

0 个答案:

没有答案