Metadata-Version: 1.0
Name: pytunkrank
Version: 0.2
Summary: Python interface to TunkRank API
Home-page: http://github.com/paparent/pytunkrank
Author: PA Parent
Author-email: paparent@paparent.me
License: MIT
Description: pytunkrank
        ==========
        
        Python interface to the [TunkRank API](http://tunkrank.com/api).  [TunkRank](http://tunkrank.com) is a tool that measures a person's influence on Twitter by looking at how much attention your followers can actually give you.  You can read more [here](http://tunrkank.com/about).
        
        Ported from Jason Adams' ruby gem [tunkrank](http://github.com/ealdent/tunkrank).
        
        Usage
        -----
        
        The TunkRank API supports two main methods:  `score` and `refresh`.  The module includes two convenience methods for returning just the raw score or just the ranking.
        
            import pytunkrank
            pytunkrank.score('ealdent')
            pytunkrank.raw_score('ealdent')  # => 6.87
            pytunkrank.ranking('ealdent')    # => 21
            pytunkrank.refresh('ealdent')
        
        Copyright
        ---------
        
        Copyright (c) 2010 pytunkrank Authors (as specified in AUTHORS file). See LICENSE for details.
        
        Original work from Jason Adams' ruby gem [tunkrank](http://github.com/ealdent/tunkrank).
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
