Package zeroinstall :: Package injector :: Module fetch :: Class KeyInfoFetcher
[frames] | no frames]

Class KeyInfoFetcher

source code

Fetches information about a GPG key from a key-info server. See Fetcher.fetch_key_info for details.


Since: 0.42

Example:

>>> kf = KeyInfoFetcher(handler, 'https://server', fingerprint)
>>> while True:
        print kf.info
        if kf.blocker is None: break
        print kf.status
        yield kf.blocker

Instance Methods
 
__init__(self, handler, server, fingerprint) source code