Skip to content

MailChimp API wrapper in Python It's a straight port from the Official PHP version of the MailChimp API, which means that all the official, online documentation is easy to follow along with the Python version.

License

bialecki/PyChimp

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

MailChimp Python API Wrapper 0.1
-------------------------------------------------------------------------------
API Version: 1.2
Tested under: Python 2.6

Requires:
    * Python 2.5

Example Usage
------------------
    >>> from pychimp import PyChimp
    >>> api = PyChimp('2c0f98d36e364134ea4d22fd252de') # use your API key
    >>> api.ping()
    u"Everything's Chimpy!"

===== Advanced Options =====
SSL support
------------------
The API does supporting connecting via SSL for those worried about Man-in-the-Middle 
attacks/data collection. To use it in the MCAPI wrapper, simple do this:
	
	from pychimp import PyChimp
	
	api = PyChimp('2c0f98d36e364134ea4d22fd252de')
	api.useSecure(True)

That can be turned on and off as necessary.

About

MailChimp API wrapper in Python It's a straight port from the Official PHP version of the MailChimp API, which means that all the official, online documentation is easy to follow along with the Python version.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published