Any AOP support library for Python ?
Posted
by edomaur
on Stack Overflow
See other posts from Stack Overflow
or by edomaur
Published on 2008-11-13T13:51:27Z
Indexed on
2010/05/21
19:10 UTC
Read the original article
Hit count: 270
I am trying to use some AOP in my Python programming, but I do not have any experience of the various libs that exists. So my question is :
What AOP support exists for Python, and what are the advantages of the differents libraries between them ?
Edit : I've found some, but I don't know how they compare :
Edit2 : In which context will I use this ? I have two applications, written in Python, which have typically methods which compute taxes and other money things. I'd like to be able to write a "skeleton" of a functionnality, and customize it at runtime, for example changing the way local taxes are applied (by country, or state, or city, etc.) without having to overload the full stack.
© Stack Overflow or respective owner