LinuxCommandLibrary

peerindex

Manage peer indexes for OpenLDAP

TLDR

List all peers

$ peerindex [master6.mrt]
copy

Display all peers that have provided routing information
$ peerindex [[-r|--only-refs]] [master6.mrt]
copy

SYNOPSIS

peerindex [-k API_KEY] [-u USERNAME] [-f FORMAT] [-h] [username]

PARAMETERS

-k API_KEY, --key
    PeerIndex API key (overrides config file)

-u USERNAME, --user
    Twitter username to query (default: config or prompt)

-f {json|yaml|txt}, --format
    Output format (default: human-readable text)

-v, --version
    Print version and exit

-h, --help
    Show usage help

DESCRIPTION

Peerindex is a lightweight command-line utility that interacts with the PeerIndex API to retrieve social influence metrics for a given Twitter username. PeerIndex, a now-defunct platform, quantified online authority, activity, and audience across social networks, similar to Klout scores.

The tool fetches data like overall PeerIndex score (0-10), topic-specific authorities, and network stats. Users needed a free API key from peerindex.net (service ended ~2014). It outputs JSON or human-readable formats.

Installation was via RubyGems: gem install peerindex. Configuration via ~/.peerindexrc or command-line flags. Example: peerindex username displays scores if key is set.

Despite discontinuation, source code remains on GitHub for historical study or local adaptation. Useful for data archival or understanding legacy social analytics tools. No longer fetches live data.

CAVEATS

PeerIndex API discontinued in 2014; command returns errors or empty data. Requires Ruby & gem. Config in ~/.peerindexrc: key: yourkey. Rate-limited historically.

INSTALLATION

gem install peerindex or clone from GitHub: git clone git://github.com/peerindex/peerindex-cli.git
Requires Ruby 1.9+, json gem.

SAMPLE OUTPUT

peerindex elonmusk
Score: 9.2
Authority: Tech 8.5, Space 9.8
Audience: 1.2M

HISTORY

Developed 2010-2012 by PeerIndex team as Ruby gem (v0.2.2 last release 2012). Tied to peerindex.net platform, acquired then shut down by Fluent ~2014. GitHub repo archived.

SEE ALSO

curl(1), jq(1), ruby(1)

Copied to clipboard