-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
24 lines (16 loc) · 954 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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).