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

Notifications You must be signed in to change notification settings

bialecki/PyChimp

This branch is 1 commit ahead of hunterford/PyChimp:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

3f533f8 · Nov 1, 2010

History

5 Commits
Nov 1, 2010
No commit message
Apr 13, 2010
No commit message
Apr 13, 2010
No commit message
Apr 13, 2010

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