Metadata-Version: 1.1
Name: capuchin
Version: 0.0.5
Summary: Simple wrapper around tornado that uses environment variables for host, port, endpoint prefix. Also uses the py-hancock library for the ability to sign endpoints. Endpoints for `time`, `ping`, and `status` are automatically added as well.
Home-page: http://pypi.python.org/pypi/capuchin
Author: Justin Wilson
Author-email: justinwilson1@gmail.com
License: Simplified BSD
Description: capuchin 0.0.5
        ==============
        
        Tornado server with some built-in endpoints.
        
        Here's a simple usage example::
        
        	import capuchin.web
        
        	class TestHandler(tornado.web.RequestHandler):
        		def get(self):
        			self.write("hola")
        
        	def test_job():
        		print("did some job")
        
        	if __name__ == "__main__":
        		c = capuchin.web.Application([
        			(r"/test", TestHandler),
        		])
        		c.add_status_job("Test Job", 5, test_job)
        		c.listen()
        
        
        get capuchin
        ============
        
        Install `tornado`_ and `requests`_
        
            sudo easy_install capuchin
        
        Download the latest release from `Python Package Index`_ 
        or clone `the repository`_
        
        More documentation is on it's way *(check the* `site`_ *for updates)*
        
        Provide any feedback and issues on the `bug tracker`_, that should be coming soon.
        
        
        .. _tornado: http://www.tornadoweb.org/en/stable/
        .. _requests: http://docs.python-requests.org/en/latest/
        .. _site: https://bitbucket.org/juztin/py-capuchin
        .. _the repository: https://github.com/juztin/py-capuchin
        .. _bug tracker: https://github.com/juztin/py-capuchin/issues
        .. _Python Package Index: http://pypi.python.org/pypi/capuchin
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
