Returns a Linkedin profile.
Arguments One of:
public_id- public identifier i.e. tom-quirk-1928345urn_id- id provided by the Linkedin URN
Example
linkedin = Linkedin(credentials['username'], credentials['password'])
linkedin.get_profile('tom-quirk')Returns a Linkedin profile's first degree (direct) connections
Arguments
urn_id- id provided by the Linkedin URN
Example
linkedin = Linkedin(credentials['username'], credentials['password'])
linkedin.get_profile_connections('AC000102305')Returns a Linkedin profile's contact information.
Arguments One of:
public_id- public identifier i.e. tom-quirk-1928345urn_id- id provided by the Linkedin URN
Example
linkedin = Linkedin(credentials['username'], credentials['password'])
linkedin.get_profile_contact_info('tom-quirk')Returns a school's Linkedin profile.
Arguments
public_id- public identifier i.e. university-of-queensland
Example
linkedin = Linkedin(credentials['username'], credentials['password'])
linkedin.get_school('university-of-queensland')Returns a company's Linkedin profile.
Arguments
public_id- public identifier i.e. linkedin
Example
linkedin = Linkedin(credentials['username'], credentials['password'])
linkedin.get_company('linkedin')Perform a Linkedin search and return the results.
Arguments
params- search parameters (see implementation of search_people for a reference)max_results- the max number of results to return
Example
linkedin = Linkedin(credentials['username'], credentials['password'])
linkedin.search({keywords: 'software'}, 200)linkedin.search_people(self, keywords=None, connection_of=None, network_depth=None, regions=None, industries=None)
Perform a Linkedin search and return the results.
Arguments
keywords- keywords, comma seperatedconnection_of- urn id of a profile. Only people connected to this profile are returnednetwork_depth- the network depth to search within. One of {F,S, orO} (first, second and third+ respectively)regions- list of Linkedin region idsindustries- list of Linkedin industry ids
Example
linkedin = Linkedin(credentials['username'], credentials['password'])
linkedin.search_people(
keywords='software,lol',
connection_of='AC000120303',
network_depth='F',
regions=[4909],
industries=[29, 1]
)