Metadata-Version: 1.1
Name: active-campaign-python
Version: 0.7.4
Summary: Python ActiveCampaign API client
Home-page: https://github.com/tahoe/active-campaign-python
Author: Dennis Durling
Author-email: djdtahoe@gmail.com
License: MIT
Description-Content-Type: UNKNOWN
Description: ## Installation
        
        You can install **active-campaign-python** from pypi
        
        `pip install active-campaign-python`
        
        ## Example Usage
        
        <pre>
        from activecampaign import ActiveCampaign
        
        # url provided to you by ActiveCampaign
        base_url = '<your url>'
        # api key provided to you by ActiveCampaign
        api_key = '<your api_key>'
        
        ac = ActiveCampaign(base_url,  api_key)
        print(ac.api('account/view'))
        
        </pre>
        
        Each of the endpoint subclasses have comments at the bottom
        
        ## Prerequisites
        
        1. A valid ActiveCampaign **hosted** account (trial or paid).
        
Keywords: activecampaign
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
