Metadata-Version: 1.0
Name: host_pool
Version: 0.2
Summary: A generic pool to track a set of remote hosts with the ability to mark hosts down on failures
Home-page: http://github.com/jehiah/host_pool
Author: Jehiah Czebotar
Author-email: jehiah@gmail.com
License: MIT License
Download-URL: http://github.com/downloads/jehiah/host_pool/host_pool-0.2.tar.gz
Description: host_pool
        =========
        
        A generic interface to track a list of remote hosts
        to allow auto-backoff from a failed remote host.
        
            pool = host_pool.HostPool(['servera','serverb'])
        	endpoint = pool.get()
        	pool.success(endpoint)
        	endpoint = pool.get()
        	pool.failed(endpoint)
        
        
Platform: UNKNOWN
