pylinkedin


Python LinkedIn API support

Introduction

PyLinkedIn is a simple interface to the LinkedIn OAuth system. Right now it supports fetching all of your "connections" (your contacts) and getting your status.

Quick Start

A great introduction to using pylinkedin (Thanks to Raymond Yee for providing this): http://blog.mashupguide.net/2010/02/05/linkedin-api-python-step-1/

Slightly Less Quick Start

Get all Connections for current user

``` li = LinkedIn(API_KEY, SECRET_KEY) connections = li.connections_api.getMyConnections(access_token)

for c in connections: # Access c.firstname, c.lastname, etc. Sorry, no encapsulation... ```

Get status for current user

status = li.status_api.getMyStatus(access_token)

Project Information

Labels:
python linkedin oauth