Metadata-Version: 1.0
Name: Klout
Version: 0.1.0
Summary: Minimalist Klout API interface.
Home-page: http://pypi.python.org/pypi/klout/
Author: Irfan Ahmad
Author-email: klout@i.com.pk
License: LICENSE.txt
Description: ==================
        Klout API
        ==================
        
        A minimalist klout API interface. Use of this API 
        requires klout *developer key*. You can get registered and
        get a key at
        
            <http://klout.com/s/developers/v2>
        
        Complete documentation is available at: 
        	
        	<https://klout.readthedocs.org/en/latest/>
        
        ====================
        Quickstart
        ====================
        Install the PyPi package::
            
            pip install Klout
        
        This short example shows how to get a kloutId first and fetch user's score using that kloutId::
        
            from klout import *
            
            # Make the Klout object
            k = Klout('YOUR_KEY_HERE')
        
            # Get kloutId of the user by inputting a twitter screenName
            kloutId = k.identity.klout(screenName="erfaan").get('id')
        
            # Get klout score of the user
            score = k.user.score(kloutId=kloutId).get('score')
        
            print "User's klout score is: %s" % (score) 
        
        
Platform: UNKNOWN
