Metadata-Version: 1.1
Name: SharePlum
Version: 0.1.0
Summary: Python SharePoint Library
Home-page: https://github.com/jasonrollins/shareplum
Author: Jason Rollins
Author-email: jason.c.rollins@gmail.com
License: LICENSE.txt
Description: SharePlum
        ==========
        
        SharePlum is an easier way to work with SharePoint services. It handles all of the messy parts of dealing with SharePoint and allows you to write clean and Pythonic code.
        
        Usage
        -----
        
        ::
        
            from shareplum import Site
            from requests_ntlm import HttpNtlmAuth
        
            auth = HttpNtlmAuth('DIR\\username', 'password')
            site = Site('https://abc.com/sites/MySharePointSite/', auth=auth)
            sp_list = site.List('list name')
            data = sp_list.GetListItems('All Items', rowlimit=200)
        
        Features
        --------
        
        - Reading and writing data to SharePoint lists using Python Dictionaries.
        - Automatic conversion between SharePoint internal names and displayed names.
        - Automatic conversion of data types.
        - Supports Users datatype
        
        Documentation
        -------------
        
        `Read the Docs <http://shareplum.readthedocs.org/en/latest/>`_
        
        Contribute
        ----------
        
        - `Issue Tracker <http://github.com/jasonrollins/shareplum/issues>`_
        - `Source Code <http://github.com/jasonrollins/shareplum>`_
        
        License
        -------
        
        This project is licensed under the MIT license.
        
Keywords: MicroSoft SharePoint SharePoint2010 SharePoint2013
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Office/Business
