Metadata-Version: 1.1
Name: pySyncplicity
Version: 0.0.1
Summary: A python module to interact with EMC Syncplicity
Home-page: http://packages.python.org/pysyncplicity
Author: Matt Cowger
Author-email: matt@cowger.us
License: BSD
Description: ## Synopsis
        
        The pySyncplicity module implements a limited subset of the JSON Syncplicity interface, enabling developers to list files and folders, and to upload and download files
        
        ## Code Example
        
            client = pySyncplicity.SyncplicityClient(username=auth.username, password=auth.password,verify=False)
            client.connect()
            syncpoints = client.list_sync_points()
            all_folders = []
            for syncpoint in syncpoints:
              all_folders.append(client.get_folder(syncpoint.Id, syncpoint.RootFolderId))
        
        
            for folder in all_folders:
                for file in folder.files:
                    client.download_file(file, debug=False)
        
            response = client.upload_file('auth.pyc', folderID, debug=False)
        
        ## Motivation
        
        Simply to enable python applications to enage with the Syncplicity system.
        
        ## Installation
        
        A simple 'pip install' should suffice.  The project requires 'requests' and 'requests-toolbelt'.
        
        ## Contributors
        
        Happy to accept pull requests on GitHub.  Matt can be reached via twitter as @mcowger
        
        ## License
        
        MIT Licensed
Keywords: syncplicity
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet
