Metadata-Version: 1.1
Name: b3j0f.aop
Version: 0.4.2
Summary: Python Aspect Oriented Programming
Home-page: https://github.com/mrbozzo/aop/
Author: b3j0f
Author-email: jlabejof@yahoo.fr
License: MIT License
Description: b3j0f.aop: Aspect Oriented Programming for Python
        =================================================
        
        This library aims to improve python aspects oriented programming efficiency among several existing library.
        
        Installation
        ------------
        
        pip install b3j0f.aop
        
        
        Examples
        --------
        
           >>> from b3j0f.aop.advice import weave
        
           >>> def function_to_intercept():
           >>>    return 1
        
           >>> weave(function_to_intercept, lambda adviceexecutor: advoceexecutor.proceed(), 1)
        
           >>> assert function_to_intercept(), (1, 1)
        
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: French
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
