Metadata-Version: 1.1
Name: PyLinkedinAPI
Version: 0.1.4
Summary: Python library to access Liknkedin API
Home-page: https://github.com/johnidm/PyLinkedinAPI
Author: Johni Douglas Marangon
Author-email: johni.douglas.marangon@gmail.com
License: BSD
Description: ===============================
        Python Linkedin API
        ===============================
        
        .. image:: https://img.shields.io/travis/johnidm/PyLinkedinAPI.svg
                :target: https://travis-ci.org/johnidm/PyLinkedinAPI
        
        .. image:: https://img.shields.io/pypi/v/PyLinkedinAPI.svg
                :target: https://pypi.python.org/pypi/PyLinkedinAPI
        
        
        Python library to access Linkedin API
        
        * Free software: BSD license
        * Documentation: https://PyLinkedinAPI.readthedocs.org.
        
        Features
        --------
        
        * Basic Use
        
            from PyLinkedinAPI.PyLinkedinAPI import PyLinkedinAPI
            
            access_token = 'AQVaE34Qblm6uIhh3wVLXuhQPSI...'
            
            linkedin = PyLinkedinAPI(access_token)
            
            print(linkedin.get_basic_profile())
            
            print(linkedin.get_companies()) specify fields
            
            linkedin.publish_profile('This is my first package in Python')
            
            linkedin.publish_comapny(5470551, 'This is my first package in Python')
        
        Utils
        --------
        
        * REST Console
        	
        	https://developer.linkedin.com/rest-console
        
        
        
        
        
        
        
        
        
        History
        -------
        
        0.1.0 (2015-05-09)
        ---------------------
        
        * First release on PyPI.
        
        
        0.1.1 (2015-05-09)
        ---------------------
        
        * Fixed bugs.
        
        
        0.1.2 (2015-05-09)
        ---------------------
        
        * Fixed bugs.
        
        0.1.3 (2015-10-09)
        ---------------------
        
        * Added support to share on LinkedIn a collection of content fields.
        
        0.1.4 (2015-10-09)
        ---------------------
        
        * Added support to share only comment field.
        
Keywords: PyLinkedinAPI
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.4
