{ "info": { "author": "Kyah", "author_email": "contact@octetsetquartdepouces.net", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.1", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Internet :: WWW/HTTP", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Text Processing" ], "description": "========================\nPelican LinkedIn Profile\n========================\n\nExtract a LinkedIn profile and allow the use of his informations in Pelican's pages\n\nInstallation\n============\n\nTo install pelican-linkedin, simply install it from PyPI:\n\n.. code-block:: bash\n\n $ pip install pelican-linkedin-profile\n\nConfiguration\n=============\n\nEnable the plugin in your pelicanconf.py\n\n.. code-block:: python\n\n PLUGINS = [\n # ...\n 'pelican-linkedin-profile',\n # ...\n ]\n\nAdd mandatory settings containing your LinkedIn Api Keys.\n\n.. code-block:: python\n\n LINKEDIN_USER_TOKEN = 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX'\n LINKEDIN_USER_SECRET = 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX'\n LINKEDIN_CONSUMER_KEY = 'XXXXXXXXXXXXXX'\n LINKEDIN_CONSUMER_SECRET = 'XXXXXXXXXXXXXXXX'\n LINKEDIN_RETURN_URL = 'http://example.com/'\n\nAvailable data\n==============\n:formattedName:\n The member's name, formatted based on language.\n:headline:\n The member's headline.\n:summary:\n A long-form text area describing the member's professional profile.\n:pictureUrl:\n A URL to the member's formatted profile picture, if one has been provided.\n:emailAddress:\n The LinkedIn member's primary email address.\n:primaryTwitterAccount:\n The primary Twitter account associated with the member.\n:publicProfileUrl:\n The URL to the member's public profile on LinkedIn.\n:phoneNumbers:\n A list of phone number objects containing those fields : phoneNumber, phoneType (home, work or mobile.)\n:skills:\n A list of skill's name\n:languages:\n A list of language's name\n:educations:\n A list of eduction objects containing those fields : startDate, endDate, degree, schoolName, fieldOfStudy\n:positions:\n A list of position objects containing those fields : startDate, endDate, title, company, summary, isCurrent. A company object contains those fields : industry, size, type, name\n\nUsage\n=====\nIn your templates you will have access to a linkedin_profile variable as below.\n\n.. code-block:: html\n\n
{{ linkedin_profile.headline }}
\n