Analyse trust metrics on social networks
Project description
trustlet is a Python package for the study of trust metrics on social networks. As of October 2007 it is in alpha stage, with support for several Advogato-like datasets and a bunch of trust metrics.
Using
>>> from trustlet import *
>>> G=Advogato()
>>> G.add_edge(1,2)
>>> G.add_node("spam")
>>> print G.nodes()
[1, 2, 'spam']
>>> print G.edges()
[(1, 2)]