Metadata-Version: 1.0
Name: tornado-subprocess
Version: 0.1.2
Summary: A module which allows you to spawn subprocesses from a tornado web application in a non-blocking fashion.
Home-page: https://github.com/vukasin/tornado-subprocess
Author: Vukasin Toroman
Author-email: vukasin@toroman.name
License: BSD
Description: tornado-subprocess
        ==================
        
        A module which allows you to spawn subprocesses from a tornado web application in a non-blocking fashion.
        
        Example:
        --------
          
             def print_res( status, stdout, stderr ) :
                 if status == 0:
                     print "OK:"
                     print stdout
                 else:
                     print "ERROR:"
                     print stderr
             
             t = Subprocess( print_res, timeout=30, args=[ "cat", "/etc/passwd" ] )
             t.start()
             
             #start tornado 
             t.ioloop.start()
        
Keywords: tornado subprocess nonblocking
Platform: unix
Platform: osx
Platform: linux
Classifier: Development Status :: 4 - Beta
Classifier: Topic :: Utilities
Classifier: Environment :: No Input/Output (Daemon)
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: Unix
Classifier: Topic :: Internet :: WWW/HTTP
