Metadata-Version: 2.1
Name: connectpyse
Version: 0.4.8
Summary: A ConnectWise API tool for the rest of us.
Home-page: https://github.com/markciecior/ConnectPyse
Author: Joshua M Smith (original), Mark Ciecior (forked)
Author-email: saether@gmail.com (original), mark@markciecior.com (forked)
License: MIT
Description: # ConnectPyse
        ConnectWise (Manage) REST API client written in Python 3.x
        The original project was created by Joshua M. Smith.  This forked version was started by Mark Ciecior.
        
        ConnectWise RESTful API Client
        --------------------------------
        
        Following the layout style of the official SDKs from CW team. Classes and their API counter part classes are under
        their appropriate sections. Import the API class(es) you want to leverage and the model classes are imported with them.
        
        ## Setup (old way)
        1. Copy your_api.json to new my_api.json file and update with your API key and clientId details
        
        ## Setup (new way)
        1. Create two variables which are passed to the constructor of the API classes.
        2. URL = 'https://connectwise.mycompany.com/v4_6_release/apis/3.0'
        3. AUTH = {'Authorization': 'Basic Wmdlasdkjfeklamwekf='}
        
        ## Usage
        1. Import the sections you'll be using
        2. Create an object from API Class
        3. Leverage member methods to access features
        
        ### For example to get a Member's office phone number you would:
        
            >>> from connectpyse.system import members_api
            >>> m = members_api.MembersAPI() #Assuming the my_api.json file has been updated
            -or-
            >>> from connectpyse.system import members_api
            >>> m = members_api.MembersAPI(url=URL, auth=AUTH) #No my_api.json file necessary
        
            >>> a_member = m.get_member_by_id(123)
            >>> print(a_member.officePhone)
            
        ### For example to find the name of all activities related to a particular opportunity you would:
        
            >>> from connectpyse.sales import activity_api
            >>> myAct = activity_api.ActivityAPI() #Assuming the my_api.json file has been updated
            -or-
            >>> from connectpyse.sales import activity_api
            >>> myAct = activity_api.ActivityAPI(url=URL, auth=AUTH) #No my_api.json file necessary
        
            >>> myAct.conditions = 'opportunity/id=1250'
            >>> allActivities = myAct.get_activities()
            >>> for oneAct in allActivities:
            >>>   print(oneAct.name)
        
Keywords: connectwise rest api
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.5
Description-Content-Type: text/markdown
