swh:1:snp:7ce5f1105410d5ee1ad6abfdc873986c25b579e5
Raw File
Tip revision: 63b63841dad123283aba68d8c9afca203f26bb51 authored by Dirk Roorda on 30 May 2020, 07:01:33 UTC
small fixes
Tip revision: 63b6384
computed.py
"""
.. include:: ../../docs/core/computed.md
"""


class Computeds(object):
    pass


class Computed(object):
    """Provides access to precomputed data.

    For component `ccc` it is the result of `C.ccc` or `Cs('ccc')`.
    """

    def __init__(self, api, data):
        self.api = api
        self.data = data
back to top