Metadata-Version: 1.1
Name: PyLinkedinAPI
Version: 0.1.1
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 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')
        ```
        
        
        
        History
        -------
        
        0.1.0 (2015-01-11)
        ---------------------
        
        * First release on PyPI.
        
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
