skip to navigation
skip to content

trustlet 0.1.1

Analyse trust metrics on social networks

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.

http://trustlet.org/

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)]