python instanciar funciones en clase
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python instanciar funciones en clase相关的知识,希望对你有一定的参考价值。
def mas_dulce(data, a, b):
return a + b
def menos_dulce(data, a, b):
return a - b
from inspect import getargspec, isfunction, getmembers
import funciones
from types import MethodType
def _enchufa_funciones(instancia, modulo):
for nombre_func, func in _ls_func(modulo):
if hasattr(getargspec(func).args, 'b'): # si tiene el argumento b, sustituyelo
func = partial(func, b=instancia.b)
func = MethodType(func, instancia.__class__)
setattr(instancia, nombre_func, func) # mete la funcion cómo instancia
def _ls_func(module):
return getmembers(module, isfunction)
class MiCaramelo(object):
def __init__(self, data, b):
self.data = data
self.b = b
_enchufa_funciones(self, funciones)
以上是关于python instanciar funciones en clase的主要内容,如果未能解决你的问题,请参考以下文章
text 摘录Funcion rempalzar
text Funcion静态公开
php Funcion para encriptar php
markdown algunos funciones de postgres
markdown Funciones Flecha.md
sql Funciones PostgreSQL