Metadata-Version: 1.0
Name: python-delay
Version: 0.4
Summary: Python decorator to delay function calls
Home-page: http://pypi.python.org/pypi/python-delay/
Author: Flávio Ribeiro
Author-email: email@flavioribeiro.com
License: LICENSE.txt
Description: ==============
        python-delay
        ==============
        
        Simple decorator stolen from stackoverflow to delay function calls.
        
        http://stackoverflow.com/questions/3996083/how-can-i-call-a-function-with-delay-in-python
        
        
        Usage
        ======
        
        from delay import delayed
        
        @delayed(10)
        def foo():
            print "wow"
        
        
Platform: UNKNOWN
