Home > pytunkrank

pytunkrank

Pytunkrank is a project mainly written in Python, based on the MIT license.

Python module for TunkRank API

pytunkrank

Python interface to the TunkRank API. TunkRank 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.

Ported from Jason Adams' ruby gem 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.

Previous:Test